Reply to thread

Youre welcome. :)


One other thing I forgot to mention is that if you want to

only execute code if a boolean is false, then you would

do this:[code=csharp]if (!someBool)

{

  //someBool is false

}[/code]


Back
Top