Db_Stuff wrote:
[Quoted Text] >I would like to know if there is a way to retrieve the name of any computer >that is connected to an access database that is residing on the server. And >if so, how do I go about performing this action? Any help in this area will >be greatly appreciated. > >Thanks
HI Try This Function CompName() Dim WshNetwork Set WshNetwork = CreateObject("WScript.Network") CName = WshNetwork.computername MsgBox CName End Function
-- Message posted via http://www.accessmonster.com
|