A Al Feb 12, 2008 #1 Is there a way to have a txt box on a form read the computer name and show it? thanks Al
S Stefan Hoffmann Feb 12, 2008 #2 hi Al, Is there a way to have a txt box on a form read the computer name and show it? Click to expand... You may use Environ("COMPUTERNAME") which can be manipulated or http://www.mvps.org/access/api/api0009.htm mfG --> stefan <--
hi Al, Is there a way to have a txt box on a form read the computer name and show it? Click to expand... You may use Environ("COMPUTERNAME") which can be manipulated or http://www.mvps.org/access/api/api0009.htm mfG --> stefan <--
A Al Feb 12, 2008 #3 Hi Stefan, thank you very much this works great. One more thing, is there another function that can read the userid logged on the network? not access but the network itself. thanks Al
Hi Stefan, thank you very much this works great. One more thing, is there another function that can read the userid logged on the network? not access but the network itself. thanks Al
A Albert D. Kallal Feb 12, 2008 #4 You can get the current network logon name with: http://www.mvps.org/access/api/api0008.htm And, the current computer name with: http://www.mvps.org/access/api/api0009.htm And, if using ms-access security, then currentuser() will return the ms-access logon. I often log all 3 of the above values in some applications.
You can get the current network logon name with: http://www.mvps.org/access/api/api0008.htm And, the current computer name with: http://www.mvps.org/access/api/api0009.htm And, if using ms-access security, then currentuser() will return the ms-access logon. I often log all 3 of the above values in some applications.