VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic

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

Rate Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic



' 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

Download this snippet    Add to My Saved Code

Here's how you can export data from a DBASE IV platform to an excel file format using Visual Basic Comments

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 .

Post your comment

Subject:
Message:
0/1000 characters