Hi,
Multi thread use of harbour+fwhm like No modal/ Child dialog?
function myfun()
local odlg
define dialog odlg
browse ...
redefine get id 201 of odlg
redefine button id 202 of odlg action (call thread 2 myfun1() )
activate dialog odlg
return
function myfun1()
local odlg
define dialog odlg
browse ...
redefine get id 201 of odlg
redefine button id 202 of odlg action myfun2()
activate dialog odlg
return
after call myfun1(), there are 2 dialogs like 2 no modal dialogs ?
Thanks !
Shuming Wang