Search results

  1. A

    Strange view

    My database is showing plus signs on the left hand side of each row. How do I turn off this view?
  2. A

    Relationship question

    I have two identical tables. Each table contains information about a different city. Each record in both tables has a date and a time field. By themselves the date and the time fields are not unique, but combined they should be. For example the data would look like this: 4/1/04 08:00AM...
  3. A

    Edit field

    I used the following command to open a table and go to a specific record: DoCmd.OpenTable "Donation Times" Docmd.GoToRecord acDataTable, "Donation Times", acGoTo, 10 This works fine, but now that I am at the correct record, I want to change one of the fields. I tried the following, but I get...
  4. A

    Access Invisible

    I am using the following code to open a password protected database. I know the code is working, because if I misspell the database or form name I get an error that the database or form is missing or doesn't exist, but I can't see the access window or the form. Please help. Option Compare...
  5. A

    Password Question

    I wish to password protect a database so that it can't be imported into another database, but I want this to be transparent to the users who are accessing the application through it's forms. Is there a way to send the password automatically when opening up the start up form?
  6. A

    Access 2002 and ADO

    Whenever I try to use and ADO connection. For example if I say: Dim cnn as ADODB.Connection etc. etc. I receive the following message: User-defined type not defined. Am I missing a reference or something. We just upgraded to access 2002 from 97. :confused:
  7. A

    Turn Off Database Options in Visual Basic

    After upgrading to Access 2002, I noticed several of our databases show the database window minimized on the taskbar even though the Display Database Window is turned off in the Startup dialog box. I looked up the problem in the Microsoft knowledge Base Article - 313915 and found this was a bug...
  8. A

    Number each detail record on a form

    I searched for the answer to this question, but couldn't find it. I know how to number each detail record in a report by setting the ControlSource property to =1 and setting the RunningSum property to Over All. Is there an easy way to do this on a form?
  9. A

    Converting from 97 to XP

    We will be converting from 97 to XP next month. We have several database which are split. Does anyone know if it matters if the front or backend database is converted first?
  10. A

    Compile Error

    I added a module to disable the shift key in order to bypass the startup form. It works great and I don't receive any run time errors. I decided to make an .mde file out of the application, but when I try to create it, I receive the following error: Compile error in hidden module: Utilities...
  11. A

    List Box Problem

    I need to know how to populate a list box on an unbound form. Can anyone help?
Back
Top Bottom