is use
Code: Select all
SET BROWSESYNC ON
now when use GOTO( nRec ) it will not "update" VALUE in BROWSE

"Refresh" does not work without VALUE "update" to show right Result

did i make something wrong ... is there a other Way

Code: Select all
PROCEDURE UseThisRec( aHappy )
LOCAL nPosi := ShowFound.List_1.Value // Result from Listbox
LOCAL nRec := aHappy[nPosi][2] // { "Text",RECNO() }
GOTO(nRec)
// NEED to set VALUE in BROWSE
SetProperty( "XPPTEL", "Browse_1", "value", nRec )
DoMethod( "XPPTEL", "Browse_1", "Refresh" )
RETURN