Open a copy of xls file

  • Thread starter Thread starter Masa Ito
  • Start date Start date
M

Masa Ito

Is there a way to open a file as a copy?

I would like to force a user to select a name for a file if they wish to
save - similar to opening from a template.

I am programming in VB.Net, and am launching the 'filename.xls' process
(process.start) - but I would like to avoid having the file 'locked' by the
user.

Thanks!
 
You could open the file read only. The third argument of the Workbooks.Open
method.

Also you could copy the file and open that.

--
Jim
| Is there a way to open a file as a copy?
|
| I would like to force a user to select a name for a file if they wish to
| save - similar to opening from a template.
|
| I am programming in VB.Net, and am launching the 'filename.xls' process
| (process.start) - but I would like to avoid having the file 'locked' by
the
| user.
|
| Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top