Problem with the immediate(Debug) window

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I am doing some basic tutorials on modules and I have
been trying to enter simple commands like
? "Hello World"
That works, but when I try to put it in a variable and type
s="Hello" and hit ENTER. I get a compile error that says
Can't find project or library.
After I hit ENTER I want to type another command like
? s & "World"

Any Suggestions Or Libraries that need to be included.

Thanks,

Chris
 
Works for me. Try this in the immediate window:

for each v in application.References : ?v.name, v.isbroken : next

(david)
 
Back
Top