View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Ben Ben is offline
external usenet poster
 
Posts: 509
Default passing arguments by postion through application.run

Application.Run toexp + ".xls!module1.otay", noh, nohl
is the exact code i am using where
toexp = "BagSof1" I have ran in break just to be sure the variable is
assigned correctly.
and it still does not call the macro, excel hovers over that statement like
it's trying to load a workbook or something then skips it with 'on error
resume next' but when i turn it off it gives me an error box that says only
'400' with no explination and the help button does nothing
"Tom Ogilvy" wrote:

ApplicationRun "workbook1.xls!module1.macro",noh,nohl

where noh and noh1 ae the variables holding the values passed.

--
Regards,
Tom Ogilvy


"ben" wrote in message
...
I am trying to call a macro from a seperate workbook than the one that

called
it, but the sub calling the other sub needs to pass named arguments
(noh(),nohl()) but the application.run method does not allow the passing

of
named arguments, it says it they need to be passed by postion. I'm not

quite
sure what that means, how do I cause that other macro to be open
"workbook1!module1.macro",noh,nohl while passing those arguments

(variables)
either with application.run or another syntax?