J jibb Registered User. Local time Yesterday, 16:31 Joined Dec 1, 2011 Messages 93 Dec 6, 2011 #1 Hello, How can i return the name of the computer currently using a database into a form field? Many Thanks
Hello, How can i return the name of the computer currently using a database into a form field? Many Thanks
John Big Booty AWF VIP Local time Today, 09:31 Joined Aug 29, 2005 Messages 8,262 Dec 6, 2011 #2 This link should do what you are after.
J jibb Registered User. Local time Yesterday, 16:31 Joined Dec 1, 2011 Messages 93 Dec 6, 2011 #3 Thanks, How do i get that to display in a cell in a form?
J JANR Registered User. Local time Today, 01:31 Joined Jan 21, 2009 Messages 1,623 Dec 6, 2011 #4 Paste this function in a Standard module of your project Code: Function GetComputer() GetComputer = VBA.Environ("Computername") End Function Then in the controlsource of an unbound control on yor form you put in this: =GetComputer() JR
Paste this function in a Standard module of your project Code: Function GetComputer() GetComputer = VBA.Environ("Computername") End Function Then in the controlsource of an unbound control on yor form you put in this: =GetComputer() JR