home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / _Iif.au3 < prev    next >
Text File  |  2005-01-31  |  226b  |  11 lines

  1. #include <Misc.au3>
  2.  
  3. Dim $i_Count, $i_Index
  4.  
  5. For $i_Index = 1 To 2
  6.    MsgBox(4096, "Count", "This dialog has displayed " & String($i_Index) & _
  7.           " time" & _Iif($i_Index > 1, "s", "") & " so far")
  8. Next
  9.  
  10. Exit
  11.