
With best regards.
Sudip
Moderator: Rathinagiri
Code: Select all
#include <minigui.ch>
#include "hfcl.ch"
Function Main
define window csb at 0,0 width 200 height 200 main
define combosearchbox sample1
row 10
col 10
items {"Item One","Item Two","Item Three","A","B","C"}
width 200
on lostfocus msginfo("This is a sample")
end combosearchbox
define button close
row 40
col 10
caption "Close"
action csb.release()
end button
end window
csb.center
csb.activate
Return nil