`
ABC: Resetting a browse to a field value 2002-11-07 -- Gus M. Creces Newsgroups: softvelocity.products.c55ee Roger... > Given a browse BRW1.Q in which there is a specific browse row that I > want to display, how do I cause that row to be displayed in the > browse? I know the value of one of the fields in the Q that I want to > select and have that row displayed. If you know what row its in: ?List{PROP:Selected} = RowNumber If all you know is a value in a field you need to clear the record buffer, prime the known field with the value and call BRW1.ResetFromBuffer(). CLEAR(FIL:RECORD) FIL:Field = KnownValue BRW1.ResetFromBuffer() -- Gus M. Creces Certified Clarion Developer The Clarion Handy Tools Page http://www.cwhandy.com http://www.cwhandy.net http://www.cwhandy.ca gcreces@sympatico.ca Printed April 1, 2025, 11:22 pm This article has been viewed/printed 36152 times. Google search has resulted in 16 hits on this article since January 25, 2004. |