immed window

  • Thread starter Thread starter frazer
  • Start date Start date
F

frazer

hi sometimes when i execute some commands in the immed window, it says,
identifier out of scope. what am i doing wrong.


eg

n1.Security.SecurityAccessRights.None

security is a class in another namespace (n1)
 
that means your variable is gone out of scope. when you are debugging for a
variable, make sure that your variable is initialized and assigned to a
value in the code. then open up your imm window for checking values.

Av.
 
You're not doing anything wrong - it's the immediate window that's
wrong. This was one of those cases where there must have been a
dialog like the following at Microsoft:

Product feature team:
"Can we have an immediate window like in VB6 ?"

Development team:
"Not really - not enough time; but with no real coding we can do a
one-off which will do about 10% of what people expect"

Product feature team:
"Great news! Do it!"
 
Back
Top