How can multiple selections from a combo become individual records ???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Yousaf Shah
    New Member
    • Feb 2011
    • 25

    #1

    How can multiple selections from a combo become individual records ???

    Hello every body. I am developing my database for my patients. I have a control "TestName" on my "History" form, with which I select the names of laboratory tests required. When I select Multiple values they are displayed as a single record as "Blood CP;Urine RE;Cholesterol" after selecting "Blood CP", "Urine RE" and "Cholestero l" from Control "TestName". ...
    I want that on selecting multiple items, each item should appear as a separate record. How can this be done?
  • NeoPa
    Recognized Expert Moderator MVP
    • Oct 2006
    • 32669

    #2
    You'll need to start by showing the code you have already developed. We don't do your work for you from scratch.

    That said, each item in the list can be added into the table within your loop either by using a SQL command or by using a Recordset.

    Comment

    • Mihail
      Contributor
      • Apr 2011
      • 759

      #3
      How you select multiple items from a combo ?
      As far as I know this is not possible. Am I wrong ?

      Comment

      • NeoPa
        Recognized Expert Moderator MVP
        • Oct 2006
        • 32669

        #4
        No Mihail. You're not wrong.

        However, it's quite common for people to refer to ListBox controls (incorrectly of course) as ComboBoxes. We'll get to that part once the question is properly presented, if it ever is.

        Comment

        Working...