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...
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
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.