Results 1 to 7 of 7

Thread: Returning Parameters

Hybrid View

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2005
    Posts
    63

    Re: Returning Parameters

    What is ADOX? I'm using ADODB and all I need to know is how VB6 returns data from functions

  2. #2
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Returning Parameters

    Here is a quicky for you, reference Microsoft ADO 2.something Ext. for DDL and Security...

    VB Code:
    1. Private Sub Command1_Click()
    2.     Dim x As ADOX.Catalog
    3.     Dim y As New ADOX.Table
    4.     Set x = New ADOX.Catalog
    5.     x.ActiveConnection = connImport
    6.     Set y = x.Tables("ImpHBL")
    7.     MsgBox y.Columns.Count
    8. End Sub
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width