In my DB i have a Check Box along with several other fields. I made a query to only give me records when that check box is checked. I also made a report to print all of my records. I want to be able to first see if there are any records with the check box checked. If it is, i want to print a...
Hi Again
I want to disable the Tab key in my DB. How can i do it? I read the post about disabling the ENTER key, but really didn't apply to me. I have a form that is broken up into two parts. The top part, only one person can see. The bottom part, everyone. I have set all controls tab stop...
:confused: In my DB, i have three different groups with permissions. What i want to do is hide the menu bar and DB window when any one from two of those groups logs on, but not the third. Is there some code i can write for this? Is it even possible?
In my DB i have several fields with set default values. If the user clicks a Yes on a Y/N button, these values will be cleared. If they then choose No on the same button it doesn't go back to the defaults. I know i could use
If (YES/NO) = NO
Then field = "default values"
is there an easier...
Is there a way to undo one action at a time like in MS Word? I know that there is the Undo command, but that will clear the entire record. I don't want to clear all....just one action at a time. :cool:
I am trying to put the following code into my DB
-------------------------------------------------------------------------
If Tested = "yes"
Then TestComments.Enabled = True
Else
TestComments.Enabled = False
End If...
In my DB i want to have an "Other" checkbox that, when checked, will display and "Other" text box for free text comments. I am not sure how to do this. WOuld it be done in VB? Please help. :confused:
Hi,
I am working on a database that stores maintenance records. I have created several forms and tables. One form, ServiceInfo, holds the basic information for each work order. And another form, ServiceDetails, holds the specifics. I have a command button on ServiceInfo that opens a new...