Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Debbilynn

    Script to keep Computer Active

    I need to run a script that will keep the computer active. I'd like it to simulate the space bar key being used. Sounds odd, but I have my reasons. Anyway, I have very, very limited knowledge about scripts. I have edited a few but never written one myself. The easier the better since I don't...
  2. Debbilynn

    Read-Only Text Box to Update Combo Box

    Never mind. I decided to put the combo box over the text box then set the cboEmp.visible to False and switch it out when I change over to Edit mode, and vice versa. If anyone knows of a better way, please let me know. I'll be doing this again with some other controls. Debbilynn
  3. Debbilynn

    Read-Only Text Box to Update Combo Box

    I have a form (frmSysProb) tied to a table (tblSysProb). This table has the field cboEmp tied to table tblEmp for employees assigned to each system problem. I am setting up this form to open in Read-Only mode with a command button to change to Edit mode. (All is well there.) Ultimately, what I...
  4. Debbilynn

    Change from Read-Only to Update and Back

    Yes, thank you. Seems every time I post a question here, I end up figuring out the answer. Weird.
  5. Debbilynn

    Change from Read-Only to Update and Back

    Never mind, I got it.
  6. Debbilynn

    Change from Read-Only to Update and Back

    I have a command button on a form which changes most fields from Locked to Unlocked based on the Tag. For Each ctl In Forms![frmChangeRequests].Controls If ctl.Tag = "LOCK" Then ctl.Locked = False End If Next ctl The code works perfectly...
  7. Debbilynn

    One or Several Tables

    The original table was not normalized but I went through it and took out many duplicate fields, added new tables, created some combo boxes, defined the fields better, et al. I figured out my problem with the forms not opening. The original forms I built off of had crazy stuff in the properties...
  8. Debbilynn

    One or Several Tables

    I have a conundrum. I inherited a database with one table containing approximately 100 fields. Each record will only have each piece of data one time. The problem I am encountering is in the Forms. I have built a form with 30+ fields to be entered with a new record. This is all relevant...

Part and Inventory Search

Back
Top