HFCL 0.93

Source code related resources

Moderator: Rathinagiri

User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HFCL 0.93

Post by sudip »

Thank you Master Roberto for this help. I didn't know it :)
With best regards.
Sudip
With best regards,
Sudip
User avatar
sudip
Posts: 1454
Joined: Sat Mar 07, 2009 11:52 am
Location: Kolkata, WB, India

Re: HFCL 0.93

Post by sudip »

Hello Rathi,

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

Thanks in advance.

With best regards.

Sudip
With best regards,
Sudip
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HFCL 0.93

Post 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.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
mol
Posts: 3718
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HFCL 0.93

Post by mol »

Hello Rathi!
Some time ago, I wrote that would be great to create function Browse2Print. Did you thought about it?
User avatar
mol
Posts: 3718
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HFCL 0.93

Post by mol »

Hello Rathi!
Some time ago, I wrote that would be great to create function Browse2Print. Did you thought about it?
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HFCL 0.93

Post by Rathinagiri »

Sorry Marek. I will do that soon.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HFCL 0.93

Post 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
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
Post Reply