Results 1 to 6 of 6

Thread: list box

  1. #1

    Thread Starter
    Member
    Join Date
    Aug 2001
    Posts
    53

    Angry list box

    Hello,

    I'm sure there's a way to do this, but I give up....

    I need to populate data into a listbox that is in a sub form...

    This is a project in Access....

    *****
    If you open the project up you will see a form with menu...
    Select Event participation from this menu and a form will pop
    up, this is where my problem is....

    In the invoice field, I want to populate all available invoice text from table InvText into a listbox that will replace this field.
    When user select an invoice from this list, then I need to update
    the current record to the selected invoice text...

    I know this is a lot, but please help.....


  2. #2
    Lively Member
    Join Date
    Jun 2003
    Posts
    114
    Let's see some code ... That will help figure out what is not going right for you ...

  3. #3

    Thread Starter
    Member
    Join Date
    Aug 2001
    Posts
    53
    I've attached the whole program....

    It's in Access 2000....

  4. #4

    Thread Starter
    Member
    Join Date
    Aug 2001
    Posts
    53
    I can't attach my Access application, it's too big...

    Is there anything else I can do?

  5. #5
    Lively Member
    Join Date
    Jun 2003
    Posts
    114
    Yes ... Try copying and pasting your code here ...

  6. #6

    Thread Starter
    Member
    Join Date
    Aug 2001
    Posts
    53
    I only have the query used to load data onto this form...
    Everything else is bounded to this query....


    SELECT Attendee.EventID, Attendee.InvoiceID, Attendee.Event, Attendee.Type, People.Last, People.First, People.MI, InvText.InvoiceText, Attendee.AttendeeID, Attendee.PeopleID, InvText.EventID
    FROM People INNER JOIN (Attendee INNER JOIN InvText ON Attendee.InvoiceID = InvText.InvTextID) ON People.PeopleID = Attendee.PeopleID;

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