At 10:05 AM 2/25/2010, Jim Belisle wrote: >I want to bring up a form in a read only state using the >BROWSE USING <formname> but be able to have two fields in >the form editable. I attempted this by using the Component >ID method in the On after start EEP: >PROPERTY Comp_Inum READONLY ‘FALSE’ >PROPERTY Comp_Idate READONLY ‘FALSE’ >This did not change the property of the fields. >Is there some other command I need to go along with these >commands? Should I put the commands in another section EEP?
Jim, In your case, BROWSE command is used from the get-go to flag everything as read only. Nothing will change nor any form control PROPERTY command will alter that state of the underlying record set. To achieve your goal, first you will need to use the typical EDIT USING formname WHERE ... ORDER BY ... command, and then take advantage of all PROPERTY/GETPROPERTY commands to change the state of form controls dynamically, on demand, or as "On After Start" EEP. Got R:Docs 7.6 or R:Docs 9.0? Take a look at all supported PROPERTY/GETPROPERTY commands related to form control(s) itself (by Category), form table, or the entire form itself. Then, use appropriate commands as you see fit. Good luck! Very Best R:egards, Razzak. --- 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. ================================================

