From: Rodrigo M. <rod...@te...> - 2004-04-01 18:36:21
|
Hi, It's me again, I Found one bug with @..Browse Database. If browse workarea is changed to another workarea, it's does not work: DBCreate("temp1.dbf", {{"code", "N", 10, 0},; {"descr", "C", 30, 0}}) DBCreate("temp2.dbf", {{"descr", "C", 30, 0},; {"code", "N", 10, 0}}) use temp1 new use temp2 new Append Blank Replace descr with 'teste' Replace code with 1 INIT DIALOG oForm CLIPPER NOEXIT TITLE "Browse Problem"; FONT oFont ; AT 0, 0 SIZE 700, 425 ; STYLE DS_CENTER + WS_VISIBLE + WS_POPUP + WS_VISIBLE + WS_CAPTION + WS_SYSMENU @ 8, 24 BROWSE oBrowse DATABASE OF oTab SIZE 655,190 STYLE WS_VSCROLL + WS_HSCROLL ; AUTOEDIT ; APPEND CreateList( oBrowse,.t.) oForm:bActivate := {||DBSELECTAREA('temp1')} ACTIVATE DIALOG oForm Regards Rodrigo |