Search results

  1. F

    Passing data between forms

    What I would like to do is: to click on "add new customer" in Order form and get a pop up customer form opened in add mode, once I finish filling the form and click on "save and close", the customer form closes and the Order form opens with required information on the customer I have just...
  2. F

    Passing data between forms

  3. F

    Passing data between forms

    This seems to work: Can I add the second (prenom) field to be populated? Private Sub btnPrecedant_Click() Forms!location.ClientID = Me.ClientID DoCmd.Save DoCmd.Close End Sub
  4. F

    Passing data between forms

    Error message is : run-time 2465. Location form cannot be located
  5. F

    Passing data between forms

    I have tried these codes but it did not work for me: Me.refresh If Not IsNull([Nom]) then Form![Location].Form.ClientID= Me.ClientID Form![Location].Form.ClientID.SetFocus End If DoCmd.Close
  6. F

    Passing data between forms

    Sorry, it is in French. They are two different forms.
  7. F

    Passing data between forms

    I have a limited knowledge in Access. I am trying to build a database and i am facing an issue adding new customers from order form and get it automatically populate in a combo box in the order form. can anyone help?
Back
Top Bottom