|
From: Itamar M. L. J. L. <ita...@gm...> - 2015-03-31 21:07:48
|
#include "hwgui.ch"
Function main
LOCAL oDlg, cA:= space(9), cB := space(9)
//Please active <Ins> key!
INIT DIALOG oDlg clipper AT 100,100 SIZE 500,200
@ 10,10 get oA VAR cA SIZE 80,25 picture "999999999" MAXLENGTH 9 //With
<Ins> key activated typing something
@ 10,40 get oB VAR cB SIZE 80,25 picture "999999999" MAXLENGTH 9 WHEN
{|| .T., str(len(cA)), .T.} //Here other problem flag "when" not work!
oDlg:Activate()
//and change space while <Ins> is activated
hwg_msginfo(str(len(cA)))
hwg_msginfo(str(len(cB)))
Best regards,
Itamar M. Lins Jr.
|