Recent content by Encarta

  1. E

    Button to go to desktop from form

    I beleive that the "Application.Minimize" is the ideal solution. What if you are running the Database on a Computer whose user is not "Bryan"? The "Bryan" element in the code string will give errors. So try the: Application.Minimize
  2. E

    Button to go to desktop from form

    Try this: Application.Minimize
  3. E

    Dlookup with Combo Value

    You could try this one: Supposing the name of your combo box is cboSelect, then you could perform the DLookup like this: DLookup("Field to Search", "Table Name", "Reference Field = "'" cboFind "'") Hope this works.
  4. E

    Button to go to desktop from form

    Try putting this code behind the button. Supposing the name of the button is cmdShowDesktop, then the code will be: Private Sub cmdShowDesktop_Click() Application.DoCmd.Minimise End Sub Thank you.
  5. E

    Hello Access Users

    My name is Anyars Yussif from Africa, Ghana to be precise. I am highly elated to be part of this wonderful community. Before I joined this group, I've browsed through the various posts made and most of them have assisted me greatly in developing a very effective database application. This...
Back
Top Bottom