<< 1st i set a variable which later on will be set at runtime SET VARIABLE vCaption TEXT = 'This is the Caption'
Then i try to set the form property in "On After Start" PROPERTY RBASE_FORM CAPTION .vCaption >> Your code is correct, as you discovered elsewhere you weren't actually setting the value of vCaption as you thought you were. However, the EDIT USING and ENTER USING commands both accept a caption right on the command line: EDIT USING MyForm WHERE IDCol = 10 CAPTION 'Some Special Form Caption Here' -- Larry

