Application Logon ID Capture

G

George Wells

I am using a logon screen for access to an Access 2003 database and want to capture the user's ID and include it as part of the record. The form I use for the logon is a hidden form (frmLogon) that is the first thing that comes up when a user clicks on the file. I can't use the Windows logon as this is a standalone PC locked down to prevent any other access to system resources. I've tried using the expression "=[Forms]![frmLogon]![txtLoninID]" for the default value but get the error message "Could not find 'Forms]![frmLogon]![txtLoginID'". Does anyone know how to get this accomplished?

EggHeadCafe - Software Developer Portal of Choice
VB.NET Single Sign-On with DIGEST, BASIC, LDAP
http://www.eggheadcafe.com/tutorial...8b4-f362ec5d0af4/vbnet-single-signon-wit.aspx
 
D

Douglas J. Steele

You sure you've typed the name of the form and text box correctly?

If you're certain, try removing the square brackets.

=Forms!frmLogon!txtLoginID
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Cheque Print 0

Top