12.08.2009, 23:35
EDIT :: SOLVED :: EDIT
Thank you..
Thank you..
if ((File_VehicleOwner) == "None") { //My Function }
if(strcmp(File_VehicleOwner,"None",true) == 0)
Originally Posted by Henry11200
Код:
if ((File_VehicleOwner) == "None") { //My Function } Код:
if(strcmp(File_VehicleOwner,"None",true) == 0) |
if(!strcmp(File_VehicleOwner,"None",true) == 0)
Originally Posted by яυαяαι
You have to put a ! behind strcmp or it wont work
Код:
if(!strcmp(File_VehicleOwner,"None",true) == 0) |
Originally Posted by Donny
Quote:
|