Search results

  1. C

    Form Will Not Update Query

    I have a form set up with a query as its control source. When I enter information into the form, it is supposed to update the query, and when I click a created "Save" button update the table. This way multiple users can work in the same tables, forms, etc... at the same time. This has worked...
  2. C

    Report to Run a Macro

    I am trying to run a report to output information from a field with a lot of characters. I am using string manipulation to get the information I want from the field which is in a table. Also, the key is located in the table and i need the code to find a specific key, then return the information...
  3. C

    Continuous Form with Add New Record Command Button

    I am trying to make a form with 4 text boxes for entry. I want to have the first text box be filled from a reference to a field in a table. The rest, I want the user to fill out the information. Also, I want a button at the bottom of the form to add a new record and fill the first text box...
  4. C

    Cannot Find Table

    Hello, I am adding another database to an Admin database I have created to be able to control the accesses of all the databases from one central database. When adding this new database, everything is the same as the other databases of the same type, but for some reason it cannot find the table I...
  5. C

    DblClick function to display table info.

    I realize that this is a beginner's question, but I was wondering if anyone had any suggestions. I have a continuous list on a form and I want to be able to double click on a name and pull up the profile's accesses. The primary key would be the employee code and since it is a continuous list...
  6. C

    Using Me.Filter to filter a form.

    Hey, I am a novice with coding for Access 2007. I am trying to filter a form using Me.filter. Here is the code I'm using. Option Compare Database Private Sub Command34_Click() Me.Filter = "*" & [Name] = "*" & Me.Text32 Me.FilterOn = True Me.Requery End Sub Private Sub Command35_Click()...
Back
Top Bottom