Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to send a Message from Excel to Access ??

Status
Not open for further replies.

ctudose

Programmer
Joined
Nov 22, 2001
Messages
33
Location
CA
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top