Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
one way
fPath = Application.ActiveWorkbook.Path -- Gary "GeneWan" wrote in message ... eg. my code prompted user to choose the file(s) to be opened within the same path. How can I save the path so that I could use it later on? purpose is so that I can create a file in the same path afterwards.. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
this won't work as the file intended to open is for reading and not opened
onto an excel worksheet... thanks regardless :) "Gary Keramidas" wrote: one way fPath = Application.ActiveWorkbook.Path -- Gary "GeneWan" wrote in message ... eg. my code prompted user to choose the file(s) to be opened within the same path. How can I save the path so that I could use it later on? purpose is so that I can create a file in the same path afterwards.. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not sure if by your last comment you solved the problem but if you are
trying to save something other than a .XLS file you can use file filters or if the file is read only and you cannot save over it try changing the attributes... Get Path adapted from Nick #1's code : Sub Getpath() Dim FilePath As String Dim FileName As String Dim Filter As String ' Insert whatever extension you want here e.g. *.txt Filter = "Excel Files (*.xls), *.xls" FileName = Application.GetOpenFilename(Filter) FilePath=Left(FileName, InStrRev(FileName, "\")) End Sub If the Read Only file attribute is your problem insert this just before overwriting (saving): ' Acts like unchecking Hidden, Read Only and Archive tick boxes in the 'right click ' properties window of a file SetAttr (FilePath), vbNormal Best of luck Nick Flyger |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
should read...
SetAttr (Filename), vbNormal |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open Dialog Box to return Selected File Path and Not Open it. | Excel Programming | |||
how to save the complete path of the file we open? | Excel Programming | |||
Want to Set the File Save As path | Excel Programming | |||
How set file open path to filepath of file opened with Explorer ? | Excel Programming | |||
get path - save new file - same sub-directory as existing file | Excel Programming |