Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Brian
You got me started down the right path. This is what wound up using. Sub Desktop_Path() Dim WSHShell As Object Set WSHShell = CreateObject("WScript.Shell") Dim DesktopPath As String ' Read desktop path using WshSpecialFolders object DesktopPath = WSHShell.SpecialFolders("Desktop") Debug.Print DesktopPath DesktopPath = WSHShell.SpecialFolders("Mydocuments") Debug.Print DesktopPath Set WSHShell = Nothing End Sub hope you might find it usefull. Thanks, Gary m. "BrianB" wrote in message ... This may help you towards your goal :- '------------------------------------- Sub RetrieveLogonName() Dim wshNetwork As Object Dim LogonName As Variant Set wshNetwork = CreateObject("WScript.Network") LogonName = wshNetwork.UserName MsgBox LogonName End Sub '-------------------------------------- ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~View and post usenet messages directly from http://www.ExcelForum.com/ ~~Now Available: Financial Statements.xls, a step by step guide to creating financial statements |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
default file locations Excel 2007 | Setting up and Configuration of Excel | |||
Macro File Locations | Excel Discussion (Misc queries) | |||
file locations | Setting up and Configuration of Excel | |||
Moving file locations | Links and Linking in Excel | |||
external data file locations | Excel Discussion (Misc queries) |