Search results

  1. R

    make dropdown disappear

    Help, please! When my second form opens, the combo box dropdown from the first form is visible. How can I make the dropdown disappear?
  2. R

    combo dropdown

    I have a form with a combo box dropdown. The After Update property of the combo box opens a second form to the record matching the name selected on the first form combo box dropdown. This works fine when selecting the name by pressing Enter but when the user selects the name by mouse clicking...
  3. R

    open all forms and synch data

    When my Main Form opens I want all other forms to open as hidden - - need code. Can be one line for each form or inclusive (if such a thing exists). Also, Main Form has a combo box. When value is selected in this combo box, I want all open forms to find the record corresponding to this...
  4. R

    Nested If

    I want to make a form containing six to ten command buttons. Each command button will open a different subform. Is it possible to create a public function of nested If to accomplish this? If so, code example of nested If would help a lot. I could then call the function from the On Click of...
  5. R

    data mode

    I open a form with the following: DoCmd.OpenForm "frmPersons", , , "[fldPersonID] =" & Me.cmbChooseName, acFormReadOnly The form has an Edit command button - - On Click I want to change from Read Only to edit the data. Can anyone help? It will be greatly appreciated
  6. R

    vbOkayOnly

    I want to create a combo box NotInList event procedure that displays a message box that requires the user to click OK. After user clicks OK, the focus will be set to another control on the same form.
  7. R

    combo box

    Please help a newbie! I have a form with a combo box. When the user selects a name from the combo box, I want a new form to open with the record corresponding to the name from the combo box. I know how to do this when the combo box resides on the same form as the corresponding record but need...
Back
Top Bottom