function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
convert string value into number then compare it
for example
your text field name is myString__c
convert it to decimal, integer which ever is allowed (check with the specif type)
Integer x;
x = Integer.Valueof(myString__C);
convert string value into number then compare it
for example
your text field name is myString__c
convert it to decimal, integer which ever is allowed (check with the specif type)
Integer x;
x = Integer.Valueof(myString__C);