CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: VARIANTS

  1. #1
    Join Date
    Feb 2000
    Location
    Tel Aviv , Israel
    Posts
    190

    VARIANTS

    how can i put variables in an variant array. in vc++ i used createsafearray().
    i want to put the results of some recordset in VARIANT array.

    thanks


  2. #2
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    Re: VARIANTS


    'Assume you've opened a recordset named rs
    'and have the number of records desired in iRecordCount
    Dim avntRecordset as Variant
    avntRecordset = rs.GetRows(iRecordCount)





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

Featured