home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / IsDeclared.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  230 b   |  10 lines

  1. If Not IsDeclared ("a") then
  2.     MsgBox(0,"", "$a is NOT declared")     ; $a has never been assigned
  3. EndIf
  4.  
  5. $a=1
  6.  
  7. If IsDeclared ("a") then
  8.     MsgBox(0,"", "$a IS declared"  )      ; due to previous $a=1 assignment
  9. EndIf
  10.