Code: Select all
on mouseUp
if fld "ff" contains "L" then
put the char after char "K" in fld "ff"
end if
end mouseUpSo, I would be grateful if someone could help me to detect
the character after another character in a field.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Code: Select all
on mouseUp
if fld "ff" contains "L" then
put the char after char "K" in fld "ff"
end if
end mouseUpCode: Select all
put char offset("K",fld "ff") + 1 of fld "ff"
