Page 2 of 2

Re: HFCL 0.93

Posted: Tue Aug 18, 2009 2:02 pm
by sudip
Thank you Master Roberto for this help. I didn't know it :)
With best regards.
Sudip

Re: HFCL 0.93

Posted: Sat Nov 07, 2009 6:55 am
by sudip
Hello Rathi,

Is there any way to use group wise summary with Grid2Print? :)

Thanks in advance.

With best regards.

Sudip

Re: HFCL 0.93

Posted: Sat Nov 07, 2009 12:55 pm
by Rathinagiri
As of now, it is just printing the grid as such. To get a group-wise summary, we can write small coding before adding to the grid. I would create a small sample if possible.

Re: HFCL 0.93

Posted: Sat Nov 07, 2009 7:33 pm
by mol
Hello Rathi!
Some time ago, I wrote that would be great to create function Browse2Print. Did you thought about it?

Re: HFCL 0.93

Posted: Sat Nov 07, 2009 7:34 pm
by mol
Hello Rathi!
Some time ago, I wrote that would be great to create function Browse2Print. Did you thought about it?

Re: HFCL 0.93

Posted: Sun Nov 08, 2009 3:21 am
by Rathinagiri
Sorry Marek. I will do that soon.

Re: HFCL 0.93

Posted: Tue Nov 24, 2009 12:18 pm
by Rathinagiri
This is regarding ComboSearchBox control.

On lostfocus block is not properly transferred to the ComboSearchBox control. There is no effect on this definition. Please run this sample.

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