Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Dear all, I'm currently writing an Excel macro and in that macro i need to change the Default File Path (where i open\save my files concerning this macro) I know that setting Application.DefaultFilePath is what i need to do, but if i write a simple macro like this: Code: -------------------- Sub test() With Application .UserName = "Paulo Fonseca" .StandardFont = "Arial" .StandardFontSize = "10" .DefaultFilePath = "c:\test" .EnableSound = False .RollZoom = False End With End Sub -------------------- and then run it nothing changes, except the field in TOOLS-OPTIONS-GENERAL- Default File Locations witch is now c:\test . But still when i click on Open File it goes to the previous location. If i do this procedure by hand (going through the menus and change the Default file location), and then click on Open File it works!! Do i miss any command ond my macro? Thanks in advance Best regards Paulo Fonseca -- paulojfonseca ------------------------------------------------------------------------ paulojfonseca's Profile: http://www.excelforum.com/member.php...o&userid=24976 View this thread: http://www.excelforum.com/showthread...hreadid=385071 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe you are looking for this:
(from VBE Help) The ChDir statement changes the default directory but not the default drive. For example, if the default drive is C, the following statement changes the default directory on drive D, but C remains the default drive: ChDir "D:\TMP" -- steveB Remove "AYN" from email to respond "paulojfonseca" wrote in message news:paulojfonseca.1rrqej_1120687529.6359@excelfor um-nospam.com... Dear all, I'm currently writing an Excel macro and in that macro i need to change the Default File Path (where i open\save my files concerning this macro) I know that setting Application.DefaultFilePath is what i need to do, but if i write a simple macro like this: Code: -------------------- Sub test() With Application .UserName = "Paulo Fonseca" .StandardFont = "Arial" .StandardFontSize = "10" .DefaultFilePath = "c:\test" .EnableSound = False .RollZoom = False End With End Sub -------------------- and then run it nothing changes, except the field in TOOLS-OPTIONS-GENERAL- Default File Locations witch is now c:\test . But still when i click on Open File it goes to the previous location. If i do this procedure by hand (going through the menus and change the Default file location), and then click on Open File it works!! Do i miss any command ond my macro? Thanks in advance Best regards Paulo Fonseca -- paulojfonseca ------------------------------------------------------------------------ paulojfonseca's Profile: http://www.excelforum.com/member.php...o&userid=24976 View this thread: http://www.excelforum.com/showthread...hreadid=385071 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Application.Calculation Problems | Excel Worksheet Functions | |||
Problems with Excel VBA application | Excel Programming | |||
Setting up autorecovery problems | Excel Programming | |||
Error Setting Excel's Application.Left Property | Excel Programming | |||
Problems calling a procedure in another application | Excel Programming |