how to open .DBF file in vb??
Visual Basic
2
Posts
2
Posters
1
Views
1
Watching
-
i have search around the website i just cant open the .dbf in vb, i want to insert in it using vb. anyone have any idea???
depending on what is in the file, you could probably just read it in using the StreamReader: VB.NET :
Dim sFilePath as string = "C:\File.DBF" Dim sContent as string = nothing Dim Reader as new StreamReader(sFilePath) sContent = Reader.ReadToEnd()
assides that, some more info would help. http://www.stormbase.net