xl instance

T

tom taol

i want to work folow as after opening 2 xl instance, with
"controler.xls" control the "controled.xls".
for example, you must work follow as window startmenu -> run -> excel
->open ->controler.xls and window startmenu -> run -> excel ->open
->controled.xls.
and then the "controler" must handle the "controled".
i thank you very much if you show exampl macro source code.

please!!!
 
G

Guest

Does this work for you:

Put the following code inside of the THISWORKBOOK module of the file called
"Controler.xls" Change the path to fit the location of your Controled
file.

Private Sub Workbook_Open()
Workbooks.Open Filename:= _
"C:\Documents and Settings\UserName\My Documents\Controled.xls"
End Sub
 

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

Top