Hi,
I have a word: korado. But I want to check if it starts(so first character) with uppercase or lowercase.
I do it now like this:
RecSalesHeaderQuote.FncCheckBOM('orado');
koradoval1 := 'korado'; //koradoval2 := 'Korado'; IF koradoNewVal := (UPPERCASE(COPYSTR(koradoval1,1,1)) OR koradoNewVal := LOWERCASE(COPYSTR(koradoval1,1,1))) THEN BEGIN RecSalesHeaderQuote.FncCheckBOM(koradoNewVal);
But this doesnt work. I get an error
And What is the subtype what I have to declare?