Search results

  1. P

    Lock field with a check box

    yes. single form
  2. P

    Lock field with a check box

    I think so. there is only one form, mutiple tabs.
  3. P

    Lock field with a check box

    I have used the following code. Me.YourTextBoxNameHere.Locked = Not (Me.YourCheckBoxNameHere) Problem is, it lock it when the box is UNchecked. It's backwards!!! HELP!
  4. P

    Lock field with a check box

    I have created a check box that I want to use that if checked it locks only a certain field. I enter vehicle vin numbers and want to avoid accidental deletion but want to allow for quick editing and need the ability to add new records. Can you help me with the code?
  5. P

    Locking the form when entering is finished

    I have created a check box that I want to use that if checked it locks only a certain field. I enter vehicle vin numbers and want to avoid accidental deletion but want to allow for quick editing and need the ability to add new records. Can you help me with the code?
  6. P

    Hyperlink duplication

    Hi, We are trying to export information from Access to Excel. When we export the hyperlink, it is fine in Access but once it gets to Excel, it has duplicated itself with a # on either end of the second hyperlink rendering the hyperlink unusable. How do we prevent this from happening...
  7. P

    File Sharing Lock...

    I have a message that is telling me "File sharing lock count exceeded. Increase MaxLocksPerFile registry entry." How do I fix this??
  8. P

    Print current record

    Here is the error!!!
  9. P

    Print current record

    I copied it from Mercedes and changed "MERCEDES" to "CHEVROLET" and I get an error (can't seem to get the error to paste)
  10. P

    Print current record

    Hello again, I need to do the same for chevrolet Private Sub CHEVROLET_Click() On Error GoTo Err_CHEVROLET_Click Dim stLinkCriteria As String If Me.Dirty Then Me.Dirty = False stLinkCriteria = "[Serial Number] = " & Chr(34) & Me![Serial Number] & Chr(34)...
  11. P

    Print current record

    Worked!!! Thank you!!!
  12. P

    Print current record

    Text field. It is alpha numeric
  13. P

    Print current record

    I have a command button to print the current form Private Sub MERCEDES_Click() On Error GoTo Err_MERCEDES_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "rptMERCEDES" stLinkCriteria = "[Serial Number]=" & """& Me![Serial Number]&""" DoCmd.OpenReport...
  14. P

    Urgent:hyperlink to text

    I keep getting Invalid Procedure Call.
  15. P

    Urgent:hyperlink to text

    Good afterNoon! I had to switch my field type from hyperlink to text (long story) when I switched it my email addresses changed from regular to: blahblahblah@aol.com#mailto:blahblahblah@AOL.COM# i have 18000 records...i need to find and delete everything between the #'s. :eek: Help is so...
  16. P

    Scroll bars not showing

    all fixed! once I got my form BACK into detail my scroll bars are back. ***sigh*** :)
  17. P

    Scroll bars not showing

    oh this is special...SOMEhow I moved my tabs from the detail section to the HEADER section!!!! How do I get them back to "Detail"?
  18. P

    Scroll bars not showing

    How do I find them?
  19. P

    Scroll bars not showing

    No sub forms.
  20. P

    Scroll bars not showing

    Not sure I understand what you are asking. My tabs go across the top of the form. there are about 6 of them.
Back
Top Bottom