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

    Combo Box Doesn't show anything!!!!

    The entry form has been linked with Access 97 database (for instance, customer table) which contains some customer information using ADO data control. It displays correctly, but the combo box doesn;t show anything ( cboGender contains Male and female). Do ya know the problems?



  2. #2
    Join Date
    May 2001
    Location
    Russia
    Posts
    200

    Re: Combo Box Doesn't show anything!!!!

    If you use Microsoft DataCombo Control set two properties
    RowSource = Adodc1
    ListField = FieldToSelect

    Adodc1 - Control linked to table with information content Male and Female.

    Andy Tower

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