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?
Access.
I'm trying to implement some security measures, and am not sure how to do it. I've tried doing it, but now it's telling me that i need to move all objects to a new db in order to use the Security Wizard.
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 tried both of those methods. I still only see "Value" after the period. Also, when i tried the "Me.TestComments.Enabled" method, i got a VB Compile Error which said "Method or data member not found". Can you think of anything else?
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: