Roberto,Roberto Lopez wrote:I've applied the patch and the problem remains (note the 'H's and the '@'s).srvet_claudio wrote:
PS: the behavior of LISTVIEW_SETITEMCOUNT changed when change the version of common controls used
this is not an elegant solution, but ...
File: main_query_server_action.prg
Code: Select all
#include "hmg.ch"
declare window Main
Function main_query_server_action
aRecordset := netio_funcexec( "query_001" , Main.Query_String.Value )
Main.Grid_1.DeleteAllItems // <----------------------------------------------------- add this line
Main.Grid_1.ItemCount := LEN(aRecordset)
Return Nil