CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2001
    Posts
    14

    access with 2 combo

    I have Combo1 that I have data from access in, and I want when I Click on Combo1 and select somthing I want to display data in the other Combo2 from access.
    Now wrong is that it display only one item and not the hole list.
    Can wrong be in do until Adodc1.Recordset.EOF that I have for Combo1.


  2. #2
    Join Date
    Aug 2000
    Location
    England
    Posts
    185

    Re: access with 2 combo

    One problem that I have found occasionally is that you need to go to the last record and then the first before you get an accurate record count, i.e.

    MyRecSet.MoveLast
    MyRecSet.MoveFirst

    That should get all of the records.

    Cheers

    Andrew


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