Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Saturday, November 22, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > Visual Basic.Net > File Management > Read and Write
Search:
What's New - What's Hot


Excel File Class for reading data        
Total Hits: 51  |  Today: 0 Author: geekstarexe@yahoo.com       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is a handy little class that I wrote to work with excel files. I looked around on "The Google" and I could find little snippets to read data and others to read worksheet names but I couldn't find a reuseable class that allowed me to do both. So I wrote one....

Creating Files with the File System Object        
Total Hits: 91  |  Today: 0 Author: Ryan Trudelle-Schwarz       Rating:  
Read Reviews | Write Review |   Your Rating: 

When creating files with the File System Object you have two choices:
* CreateTextFile method of the FSO, Folder or File Object.
* OpenTextFile method of the FSO....

Write Flash Files With C# or Visual Basic        
Total Hits: 296  |  Today: 0 Author: Nelson King       Rating:  
Read Reviews | Write Review |   Your Rating: 

The Xamlon pitch is straightforward: Visual Basic.Net (VB.Net) and C# programmers will use their usual languages to create Flash applications, which can be consumed over the Internet and on handheld devices far more readily than .Net apps can...

Reading a file from a FileStream        
Total Hits: 1751  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

A Simple using of System.IO Namespace for how to read a File....

HOW TO: Use a File Name to Start an Application by Using Visual Basic .NET (Q305201)        
Total Hits: 518  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to start the application that is associated with a given document extension or file type without needing to know the name or location of the associated application. For example, you can start Arcade.bmp with the application that is associated with the .bmp file extension, which is MSPaint.exe in most cases....

Reading ID3 tags from a WMA file (MP3 as well)        
Total Hits: 650  |  Today: 0 Author: danhi.       Rating:  
Read Reviews | Write Review |   Your Rating: 

I wanted to get to the ID3 taqs (artist, album, title, genre, ...) in a WMA file, and found out that it's not quite as straightforward as it is getting the ID3V1.1 tags from an MP3 file. So I created a set of classes, one to get the ID3V1.1 tags from an MP3 file (easy), and another to get the same information out of a WMA file....

Reading a Delimited File Using ASP.Net        
Total Hits: 585  |  Today: 0 Author: G Ajaykumar       Rating:  
Read Reviews | Write Review |   Your Rating: 

New to .NET? Wondering how to split contents using a delimiter? No problem, this latest article you just how easy reading the contents of a delimited file can be.whether it’s a text file or a .csv file, all the values are delimited using a character. This particular character, which is used for separating the values, is called the delimiter. This delimiter may be a word, a letter, a tab, or a space.Let us have a look at an example of how these delimited files may be laid-out:...

Class: Search For Files And/Or Folders        
Total Hits: 350  |  Today: 0 Author: M. samer Selo       Rating:  
Read Reviews | Write Review |   Your Rating: 

The user define class used to search files and folders or both in a folder or drive or all drives. See the example, it will show you how to benfit all features of the class....

How write string data in a MemoryStream using VB.NET        
Total Hits: 6933  |  Today: 0 Author: Aadil       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article will show you what is a MemoryStream and how to write binary information to this stream.The .NET Framework provides a lot of useful classes to work with input and output. Working with File IO is very common in most programming scenarios. Sometimes it is needed that you do your stream operations in the memory available to the running process, like if you are working with network streams and binary data is transferred from one side to the other. In such cases the MemoryStream class ca...

How to convert an Excel file to CSV format using VB.Net, ASP.Net.        
Total Hits: 3566  |  Today: 1       Rating:  
Read Reviews | Write Review |   Your Rating: 

A Visual Basic.Net console application can be used to test this method. It reads an Excel file and converts the data into CSV format....

HOW TO: Write Binary Files to the Browser Using ASP.NET and Visual Basic .NET (Q307603)        
Total Hits: 2793  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article creates a sample page that demonstrates how to retrieve binary data from a file and then how to write the data out to the browser using ASP.NET and Visual Basic .NET. Although this demonstration uses an Adobe Acrobat (.pdf) file (which Web application developers commonly use), you can apply this procedure to other binary file formats....

Opening a file with it's associated executable        
Total Hits: 826  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

a Simple File Processing From WebSite....

Watching Folder Activity in VB.NET        
Total Hits: 1061  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Ever wanted to write application, which constantly monitors a folder and raised events when there is any activity in that folder. In the good old days using VB6 or older version you had to use windows APIs to do something like this, which was not very simple and required lots of coding....

HOW TO: Read XML from a File by Using Visual Basic .NET (Q301225)        
Total Hits: 3314  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to use the XmlTextReader class to read Extensible Markup Language (XML) from a file. XmlTextReader provides direct parsing and tokenizing of XML and implements the XML 1.0 specification as well as the namespaces in XML specification from the World Wide Web Consortium (W3C). This article provides fast, tokenized stream access to XML rather than using an object model such as the XML Document Object Model (DOM)....

HOW TO: Read a Text File by Using System.IO and Visual Basic .NET (Q302309)        
Total Hits: 3097  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to retrieve information from a text file and use an ArrayList class to display that information to the user....

HOW TO: Read from and Write to a Text File by Using Visual Basic .NET (Q315828)        
Total Hits: 3308  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to read from and write to a text file in Visual Basic .NET.
...

Reading a Delimited File Using ASP.Net and VB.Net        
Total Hits: 66  |  Today: 0 Author: G Ajaykumar       Rating:  
Read Reviews | Write Review |   Your Rating: 

New to .NET? Wondering how to split contents using a delimiter? No problem, this latest article from Ajaykumar shows you just how easy reading the contents of a delimited file can be. The following article will detail how to read a delimited text file using ASP.Net or VB.Net, which will explain various aspects of a delimited file, code explanation and source code. We must be aware of importing data into a database. Data which is used for importing is normally in the form of a text file. These ...

OpenFileDialog in Visual Basic .Net        
Total Hits: 54  |  Today: 0 Author: Shasur       Rating:  
Read Reviews | Write Review |   Your Rating: 

The Visual Basic 6.0 DirListBox control has been rendered obsolete by the OpenFileDialog and SaveFileDialog components in Visual Basic 2005. The Visual Basic 6.0 DirListBox control was typically used to display directories and paths in a File Open or Save dialog box. In Visual Basic 2005, the Windows Forms OpenFileDialog and SaveFileDialog components provide the ability to create standard Windows dialog boxes for working with files, in most cases eliminating the need for the DirListBox control....

Clean RTF Merge fields        
Total Hits: 54  |  Today: 1 Author: rafaelpb       Rating:  
Read Reviews | Write Review |   Your Rating: 

RTF to me, has always been a pain in the(you know where), it is so tempting because it is all plain text and thus 'human' readable, but hold your horses...try to modify that font on that piece of string on line x...well let's be honest... don't even try.

Well RTF is still tempting for me especially, when it comes to users, documents and yes: mail/document merging!

Alright let's get to the point, this piece of code helps me when users use an RTF document, post it to a website and ex...

Reading and writing excel file using VB.NET        
Total Hits: 111  |  Today: 0 Author: Raman Tayal       Rating:  
Read Reviews | Write Review |   Your Rating: 

This articles helps user to Insert, Update, Delete & Select data in Excel file using OLEDBDataProvider in VB.NET....


1  2  Next >> 


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net