Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default how to save the complete path of the file we open?

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default how to save the complete path of the file we open?

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default how to save the complete path of the file we open?

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default how to save the complete path of the file we open?

should read...

SetAttr (Filename), vbNormal

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Open Dialog Box to return Selected File Path and Not Open it. DMS Excel Programming 4 January 26th 10 12:46 PM
how to save the complete path of the file we open? NickHK Excel Programming 1 January 4th 07 07:07 AM
Want to Set the File Save As path Brenda Excel Programming 1 February 24th 06 03:45 AM
How set file open path to filepath of file opened with Explorer ? RandyDtg1 Excel Programming 0 May 14th 04 02:05 AM
get path - save new file - same sub-directory as existing file tegger Excel Programming 2 October 21st 03 10:45 AM


All times are GMT +1. The time now is 10:53 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"