Search results

  1. C

    Too many fields defined error

    There are 173 fields and a user could have one or more of these fields checked in their individual record. Does that make sense?
  2. C

    Too many fields defined error

    It should be more than one table, I just haven't figured out how to move cert fields to another table without 1) losing the data and/or 2) messing up the joins. I have a users table that contains certain data. USER TABLE Username Organization Project Role NETWORK TABLE Network1 Network2...
  3. C

    Too many fields defined error

    I have about 173 fields, and tried to add 6 additional. I only have 2 tables in the entire database with approximately 1600 records. I know I probably need to redo it and split the table into several tables. I will say I am not a guru by far, so taking that leap to making more table and...
  4. C

    Too many fields defined error

    I created my DB in MS Access 2007, but recently converted to 2010. I don't think my issue is based on this conversion. When adding new fields in a table, I am receiving the "too many fieds defined" error. I tried compating/repair; also copying the table and deleting the old. All with no...
  5. C

    Renabling a disabled field based on another field

    No luck. Problem 1: When I click the VM checkbox, all of the fields I've requested to be disabled are; however, when adding a new record all of the fields remain disabled until I check/uncheck the checkbox in the new record. Problem 2: I have a second checkbox (ITxHub) and have used the...
  6. C

    Renabling a disabled field based on another field

    Thank you I will try this and see what happens :)
  7. C

    Renabling a disabled field based on another field

    Where do I place this code in the code that I've shown above? I'm sorry, I'm fairly new to this. Thanks for your help. Cindy
  8. C

    Renabling a disabled field based on another field

    I'm sorry, that url is a forbidden url from work. Is there something you can provide on this forum? Thank you for your assistance.
  9. C

    Renabling a disabled field based on another field

    I was able to figure out how to disable a field when another field was filled out; however, when the field is modified to be blank, the 2nd field does not reenable. Below is my code; any assistance you can provide is greatly appreciated. Private Sub Form _Current() If Me.VM = -1 Then...
  10. C

    Multi-User with split database

    Thank you for your response. That is correct, I do not have any forms in the back-end, only the front end. So if I'm understanding you correctly, I can only make changes to the tables in the back-end if everyone is logged out?
  11. C

    Multi-User with split database

    Hello .. I have a split database, and several users have a copy of the front-end on their desktop. I need to make updates to the back-end (tables and forms). Is there a way I can do this when the users have the front-end open? A locked file is created, and when I try to access the back-end...
  12. C

    Enable/Disable textbox when checkbox is checked for only one record at a time

    I got it figured out ... thank you for your efforts and assistance. I'm sure I'll be posting to this forum again in the future. It's a wonderful tool.
  13. C

    Enable/Disable textbox when checkbox is checked for only one record at a time

    I also tried and still get the same results: Record 1, checkbox checked, textboxes greyed, Record 2, checkbox unchecked, textboxes greyed. Again, thank you for your assistance. Private Sub VM AfterUpdate() If Me.VM = -1 Then Me.NSAID.Enabled = True Else Me.NSAID.Enabled = False End If End...
  14. C

    Enable/Disable textbox when checkbox is checked for only one record at a time

    Thank you for your response. I made the change, however, the boxes are still greyed out once the checkbox is checked for every record. The checkbox is not checked for every record, just the boxes are greyed out. Below is the change that I made. I'm fairly new to this, so I apologize in...
  15. C

    Enable/Disable textbox when checkbox is checked for only one record at a time

    I have searched through the various forums, and have figured out how to disable a textbox when a checkbox is checked. The problem I am having is, this carries on to every record. When I go to the next record (record 2, 3, and so forth), the textbox is disabled, even though the VM checkbox is...
  16. C

    User Access Error

    I don't think it is a permissions issue on the directory, because my co-worker was able to open a document in that directory, make a change and save. The directory that I had her do this was the directory that the _be.aacdb file exists. She copied the .aacdb from another directory onto her...
  17. C

    User Access Error

    Ok, I will have them try to create a document and put it in there. The .aacdb is the only file there, so they copied the correct one. I will let you know if it is a permissions issue or what ... standby. Thank you,
  18. C

    User Access Error

    Not as simple; users are getting permission errors. Permissions set on both directories are read/write/execute. Any other suggestions? Again, THANK YOU !
  19. C

    User Access Error

    Wow, it's that simple; they just make a copy of the .aacdb and place it on their desktop and they are good to go. Who would have thought :D Thank you.
  20. C

    User Access Error

    Thank you everyone for your assistance; I got it to work. I had to make a copy of the _be.aacdb file and place it in the new directory. Otherwise, it wouldn't work. After I copied it, I was able to make the change in the Link Table Manager. Then I deleted the _be.aacdb from the original...
Back
Top Bottom