Search results

  1. J

    changing backcolor based on criteria

    this is not working. Private Sub GroupHeader1_Format(Cancel As Integer, FormatCount As Integer) If [job status] = "job complete" Then [GroupHeader1].BackColor = vbBlue End Sub
  2. J

    changing backcolor based on criteria

    great ideas! how do i phrase the code to do this in the format event for the header section?
  3. J

    changing backcolor based on criteria

    i want the color of the header which these fields reside in to change based on the critera of a specific field with conditonal formatting.
  4. J

    changing backcolor based on criteria

    it turns out that i can set the conditional formatting of specific cells to change color based on field criteria, but i still cant get the backcolor or altbackcolor to match when the critera change
  5. J

    changing backcolor based on criteria

    it is a contiunous report, and the colors there are blue and red
  6. J

    changing backcolor based on criteria

    can anyone help me please? i am still stuck on this issue!
  7. J

    changing backcolor based on criteria

    hello access guru's! heres my issue... i have a multi line report with a mess of fields in it. i would like to change the back color of specifically a field, a header, and a group based on the criteria of a field. so for example i tried this... on load if [field] = "word" then...
  8. J

    username and passwords for acces 2010

    thanks for following up on this. i have successfully created username and password protection for my database. simple description of my solution: form with username and password entry areas and code behind some buttons to get you logged in based on "access levels" changed accdb to accdr...
  9. J

    VBA error - see photo

    hey! any idea whats the problem here? see photo please. thanks!
  10. J

    locking all access objects

    or it would even be nicer if there was a way for only a single specific user to access all access objects...
  11. J

    locking all access objects

    hi! can anyone share with me a method to lock all users out of all access objects through a means other than merely hiding the navigation pane? please let me know if this is possible. thanks!
  12. J

    username and passwords for acces 2010

    im still failing miserably with this. can anyone help me write/design it?
  13. J

    reference a field

    huzzah! this works.. Private Sub usernameentry_AfterUpdate() If Me.[usernameentry].Value = Me!username Then Me.Check7.Value = -1 End If End Sub now, how to write the part that makes the checkbox unchecked if the statment is not true....
  14. J

    reference a field

    Private Sub username_AfterUpdate() If [me.usernameentry] = Me!username Then Me.Check7.Value = -1 End If End Sub this is not erroring out, but it is also not checking the box
  15. J

    reference a field

    ive renamed my text boxes on the form to: usernameentry and passwordentry
  16. J

    reference a field

    it did not like the addition of txt to username. i am not opposed to remaning/changing things if you have a method that would make this work. i have 4 fields in my table: ID - autonumber username - text password - text access level - number i plan to have 2 text fields in my form: username...
  17. J

    reference a field

    still the same error, new table created with no spaces, and that table is in the forms record source. Private Sub username_AfterUpdate() If Me.username.Value = userinfo.username Then Me.Check7.Value = -1 End If End Sub
  18. J

    reference a field

    still getting an error: run time error 424 object required my code: Private Sub username_AfterUpdate() If Me.username.Value = user info.username Then Check7 = -1 End If End Sub
  19. J

    reference a field

    hi! how do i reference a field in VBA to compare values in an if statement, please help me with the []'s and ,'s and whatnot. my statement should read like: private sub after update if {textbox on form} {is = to or matches text} {field on a query or table} then checkbox = true end if end...
  20. J

    username and passwords for acces 2010

    hey trevor! after having played with your login screen, i cant quite get it to do what i want it to do. im just not that adept at VBA. do you have a login program setup to work with a username and password rather than the eviron function? some users will use multiple PC's. for my purposes...
Back
Top Bottom