Well, I have never used FORMS, but you just need a simple logic,

When length of the contents of field is <= 1 character, throw an error message..

Code:
nLen := LENGTH(field_contents);
IF nLen <= 1 THEN
   message ("bla bla..");
END IF;
write a compatible code in trigger body or whereever u need..