Combo Box Bound Data Question

Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default Combo Box Bound Data Question

    I have successfully set up variable data Combo Box via VBA
    with a Row Source Type of Table/Query which then uses a
    Row Source SQL command to display possible selections from
    a separate different table. As mentioned, it works fine.
    Here's the question. How do I view and possible re-select
    recorded data from the Combo Box where I entered the
    data? In other words, I make a selection via a Combo Box
    from Table A, record data in table B and now wish to view
    the bound data from table B in the same Combo Box where I
    selected the original data. Any suggestions?
    bwilcox Guest

  2. Similar Questions and Discussions

    1. Using bound data in a query
      Hello- I have a Flash form that displays the "bound" contents of a field called "serviceIDs" when the user clicks on a record in a CFGRID (called...
    2. How to display a set of data in a data grid when drivenby a combo box?
      I am trying to build a page where the user can select a syle of food (i.e. chinese, italian etc) from a combo. I would then want the relevent...
    3. Templated data-bound server control design question
      Hello, I am working on an n-tier .NET application. The presentation is through aspx pages and custom data-bound server controls which use templates...
    4. Ampersands being converted when in data that is bound to my ASP:Dropdown
      I am binding data to the <ASP:Dropdown> object. My field that I am binding to the DataTextField property has "&nbsp;" in the data out of the...
    5. can't get data to show with bound columns
      I'm trying to create a DataGrid filled with values from a DataSet and I want the user to be able to show and hide whichever columns they choose. I...
  3. #2

    Default Re: Combo Box Bound Data Question

    "bwilcox" <bwilcox@cme.com> wrote in message
    news:01c601c34bbe$60749b70$a301280a@phx.gbl...
    > I have successfully set up variable data Combo Box via VBA
    > with a Row Source Type of Table/Query which then uses a
    > Row Source SQL command to display possible selections from
    > a separate different table. As mentioned, it works fine.
    > Here's the question. How do I view and possible re-select
    > recorded data from the Combo Box where I entered the
    > data? In other words, I make a selection via a Combo Box
    > from Table A, record data in table B and now wish to view
    > the bound data from table B in the same Combo Box where I
    > selected the original data. Any suggestions?
    I don't understand the question. The normal way ComboBoxes work is that what you see
    in the dropdown list is the data from the lookup source table and what you see when
    the list is not dropped down is the data from the bound field of the form's
    RecordSet. Unless you are using a multi-column ComboBox that stores one value while
    displaying another. Is that what you have?


    Rick Brandt Guest

  4. #3

    Default Re: Combo Box Bound Data Question

    >-----Original Message-----
    >"bwilcox" <bwilcox@cme.com> wrote in message
    >news:01c601c34bbe$60749b70$a301280a@phx.gbl...
    >> I have successfully set up variable data Combo Box via
    VBA
    >> with a Row Source Type of Table/Query which then uses a
    >> Row Source SQL command to display possible selections
    from
    >> a separate different table. As mentioned, it works
    fine.
    >> Here's the question. How do I view and possible re-
    select
    >> recorded data from the Combo Box where I entered the
    >> data? In other words, I make a selection via a Combo
    Box
    >> from Table A, record data in table B and now wish to
    view
    >> the bound data from table B in the same Combo Box where
    I
    >> selected the original data. Any suggestions?
    >
    >I don't understand the question. The normal way
    ComboBoxes work is that what you see
    >in the dropdown list is the data from the lookup source
    table and what you see when
    >the list is not dropped down is the data from the bound
    field of the form's
    >RecordSet. Unless you are using a multi-column ComboBox
    that stores one value while
    >displaying another. Is that what you have?
    >
    >
    >.
    >
    No, I am not using a multi-column ComboBox. Based upon
    your answer, it is the bound data that I am not seeing.
    When I scroll through the records, the ComboBox display is
    blank even though data is in each field. I guess my
    question is what should I check for to see the bound data?
    bwilcox Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139