Search results

  1. T

    Wizards Not Launching

    Whenever I put an object on a form, I get this error message... http://imgur. com/vjRLaXw I'll click "OK" and get this error message... http://imgur.com/qSirJci This is a huge problem because it will not let me launch a query through code since all the wizards are disabled. Having the user...
  2. T

    SendObject with MessageText

    At first, I thought this task would be simple, but it has proved otherwise. Basically, I want the MessageText argument to be autofilled with whatever value the combobox in the form holds. This is my code so far... Private Sub Command54_Click() Dim EmailText As String EmailText = "Submitted...
  3. T

    Filter table with no editing

    This seems simple, but I don't know if it's possible. I'm creating an application and I want the users to be able to view a table and filter it, however; they won't be able to edit it. Like I said, seems simple enough, but since I'm new to Access I'm not sure how to approach this.
  4. T

    Filter Report Results with VBA

    Hello all, Access newbie here. I have a report containing all the fields from my "main table". I want to create buttons on a from that will filter information from the report. For instance, I have a field titled "Priority". I want to create a button that will filter the report to only show...
  5. T

    Forms and Records Issue

    Whenever I add a new record to a table with a form I created, it records the "ID autonumber" that it's associated with instead of the text. For instance, if I selected "Kevin" from a combobox list and had the form record it, it will show up as "1" in the table under the field name "Names". Any...
  6. T

    Simple Password Form

    Hello everyone. I'm a new user of Access and am having some issues with a password form. I created a button that launches a form with a textbox field and a button. I want it to launch another form if the password is entered correctly. Here's my code... Private Sub btnPassword_Click() If...
Top Bottom