Visual Basic .NET

This category contains general information about visual studio .net

Retrieve the header row column names from a text file

0
The code below is an example of how to retrieve the column/field names from the header row from a text file, and add them to a “ListBox”.     Dim tfp As Microsoft.VisualBasic.FileIO.TextFieldParser     ' Change "Filename.TXT" to the filename of your choice    tfp = [...]

The ‘Microsoft.Jet.OLEDB.4.0′ provider is not registered on local machine

0
I was in the middle of writing an application to retrieve the list of Access Database Tables, but I was getting the error “The ‘Microsoft.Jet.OLEDB.4.0′ provider is not registered on the local machine.” I discovered, that as I was using Vista x64, I needed to change the “Advanced Compiler Options” [...]
Go to Top