Search results

  1. A

    open form in edit mode rather than add?

    but that is the problem ;)
  2. A

    open form in edit mode rather than add?

    yes your assumption is correct with a 1 to 1 relationship (for the time being)
  3. A

    open form in edit mode rather than add?

    i am having some problems with some code i am trying to write. I want to open up a sales form for a customer. I am keeping it to one sale per each customer. the problem i am having is i want a NEW form to open for each customer. After the new form has been opened and data has been entered and...
  4. A

    Creating Diaries/journal in Access?

    did you get the email because i am going to write another?
  5. A

    Creating Diaries/journal in Access?

    How are people creating Access 97 > 2000 databases? are they doing it in say Access 2000 and saving as Access 97? if so i can do that too
  6. A

    Creating Diaries/journal in Access?

    ive got web space free and bandwidth and i dont think we will be using bucket loads of bandwidth! the only problem is choosing a access format? atm i am using Access 2003 but save all access files in 2000 format just because the 97 > 2000 jump is a lot greater than 2000 > 2003. yeah pm me ur...
  7. A

    Creating Diaries/journal in Access?

    Need to sort out contact information, i can offer web space to store the database so whenever we update it or have code we can share it to people within the group. I can also sort out a mailing list too so we can email between ourselves etc. if the people who want to be involved in a project...
  8. A

    Creating Diaries/journal in Access?

    does anyone want to get together to design and create a diary or journal?
  9. A

    Keeps creating new records!

    what i want to do is when you fill in customer details you press the appointments button to open the appointments form. if there is no appointment for that customer i want it to create one. then if you ever go back to the same customer you can open up the record to view and edit without it...
  10. A

    Keeps creating new records!

    if i removed the acSaveRecord would it work then? maybe add a save button on the appointments form?
  11. A

    Keeps creating new records!

    i never thought about that: Private Sub btnOpenAppointment_Click() On Error GoTo Err_btnOpenAppointment_Click If IsNull(Me![CustomerID]) Then MsgBox "Enter customer information before entering an appointment." Else DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord...
  12. A

    Keeps creating new records!

    Hi i seem to be having a problem with my database. I have a customers, appointment and appointment details table and forms. Whenever i enter a customer and add appointment details, close. Reopen it and click the appoitment button to bring the appointment form up and it will create a new record...
  13. A

    Address Validation using web?

    is it possible for a mod to move this to general forum? i want to know if this is possible or not? i dont think VBA supports sockets so i guess its make a c# dll addin for access?
  14. A

    Address Validation using web?

    yes something similar but for UK addresses. Type in a postcode and it will automatically populate a combo box with possible STREET addresses. After choosing one it will fill in the city etc for you. If not all i want it to do is log onto a web site (map site) punch in two post codes...
  15. A

    Address Validation using web?

    i'm not really after a database all i want to do is log onto a web site and validate some details or read in some details. For example postcode to postcode find the difference and display in the database
  16. A

    Address Validation using web?

    so does anyone know if this is possible? i mean there are many sites out there which offer addressses, postcode lookup etc. Cant i just import the data into access?
  17. A

    Address Validation using web?

    Is this possible in Microsoft Access? i know its possible in c# but ive never really got into Microsoft Access until now. Enter a Postcode , logs onto a website and fills in a combo box full of possible addresses
  18. A

    password protect a form

    http://support.microsoft.com/?kbid=209871 all details and code there
  19. A

    password protect a form

    OR! you could just create another table storing usernames and passwords then checking the fields of table values. Its much better doing it this way than having the actual password as a string in VBA code because there could be loads of usernames and password combinations, adding new ones would...
  20. A

    Creating Diaries/journal in Access?

    do you have any ideas where to start? i mean how would i start on a form or would i not even use a form? ive never done something like this in a database before. I know its possible doing it other ways where users enter dates etc but this way is diff?
Back
Top Bottom