Recent content by xMax

  1. X

    A Weird Bug In My Tables

    My search is supposed to return EXACT Matches, not SIMILAR Matches.
  2. X

    A Weird Bug In My Tables

    Bump. Need. Help. Now.
  3. X

    A Weird Bug In My Tables

    I need a query, but I cannot use the like statement.
  4. X

    A Weird Bug In My Tables

    (A=Forms.frmMasterSearch.txtA Or A=Forms.frmMasterSearch.txtA2 Or A=Forms.frmMasterSearch.txtA3 Or A=Forms.frmMasterSearch.txtA4 Or A=Forms.frmMasterSearch.txtA5) And B=Forms.frmMasterSearch.txtB And C=Forms.frmMasterSearch.txtC And D=Forms.frmMasterSearch.txtD I want the query to look up...
  5. X

    A Weird Bug In My Tables

    I solved it; I am such an idiot. The fields in the table did not match the fields I was looking for.
  6. X

    A Weird Bug In My Tables

    SELECT * FROM Games WHERE Name=Forms!frmSearchByName!txtName;
  7. X

    A Weird Bug In My Tables

    Ok, I unbounded the form and textbox, but now it asks for the Parameter Game after I hit the search button.
  8. X

    Problem with Passwords

    Problem Solved!!! Thank You!!! Enjoy a little rep.
  9. X

    Problem with Passwords

    Here's the code: Dim login As Variant Dim thepassword1 As Variant Dim validLogin As Variant Dim correctPassword1 As Variant txtLogin.SetFocus login = txtLogin.Text txtPassword1.SetFocus thepassword1 = txtPassword1.Text txtLogin.SetFocus MsgBox thepassword1 //Displays ***** as password - this...
  10. X

    A Weird Bug In My Tables

    I am conducting a search for certain records in a table using a select query and a form. However, when I do the search, one of the rows in the table gets modified do whatever it is I am looking for, and of course, I don't want that to happen. Query Code: SELECT * FROM Games WHERE...
  11. X

    Problem with Passwords

    DLookup("password", "[tblLogin]", "LoginName = '" & txtLogin & "'")
  12. X

    Problem with Passwords

    not working. it still says the password is ******* when it is a bunch of characters and numbers. textboxes are unbound and input mask was set to password.
  13. X

    Problem with Passwords

    I have a password field for my database. When I enter the password, it uses the DLookUp screen to check and see if the password entered matches the correct password. However, when I use an input mask to make the password appear as astericks, it thinks the password is a bunch of astericks. When I...
  14. X

    Default Value in Combo Box

    When I open up a form the default value of the combo box is null but I need it to be set to the first value of a certain table. How do I do this? EX: Table HellMonsters: Satyr Demon Form AddAttack ComboBox Monster: (set to Satyr or something else if it comes before Satyr in the table)
  15. X

    coloring forms

    There is a paint bucket icon on the toolbar in Access that allows you to change the color of your forms: click on your subform, and then click the drop down arrow next to the paint bucket. If the color doesn't change then click on the paint bucket itself and it should.
Back
Top Bottom