<< PROPERTY CQ COLOR 'RED' EDIT USING AskQuestion >> When you issue a PROPERTY command, R:Base will look for the named component on the currently open and focused form only. In your case, it's not the form AskQuestion that will be searched, but the form from which you called this code.
Place the PROPERTY statement in the ON AFTER START EEP (you cannot use PROPERTY commands in the ON BEFORE START EEP since at that point the form has not yet been opened). You should get what you want. You can also use the PROPERTY command in any other EEP code after the form is opened. -- Larry --- RBASE-L ================================================ TO POST A MESSAGE TO ALL MEMBERS: Send a plain text email to [email protected] (Don't use any of these words as your Subject: INTRO, SUBSCRIBE, UNSUBSCRIBE, SEARCH, REMOVE, SUSPEND, RESUME, DIGEST, RESEND, HELP) ================================================ TO SEE MESSAGE POSTING GUIDELINES: Send a plain text email to [email protected] In the message SUBJECT, put just one word: INTRO ================================================ TO UNSUBSCRIBE: Send a plain text email to [email protected] In the message SUBJECT, put just one word: UNSUBSCRIBE ================================================ TO SEARCH ARCHIVES: Send a plain text email to [email protected] In the message SUBJECT, put just one word: SEARCH-n (where n is the number of days). In the message body, place any text to search for. ================================================

