<<
GETPROPERTY Quote_Comp TEXTVALUE vQuoteBrowse
SET VAR vFormMode = 'Browse'
BROWSE USING KayParkEditQuote WHERE QuoteID = .vQuoteBrowse
RETURN
>>

Is QuoteID an INTEGER column?  If so, you can either do:

BROWSE USING KayParkEditQuote WHERE QuoteID = &vQuoteBrowse

or

SET VAR vQuoteBrowseInt = (INT(.vQuoteBrowse))
BROWSE USING KayParkEditQuote WHERE QuoteID = .vQuoteBrowseInt

Also, you don't need to use the vFormMode variable to "tell" KayParkEditQuote 
what mode it's in.  Instead, in the form's AFTER START EEP, just set vFormMode 
= .RBTI_FORM_MODE and let R:Base tell you how the form was started.
--
Larry

Reply via email to