i have problem to allow enter only from 1 to 65535 bicouse
example if enter 10000,2000 is ok but enter 99 not.
hire 1 example (not working)
If somthing.Text > '65535 'then
ShowMessage(' you enter biger Number from 65535');
Exit;
hire 2 example (not working)
var
result : Integer;
string1: String;
string2: String;
begin
string1:='65535';
string2:= somthing.Text;
result := AnsiCompareStr(string1, string2);
if result < 0 then ShowMessage(string1+' < '+string2);
please help haw to solve this.
Thanks.