Search results

  1. T

    Wizards Not Launching

    Thank you. This worked. There are other computers that need to use run time to run another program. I'm not exactly sure why, but this program only works with the access run time. Is there anyway I can avoid having the run time and full version of access from interfering with each other? I know...
  2. 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...
  3. T

    Royal baby finally arrives

    No one does. The "royal family" doesn't even hold any power. They are just celebrities...
  4. T

    Gun laws do they work

    Gun laws only take guns out of the hands of people that would legally use them. Just because you ban something doesn't mean that it ceases to exist.
  5. 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...
  6. 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.
  7. T

    Filter Report Results with VBA

    What do you mean by "Your Specific Criteria Here"?
  8. 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...
  9. T

    Forms and Records Issue

    I tried switching the first field in the box and it did not work. The problem is that when I generate a report from the table, it shows all the ID numbers of the objects I chose from the form. This makes the information almost useless to the users that will be reading it.
  10. 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...
  11. T

    Simple Password Form

    Just took out .Text and it works. I guess VBA isn't that similar to VB.
  12. 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