|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
Convert .csv to .mdb and vice versa
can anybody help me in converting .csv files to .mdb(access97) files and vice versa using visual basic 6?tnx
|
|
#2
|
||||
|
||||
|
you could create the ms access application object, open a database (or create new one), then from there you execute any you want that you can normally do from code in access
Dim oApp As Object Set oApp = CreateObject("Access.Application") oApp.Visible= True ' if you want to see it read up on the following: OpenDatabase (dbname, options, read-only, connect) TransferText(TransferType, SpecificationName, TableName, FileName, HasFieldNames, HTMLTableName, CodePage) example, like so with oApp: oApp.DoCmd.TransferText( .....enter args) don't forget when done to: oApp.quit Set oApp = Nothing |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > Convert .csv to .mdb and vice versa |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|