View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
BrianB BrianB is offline
external usenet poster
 
Posts: 1
Default Save .xls as .txt In DeskTop


Notim to go through that lot.
Here is a way of getting the DeskTop folder of a machine :-

Code:
--------------------

Sub test()
'- using WinScript
Set objShell = CreateObject("WScript.Shell")
MyDeskTop = objShell.SpecialFolders.Item("DeskTop")
MsgBox (MyDeskTop)
End Sub

--------------------


--
BrianB


------------------------------------------------------------------------
BrianB's Profile: http://www.excelforum.com/member.php...info&userid=55
View this thread: http://www.excelforum.com/showthread...hreadid=387912