User Profile
Collapse
-
I pretty sure it would. Just replace .locked with .hidden -
Perfect!!!! Thank you sooo much. I'll be able to use the same logic to solve another issue I was having!Leave a comment:
-
ryanvb83 replied to Link to password protected database (not DB password nor User-Level Security Wizard)in AccessIs there a chance that the database is asking for a network user/pass? I've seen examples of forms that will verify a user/pass against those stored in the network's security....Leave a comment:
-
Have you tried denying access to the table through the user/group security? This is the way I would do it....Leave a comment:
-
I think I have a good starting point for you. I use the following code to fill a listbox with a list of all reports in my Access database.
Private Sub Form_Load()
Dim accObject As Access.AccessOb ject
'Fill list with reports.
For Each accObject In CurrentProject. AllReports
Me.listObjects. AddItem accObject.Name
Next
End Sub
I don't think...Leave a comment:
-
What PDF program are you using? I've had some problems using Adobe's PDF Suite. While trying to print from Access 2003, the functionality of the PDF printer is very sporatic. Sometimes it works. Usually, it would cause the Access to crash. I ended up using CutePDF. It's free and it hasn't given me any problems with colors....Leave a comment:
-
Lock TextBox if another TextBox's value is "" or Null
I'm having some trouble with a particular form. I would like to lock a textbox until 7 other textboxes have a value in them. The other 7 textboxes are a mixture of text fields, double numers, currency, and dates. The textbox that I would like to keep locked (until conditions are met) is a date field. This is what I have so far. Keep in mind that this particular vba code only looks at one of the seven fields.
[code=vb]
Private Sub...
No activity results to display
Show More
Leave a comment: