IF Exist()=0 is pretty weird way imo to put the code.
Way I put it is
Code:
If Exist()
  ? "It Exists!!"
Else
  ? " It's Gone!!"
EndIf


Or

Code:
If Not Exist()
  ? "It's Gone!!"
Else
  ? "It Exists!!"
EndIf

Not that your way is wrong though....


Edited by apronk (2006-12-08 05:50 PM)