by Pawkulit (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 27th June 2006
Date Added: Mon 8th February 2021
Rating:
(1 Votes)
Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic 6.0 development tool. I havent tried other
' pass QUERY to strQry variable
With mconExcelConnection
If .State = 1 Then .Close
.CursorLocation = adUseClient
.ConnectionString = "Driver:DBASE IV;Extended Properties=Excel 8.0"
.Open
End With
or
With mconExcelConnection
Dim recset as new ADODB.Recordset
.ConnectionString = "Driver:DBASE IV;Extended Properties=Excel 8.0"
.Open
set recset.ActiveConnection = mconExcelConnection
recset.open strQuery
End With
No comments have been posted about Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic . Why not be the first to post a comment about Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic .