Download zip code explorer
Author: s | 2025-04-24
US ZIP Codes: Explore and Download for Free. Us zip codes: explore and download for free Zip code map states united usps state area printable maps county list codes Download Zip Code Explorer latest version for Windows free to try. Zip Code Explorer latest update: Aug
Download Zip Code Explorer - topshareware.com
Fast financial calculations. The straightforwardness of the spread sheet places your assets at the top, expenses in... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 717 B Download Counter: 327 Released: September 01, 2005 | Added: September 11, 2007 | Viewed: 7957 United States ZIP Code Database - Lite Edition 2.00 United States 5-Digit ZIP Code Database, Lite Edition. Basic United States city, state ZIP code data containing every valid United States ZIP code. Data is delivered in ASCII text CSV flat file format. Easily imports into Microsoft Excel, Access, SQL or any database engine that supports CSV or... DOWNLOAD Cost: $19.95 USD License: Freeware Size: 270.7 KB Download Counter: 37 Released: October 17, 2006 | Added: October 20, 2006 | Viewed: 2014 STG Cache Audit 1.0 Easily see site, URL, cookies and history lists on the Internet Explorer cache STG Cache Audit is an advanced, easy to use tool to extract information from the Internet Explorer cache. View, Export (Excel, CSV, Text and HTML) and print the cache lists. DOWNLOAD Cost: $0.00 USD License: Freeware Size: 1.5 MB Download Counter: 11 Released: May 18, 2003 | Added: May 21, 2003 | Viewed: 1374 Free PDF Converter 5.13 Free PDF Converter can Quickly convert 149 file formats to pdf File Format. Including Microsoft Word (DOC, DOCX), Microsoft Excel (XLS, XLSX), Microsoft PowerPoint (PPT, PPTX), Microsoft Visio (VSD), Microsoft Works (WDB, WPS, DOCX, XLSX), AutoCAD (DWG, DXF, DWF), CorelDraw (CDR), Corel... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 45.3 MB Download Counter: 38 Released: April 09, 2012 | Added: April 10, 2012 | Viewed: 3730 VBA Code Compare 0.4 VBA Code Compare allows you to compare and merge any Visual Basic code embedded into a VBA project (macros, sheet code, module code etc.). This tool uses direct access for working with VBA modules. Thus, you don't have to export the source code to a file for comparing and import the edited code... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 959.0 KB Download Counter: 43 Released: April 05, 2006 | Added: April 08, 2006 | Viewed: 2085 X-Camme 2006 X-Camme e' un add-in US ZIP Codes: Explore and Download for Free. Us zip codes: explore and download for free Zip code map states united usps state area printable maps county list codes Download Zip Code Explorer latest version for Windows free to try. Zip Code Explorer latest update: Aug IntroductionIn this post I am explain how to Download multiple files as ZIP at once using ASP.NET & C#.Here I have used ICSharpCode.SharpZipLib.dll to Create ZIP file.Steps :Step - 1: Create New Project.Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.Step-2: Add a Class.Right Click on Solution Explorer > Add > Class > Enter Class Name > Add.Here is the class. namespace ASPDownloadMultiFile{ public class MyFile { public string FileName { get; set; } public string FilePath { get; set; } public decimal FileSize { get; set; } }} Step-3: Add New Folder.Right Click on Solution Explorer > Add > New Folder > Rename Folder.Step-4: Add a Webpage and Design for Show files.Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.HTML Code Multiple file download at a time using asp.net. ' target="_blank">Download Step-5: Write code into page load event for show data.Write below code into Page_Load event for show files in Gridview. protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { PopulateFiles(); } } And here is the function PopulateUploadedFiles private void PopulateFiles() { DirectoryInfo DI = new DirectoryInfo(Server.MapPath("~/DownloadFolder")); List allFiles = new List(); foreach (var i in DI.GetFiles()) { allFiles.Add(new MyFile { FileName = i.Name, FilePath = i.FullName.Replace(Server.MapPath("~/"),""), // For Get URL FORM Full Path FileSize = i.Length/1024 } ); } GridView1.DataSource = allFiles; GridView1.DataBind(); } Step-6: Add a Reference for Create ZIP.Download ICSharpCode.SharpZipLib.dllRight Click on References under solution explorar > Add Reference... > Browse > Select ICSharpCode.SharpZipLib.dll > Add > Ok.Step-7: Write code for Download multiple files at once.Write below code into button click event for download multiple files. protected void btnDownloadAll_Click(object sender, EventArgs e) { // Here we will create zip file & download string zipFileName = "MyZipFiles.zip"; Response.ContentType = "application/zip"; Response.AddHeader("content-disposition","fileName="+ zipFileName); byte[] buffer = new byte[4096]; ZipOutputStream zipOutputStream = new ZipOutputStream(Response.OutputStream); zipOutputStream.SetLevel(3); try { DirectoryInfo DI = new DirectoryInfo(Server.MapPath("~/DownloadFolder")); foreach (var i in DI.GetFiles()) { Stream fs = File.OpenRead(i.FullName); ZipEntry zipEntry = new ZipEntry(ZipEntry.CleanName(i.Name)); zipEntry.Size = fs.Length; zipOutputStream.PutNextEntry(zipEntry); int count = fs.Read(buffer, 0, buffer.Length); while (count > 0) { zipOutputStream.Write(buffer, 0, count); count = fs.Read(buffer, 0, buffer.Length); if (!Response.IsClientConnected) { break; } Response.Flush(); } fs.Close(); } zipOutputStream.Close(); Response.Flush(); Response.End(); } catch (Exception) { throw; } } Step-8: Run Application.Please give me +1 if is useful for you. Thank you.Comments
Fast financial calculations. The straightforwardness of the spread sheet places your assets at the top, expenses in... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 717 B Download Counter: 327 Released: September 01, 2005 | Added: September 11, 2007 | Viewed: 7957 United States ZIP Code Database - Lite Edition 2.00 United States 5-Digit ZIP Code Database, Lite Edition. Basic United States city, state ZIP code data containing every valid United States ZIP code. Data is delivered in ASCII text CSV flat file format. Easily imports into Microsoft Excel, Access, SQL or any database engine that supports CSV or... DOWNLOAD Cost: $19.95 USD License: Freeware Size: 270.7 KB Download Counter: 37 Released: October 17, 2006 | Added: October 20, 2006 | Viewed: 2014 STG Cache Audit 1.0 Easily see site, URL, cookies and history lists on the Internet Explorer cache STG Cache Audit is an advanced, easy to use tool to extract information from the Internet Explorer cache. View, Export (Excel, CSV, Text and HTML) and print the cache lists. DOWNLOAD Cost: $0.00 USD License: Freeware Size: 1.5 MB Download Counter: 11 Released: May 18, 2003 | Added: May 21, 2003 | Viewed: 1374 Free PDF Converter 5.13 Free PDF Converter can Quickly convert 149 file formats to pdf File Format. Including Microsoft Word (DOC, DOCX), Microsoft Excel (XLS, XLSX), Microsoft PowerPoint (PPT, PPTX), Microsoft Visio (VSD), Microsoft Works (WDB, WPS, DOCX, XLSX), AutoCAD (DWG, DXF, DWF), CorelDraw (CDR), Corel... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 45.3 MB Download Counter: 38 Released: April 09, 2012 | Added: April 10, 2012 | Viewed: 3730 VBA Code Compare 0.4 VBA Code Compare allows you to compare and merge any Visual Basic code embedded into a VBA project (macros, sheet code, module code etc.). This tool uses direct access for working with VBA modules. Thus, you don't have to export the source code to a file for comparing and import the edited code... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 959.0 KB Download Counter: 43 Released: April 05, 2006 | Added: April 08, 2006 | Viewed: 2085 X-Camme 2006 X-Camme e' un add-in
2025-03-25IntroductionIn this post I am explain how to Download multiple files as ZIP at once using ASP.NET & C#.Here I have used ICSharpCode.SharpZipLib.dll to Create ZIP file.Steps :Step - 1: Create New Project.Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.Step-2: Add a Class.Right Click on Solution Explorer > Add > Class > Enter Class Name > Add.Here is the class. namespace ASPDownloadMultiFile{ public class MyFile { public string FileName { get; set; } public string FilePath { get; set; } public decimal FileSize { get; set; } }} Step-3: Add New Folder.Right Click on Solution Explorer > Add > New Folder > Rename Folder.Step-4: Add a Webpage and Design for Show files.Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.HTML Code Multiple file download at a time using asp.net. ' target="_blank">Download Step-5: Write code into page load event for show data.Write below code into Page_Load event for show files in Gridview. protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { PopulateFiles(); } } And here is the function PopulateUploadedFiles private void PopulateFiles() { DirectoryInfo DI = new DirectoryInfo(Server.MapPath("~/DownloadFolder")); List allFiles = new List(); foreach (var i in DI.GetFiles()) { allFiles.Add(new MyFile { FileName = i.Name, FilePath = i.FullName.Replace(Server.MapPath("~/"),""), // For Get URL FORM Full Path FileSize = i.Length/1024 } ); } GridView1.DataSource = allFiles; GridView1.DataBind(); } Step-6: Add a Reference for Create ZIP.Download ICSharpCode.SharpZipLib.dllRight Click on References under solution explorar > Add Reference... > Browse > Select ICSharpCode.SharpZipLib.dll > Add > Ok.Step-7: Write code for Download multiple files at once.Write below code into button click event for download multiple files. protected void btnDownloadAll_Click(object sender, EventArgs e) { // Here we will create zip file & download string zipFileName = "MyZipFiles.zip"; Response.ContentType = "application/zip"; Response.AddHeader("content-disposition","fileName="+ zipFileName); byte[] buffer = new byte[4096]; ZipOutputStream zipOutputStream = new ZipOutputStream(Response.OutputStream); zipOutputStream.SetLevel(3); try { DirectoryInfo DI = new DirectoryInfo(Server.MapPath("~/DownloadFolder")); foreach (var i in DI.GetFiles()) { Stream fs = File.OpenRead(i.FullName); ZipEntry zipEntry = new ZipEntry(ZipEntry.CleanName(i.Name)); zipEntry.Size = fs.Length; zipOutputStream.PutNextEntry(zipEntry); int count = fs.Read(buffer, 0, buffer.Length); while (count > 0) { zipOutputStream.Write(buffer, 0, count); count = fs.Read(buffer, 0, buffer.Length); if (!Response.IsClientConnected) { break; } Response.Flush(); } fs.Close(); } zipOutputStream.Close(); Response.Flush(); Response.End(); } catch (Exception) { throw; } } Step-8: Run Application.Please give me +1 if is useful for you. Thank you.
2025-04-21Tool that makes it... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 20.5 MB Download Counter: 78 Released: March 28, 2007 | Added: February 07, 2008 | Viewed: 1887 Fix My Registry 2.01 Fix My Registry is Registry-cleaning software. It will safely clean and repair Windows Registry problems with a few clicks and enable you to enjoy a cleaner and more efficient PC. The registry is the nerve center of your PC, and problems with the Windows Registry are a common cause of Windows... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 5.2 MB Download Counter: 39 Released: August 25, 2011 | Added: August 25, 2011 | Viewed: 2700 Family Home Budget 2007 9.5 The Family Home Budget spread sheet is an Excel spread sheet that offers the look and feel of a contemporary Ledger book while implementing the power of the PC to perform lighting fast financial calculations. The straightforwardness of the spread sheet places your assets at the top, expenses in... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 717 B Download Counter: 327 Released: September 01, 2005 | Added: September 11, 2007 | Viewed: 7957 United States ZIP Code Database - Lite Edition 2.00 United States 5-Digit ZIP Code Database, Lite Edition. Basic United States city, state ZIP code data containing every valid United States ZIP code. Data is delivered in ASCII text CSV flat file format. Easily imports into Microsoft Excel, Access, SQL or any database engine that supports CSV or... DOWNLOAD Cost: $19.95 USD License: Freeware Size: 270.7 KB Download Counter: 37 Released: October 17, 2006 | Added: October 20, 2006 | Viewed: 2014 STG Cache Audit 1.0 Easily see site, URL, cookies and history lists on the Internet Explorer cache STG Cache Audit is an advanced, easy to use tool to extract information from the Internet Explorer cache. View, Export (Excel, CSV, Text and HTML) and print the cache lists. DOWNLOAD Cost: $0.00 USD License: Freeware Size: 1.5 MB Download Counter: 11 Released: May 18, 2003 | Added: May 21, 2003 | Viewed: 1374 Free PDF Converter 5.13 Free PDF Converter can Quickly convert 149 file formats to pdf File Format. Including Microsoft Word (DOC, DOCX), Microsoft Excel (XLS, XLSX), Microsoft PowerPoint (PPT, PPTX), Microsoft Visio (VSD), Microsoft Works (WDB, WPS, DOCX, XLSX), AutoCAD (DWG, DXF, DWF), CorelDraw (CDR), Corel... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 45.3 MB Download Counter: 38 Released: April 09, 2012 | Added: April 10, 2012 | Viewed: 3730 VBA Code Compare 0.4 VBA Code Compare allows you to compare and merge any Visual Basic code embedded into a VBA project (macros, sheet code, module code etc.). This tool uses direct access for working with VBA modules. Thus, you don't have to export the source code to a file for comparing and import the edited code... DOWNLOAD Cost: $0.00 USD License: Freeware Size: 959.0 KB Download Counter: 43 Released: April 05, 2006 | Added: April 08, 2006 | Viewed: 2084 X-Camme 2006 X-Camme e' un add-in per Excel per la progettazione e
2025-04-06This tutorial will show you how to remove the shortcut arrow overlay on all shortcut icons for all users in Windows 11.A shortcut is a link to an item (such as a file, folder, or app) on your PC. You can create shortcuts and then place them in a convenient location, such as on the desktop, so you can easily access the item that the shortcut links to. Shortcut files (.lnk) can be distinguished from the source target by the arrow that appears overlayed on the shortcut's icon.You must be signed in as an administrator to remove or restore the shortcut arrow icon. ContentsOption One: Remove Shortcut Arrow IconOption Two: Restore Shortcut Arrow Icon1 Click/tap on the Download button below to download the ZIP file below.Remove_shortcut_arrow._icon.zip2 Save the .zip file to your desktop.3 Unblock the .zip file.4 Open the .zip file, and extract (drag and drop) the Remove_shortcut_arrow_icon.reg and blank.ico files to your desktop.(Content of REG file for reference) Code: Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]"29"="C:\\Windows\\blank.ico" 5 Copy/Move the blank.ico file into the C:\Windows folder, and click/tap on Continue when prompted to approve. (see screenshots below)The blank.ico file is a 24x24 pixel transparent icon. 6 Double click/tap on the Remove_shortcut_arrow_icon.reg file to merge it.7 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.8 Either restart the explorer process, sign out and sign in, or restart the computer to apply.9 You can now delete any remaining files on your desktop if you like. OPTION TWO Restore Shortcut Arrow IconThis is the default setting.1 Click/tap on the Download button below to download the REG file below.Restore_default_shortcut_arrow_icon.reg(Content of REG file for reference) Code: Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\Application.Reference]"IsShortcut"=""[HKEY_CLASSES_ROOT\IE.AssocFile.URL]"IsShortcut"=""[HKEY_CLASSES_ROOT\IE.AssocFile.WEBSITE]"IsShortcut"=""[HKEY_CLASSES_ROOT\InternetShortcut]"IsShortcut"=""[HKEY_CLASSES_ROOT\lnkfile]"IsShortcut"=""[HKEY_CLASSES_ROOT\Microsoft.Website]"IsShortcut"=""[HKEY_CLASSES_ROOT\piffile]"IsShortcut"=""[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]"29"=- 2 Save the .reg file to your desktop.3 Double click/tap on the downloaded .reg file to merge it.4 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.5 You can now delete the downloaded .reg file if you like.6 Open the C:\Windows folder, delete the blank.ico file, and click/tap on Continue when prompted to approve. (see screenshot below) 7 Either restart the explorer process, sign
2025-04-10