I have an Access application which open an Excel file and runs the macro inside.
Set myXL = GetObject("D:\Book2.xls"
myXL.Application.Visible = True
myXL.Parent.Windows(1).Visible = True
myXL.Application.Run ("Macro2"
The macro updates the status bar with cmd :
Application.StatusBar "text" & i (where i - a variable)
Question: Is there any way "to transfer" the status bar of Excel application to the Access application,that actually opens the Excel file and runs the macro ???
Any ideas would be appreciate
Thanks.
Set myXL = GetObject("D:\Book2.xls"
myXL.Application.Visible = True
myXL.Parent.Windows(1).Visible = True
myXL.Application.Run ("Macro2"
The macro updates the status bar with cmd :
Application.StatusBar "text" & i (where i - a variable)
Question: Is there any way "to transfer" the status bar of Excel application to the Access application,that actually opens the Excel file and runs the macro ???
Any ideas would be appreciate
Thanks.