Where is Excel VBA Help Info?
Richard Winston wrote in news:o7Uyb.1155609$be.166508
@news.easynews.com:
"John Wilson" wrote in
:
Richard,
Why don't I have Excel VBA specific help info
There is no such thing. VBA is Visual Basic for Applications.
Excel is one of those "Applications"
your syntax error.
Your VBA Tools/Options are probably set to "Require Variable
Declaration" (which is a very good idea). Having this option selected
will place Option Explicit at the top of every module (which means
that all your variables
will have to be declared or you'll get an error).
I don't know what code Don gave you, but if you delete that top line
(Option Explicit), it should work. Better though would be to find
what variables that Don was using in the code he gave you and
declare them with a Dim statement.
John
Why don't I get context sensitive help for Excel objects. When I write
Outlook macros I am able to hilight "MailItem", for example, and get
help for that particular object. It's not working for me with the Excel
Macro that Don gave me (posted below)
Never mind, you were right. Now that I did what you suggested and got rid
of the Option Explicit, the code works and the context sensitive help
works.
Thanks.
|