Ready Property

B

BillCPA

The Ready Property returns 'True' when an application is 'ready'. What
determines if an application is 'ready'? Can it only be used with an
application that is currently running?
 
D

Dave Peterson

In excel 2002, the help says:

Returns True when the Microsoft Excel application is ready; False when the Excel
application is not ready. Read-only Boolean.

It's not AN application--it's Excel.

I popped up the Tools|Options dialog box and ran this:

Option Explicit
Sub testme()
MsgBox Application.Ready
End Sub

I got False back.
 
Top