You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(64) |
Apr
(70) |
May
(54) |
Jun
(57) |
Jul
(34) |
Aug
(19) |
Sep
(28) |
Oct
(48) |
Nov
(42) |
Dec
(43) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(50) |
Feb
(19) |
Mar
(10) |
Apr
(5) |
May
(1) |
Jun
(14) |
Jul
(23) |
Aug
(6) |
Sep
(118) |
Oct
(110) |
Nov
(36) |
Dec
(6) |
2006 |
Jan
(19) |
Feb
(7) |
Mar
(4) |
Apr
(32) |
May
(6) |
Jun
(14) |
Jul
(42) |
Aug
(38) |
Sep
(88) |
Oct
(21) |
Nov
(40) |
Dec
(37) |
2007 |
Jan
(31) |
Feb
(20) |
Mar
(26) |
Apr
(38) |
May
(4) |
Jun
(3) |
Jul
(3) |
Aug
(8) |
Sep
(2) |
Oct
(3) |
Nov
(25) |
Dec
(9) |
2008 |
Jan
(7) |
Feb
(10) |
Mar
(16) |
Apr
(10) |
May
(25) |
Jun
(16) |
Jul
(27) |
Aug
(8) |
Sep
(20) |
Oct
(54) |
Nov
(11) |
Dec
(14) |
2009 |
Jan
(28) |
Feb
(22) |
Mar
(13) |
Apr
(70) |
May
(25) |
Jun
(23) |
Jul
(12) |
Aug
(18) |
Sep
(7) |
Oct
(4) |
Nov
(8) |
Dec
(36) |
2010 |
Jan
(58) |
Feb
(66) |
Mar
(3) |
Apr
(16) |
May
(9) |
Jun
(10) |
Jul
(6) |
Aug
(8) |
Sep
(17) |
Oct
(15) |
Nov
(12) |
Dec
(27) |
2011 |
Jan
(3) |
Feb
(17) |
Mar
(5) |
Apr
(12) |
May
(1) |
Jun
|
Jul
(1) |
Aug
(5) |
Sep
(56) |
Oct
(24) |
Nov
(8) |
Dec
(32) |
2012 |
Jan
(20) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
(9) |
Jul
(29) |
Aug
(3) |
Sep
(17) |
Oct
(60) |
Nov
(17) |
Dec
(52) |
2013 |
Jan
(22) |
Feb
(35) |
Mar
(31) |
Apr
(5) |
May
(16) |
Jun
(108) |
Jul
(57) |
Aug
(2) |
Sep
(11) |
Oct
|
Nov
(3) |
Dec
(13) |
2014 |
Jan
(39) |
Feb
(15) |
Mar
|
Apr
(31) |
May
|
Jun
(9) |
Jul
(16) |
Aug
(1) |
Sep
(8) |
Oct
(51) |
Nov
(5) |
Dec
(119) |
2015 |
Jan
(78) |
Feb
(47) |
Mar
(25) |
Apr
(32) |
May
(34) |
Jun
(42) |
Jul
(62) |
Aug
(10) |
Sep
(11) |
Oct
(5) |
Nov
(13) |
Dec
(24) |
2016 |
Jan
(12) |
Feb
(1) |
Mar
(2) |
Apr
|
May
(1) |
Jun
(12) |
Jul
(5) |
Aug
(32) |
Sep
(36) |
Oct
(34) |
Nov
(3) |
Dec
(1) |
2017 |
Jan
(2) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(3) |
Jun
(5) |
Jul
(6) |
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(26) |
Sep
(24) |
Oct
(2) |
Nov
(6) |
Dec
(26) |
2019 |
Jan
(10) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
(3) |
Aug
|
Sep
(2) |
Oct
(1) |
Nov
(1) |
Dec
(2) |
2020 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2021 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(4) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
From: Alexander S.K. <al...@be...> - 2004-05-12 11:27:56
|
On 11.05.2004 4:13, Luiz Rafael Culik Guimaraes <cu...@uo...> wrote: LRCG> Alexander LRCG> Is Anyway to always force the register of OWNBTN/BROWSE with out calling LRCG> HWG_INITMAINWINDOWS/HWG_INITMDIWINDOW I think, we should call the RegisterBrowse(), RegisterPanel(), RegisterOwnBtn() from appropriate New(), Redefine() methods and place BOOL static variable in those functions to prevent repeated registering. Regards, Alexander http://kresin.belgorod.su |
From: Rodrigo M. <rod...@te...> - 2004-05-11 23:29:12
|
Hi all I found that way to made this: nID := HB_IDLEADD( {|| HWG_PROCESSMESSAGE() } ) PQsendQuery(conn, 'SELECT * FROM huge_table') do while .t. if PQconsumeInput(conn) if ! PQisBusy(conn) exit endif endif inkey(1) /* Alexander has suggested to use hwg_processmessage() in place of inkey(1), but this cause a overhead on postgres database, so i need to wait for 1 or more seconds, before querie again. */ enddo HB_IDLEDEL( nID) It's Working, aplication is not freezing, but i need fix some bugs with PQsendQuery. Regards Rodrigo |
From: Rodrigo M. <rod...@te...> - 2004-05-11 13:52:38
|
2004-05-11 10:45 UTC-0300 Rodrigo Moreno <rod...@ya...> * include/guilib.ch ! Add parameters EDIT, TEXT * doc/hwdoc.htm + Add new sintax for new command on combo box * source/hcombo.prg + add two new parameters ledit, ltext ! add support to handle and returning string values + samples/tstcombo.prg ! sample howto use changed combobox Regards Rodrigo |
From: Luiz R. C. G. <cu...@uo...> - 2004-05-11 01:01:41
|
Dear Friends any one working on this issue Regards Luiz |
From: Luiz R. C. G. <cu...@uo...> - 2004-05-11 00:14:25
|
Alexander Is Anyway to always force the register of OWNBTN/BROWSE with out calling HWG_INITMAINWINDOWS/HWG_INITMDIWINDOW Regards Luiz |
From: Rodrigo M. <rod...@te...> - 2004-05-09 23:03:25
|
Marcos, Thanks, but i not understand ? FindWindowEx return a handle ? What is the next step, use FindControl ? I've tried GetEditText( getmodalhandle(), oCombo:id) ) and is fine, also, i've used SetDlgItemText to set the string, and its ok too. My plans is add 2 new parameters to @..COMBOBOX: EDIT TEXT. EDIT, will set the TEXT parameter to true by default and allow the user change combo entry and get string value. TEXT, will allow the user use string values. Any suggestions ? Regards Rodrigo -----Mensagem original----- De: hwg...@li... [mailto:hwg...@li...]Em nome de Marcos Antonio Gambeta Enviada em: domingo, 9 de maio de 2004 18:22 Para: Rodrigo Moreno; HwGui-Developers Assunto: Re: [Hwgui-developers] Getting type value in a ComboBox > I have changed the combobox style from CBS_DROPDOWNLIST to CBS_DROPDOWN, > it's allow the user change the supplied options. But the question is: How to > get the value typed by user ? Or, i need to get the string value typed by > the user. Rodrigo, Try this: 1. Use FindWindowEx to get the handle of the edit control: hedit := FindWindowEx( oCombo:handle, 0, "Edit", Nil ) 2. Get the text of the edit control. The function FindWindowEx: HB_FUNC( FINDWINDOWEX ) { hb_retnl( (LONG) FindWindowEx( (HWND) hb_parnl(1), (HWND) hb_parnl(2), (LPCSTR) hb_parc(3), (LPCSTR) hb_parc(4) ) ) ; } Regards, Marcos Gambeta --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.679 / Virus Database: 441 - Release Date: 7/5/2004 ------------------------------------------------------- This SF.Net email is sponsored by Sleepycat Software Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver higher performing products faster, at low TCO. http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3 _______________________________________________ Hwgui-developers mailing list Hwg...@li... https://lists.sourceforge.net/lists/listinfo/hwgui-developers |
From: Marcos A. G. <mar...@uo...> - 2004-05-09 21:20:39
|
> I have changed the combobox style from CBS_DROPDOWNLIST to CBS_DROPDOWN, > it's allow the user change the supplied options. But the question is: How to > get the value typed by user ? Or, i need to get the string value typed by > the user. Rodrigo, Try this: 1. Use FindWindowEx to get the handle of the edit control: hedit := FindWindowEx( oCombo:handle, 0, "Edit", Nil ) 2. Get the text of the edit control. The function FindWindowEx: HB_FUNC( FINDWINDOWEX ) { hb_retnl( (LONG) FindWindowEx( (HWND) hb_parnl(1), (HWND) hb_parnl(2), (LPCSTR) hb_parc(3), (LPCSTR) hb_parc(4) ) ) ; } Regards, Marcos Gambeta --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.679 / Virus Database: 441 - Release Date: 7/5/2004 |
From: Rodrigo M. <rod...@te...> - 2004-05-09 14:43:01
|
Hi all, I have changed the combobox style from CBS_DROPDOWNLIST to CBS_DROPDOWN, it's allow the user change the supplied options. But the question is: How to get the value typed by user ? Or, i need to get the string value typed by the user. Regards Rodrigo Moreno |
From: Sandro R R F. <san...@ya...> - 2004-05-08 13:08:25
|
Ok Alexander The BMP_GRID facilitates the positioning of the controls. I am waiting the new version Regards Sandro Freire ----- Original Message ----- From: "Alexander S.Kresin" <al...@be...> To: <hwg...@li...> Sent: Saturday, May 08, 2004 8:06 AM Subject: [Hwgui-developers] Re: 2004-05-07 09-40 UTC-0300 Sandro R. R. Freire <san...@ya...> ïÿòíèöà, 7 ìàÿ 2004 ã. Sandro san...@ya... wrote: SRRF> 2004-05-07 09-40 UTC-0300 Sandro R. R. Freire <san...@ya...> SRRF> * samples/designer/hformgen.prg SRRF> include new DATA lGrid default is .t. SRRF> Include in dialog image in background, function CreateDialog. SRRF> * samples/designer/designer.rc SRRF> Add new image BMP_GRID I'm working on a new version of Designer, most of files are rewritten - so it isn't needed to correct the current implementation now. The BMP_GRID will be useful for a new version, though. Regards, Alexander http://kresin.belgorod.su ------------------------------------------------------- This SF.Net email is sponsored by Sleepycat Software Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver higher performing products faster, at low TCO. http://www.sleepycat.com/telcomwpreg.php?From=dnemail3 _______________________________________________ Hwgui-developers mailing list Hwg...@li... https://lists.sourceforge.net/lists/listinfo/hwgui-developers |
From: Alexander S.K. <al...@be...> - 2004-05-08 11:08:09
|
=EF=FF=F2=ED=E8=F6=E0, 7 =EC=E0=FF 2004 =E3. Sandro sandrorrfreire@yahoo.= com.br wrote: SRRF> 2004-05-07 09-40 UTC-0300 Sandro R. R. Freire <sandrorrfreire@yahoo= .com.br> SRRF> * samples/designer/hformgen.prg SRRF> include new DATA lGrid default is .t. SRRF> Include in dialog image in background, function CreateDialog. = =20 SRRF> * samples/designer/designer.rc SRRF> Add new image BMP_GRID =20 I'm working on a new version of Designer, most of files are rewritten - so it isn't needed to correct the current implementation now. The BMP_GRID will be useful for a new version, though. Regards, Alexander http://kresin.belgorod.su |
From: Alexander S.K. <al...@be...> - 2004-05-08 11:08:09
|
Sandro, SRRF> Hi Alexander and alll developers SRRF> It=B4s possible move SRRF> \hwgui\samples\designer to \hwgui\utils\desinger SRRF> and SRRF> \hwgui\samples\dbc to \hwgui\utils\dbc And hwreport, too, I think. =20 SRRF> And reorganization for samples em folder samples SRRF> Type SRRF> \hwgui\samples\windows SRRF> \hwgui\samples\menu SRRF> \hwgui\samples\general SRRF> \hwgui\samples\mysql SRRF> \hwgui\samples\browses SRRF> \hwgui\samples\grids Yes, I find it reasonable, but, possibly, with other kind of folders - probably, join the browses/ and grids/, adding the controls/ for control classes demos. And I don't sure what to place in windows/ and menu/, there aren't special prgs for these folders ... =20 Regards, Alexander http://kresin.belgorod.su |
From: Sandro R. R. F. <san...@ya...> - 2004-05-07 20:24:54
|
Alexander The file prnalone.c no compiled in hwgui. Exist the function return the name port, example \\server\printernameport Thanks Regards Sandro Freire http://www.lumainformatica.com.br |
From: Sandro R. R. F. <san...@ya...> - 2004-05-07 16:58:07
|
We can, but I want that my program is compiled and automatically it is in Linux. and the XWT follows another standard, needs a project where it is the same thing for Windows and Linux. Regards Sandro Freire http://www.lumainformatica.com.br ----- Original Message ----- From: "Rodrigo Moreno" <rod...@te...> To: "Sandro R. R. Freire" <san...@ya...> Sent: Friday, May 07, 2004 11:47 AM Subject: RES: [Hwgui-developers] LIB Open Source > Sandro, > > I think this is not exists, but i'm my opinion, i don't see how it's > possible, because the structres of win32 and gtk are diferents, well, > similar, both use the same concept, signal and callbacks, but gtk is much > more simple than win32 api. > > But cool thing it's possible run gtk native on windows, i'm doing some tests > using MinGw and Gtk Port for windows, and it's prety cool. > > Giancarlo was released a new version of xwt the xwt2, but we need see, test, > before start a new project based on gtk. There is bgtk from Harbour project, > it's simple, it's missing a lot of things, but it is a good start look at > the sources, or continue the project. > > I think, first, we must wait for Giancarlo put the xwt2 in xHarbour cvs and > take a look, and after that.... > > Regards > Rodrigo > > > -----Mensagem original----- > De: hwg...@li... > [mailto:hwg...@li...]Em nome de Sandro > R. R. Freire > Enviada em: sexta-feira, 7 de maio de 2004 11:15 > Para: hwg...@li... > Assunto: [Hwgui-developers] LIB Open Source > > > Hi Friends > Who knows some LIB Open Source, that simulates the API of the Windows in > the Linux using the GTK or any another one. It would be a fast way to > migration the HwGUI for the Linux > Regards > Sandro Freire > http://www.lumainformatica.com.br > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Sleepycat Software > Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to > deliver higher performing products faster, at low TCO. > http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3 > _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers > |
From: Sandro R. R. F. <san...@ya...> - 2004-05-07 14:18:04
|
Hi Friends Who knows some LIB Open Source, that simulates the API of the Windows in the Linux using the GTK or any another one. It would be a fast way to migration the HwGUI for the Linux Regards Sandro Freire http://www.lumainformatica.com.br |
From: Sandro R. R. F. <san...@ya...> - 2004-05-07 13:00:33
|
2004-05-07 09-40 UTC-0300 Sandro R. R. Freire <san...@ya...> * samples/designer/hformgen.prg include new DATA lGrid default is .t. Include in dialog image in background, function CreateDialog. * samples/designer/designer.rc Add new image BMP_GRID Sandro Freire http://www.lumainformatica.com.br |
From: Sandro R. R. F. <san...@ho...> - 2004-05-07 11:56:52
|
Hi Alexander and alll developers It´s possible move \hwgui\samples\designer to \hwgui\utils\desinger and \hwgui\samples\dbc to \hwgui\utils\dbc And reorganization for samples em folder samples Type \hwgui\samples\windows \hwgui\samples\menu \hwgui\samples\general \hwgui\samples\mysql \hwgui\samples\browses \hwgui\samples\grids Thanks Best Regards Sandro Freire http://www.lumainformatica.com.br |
From: Luiz R. C. G. <cu...@uo...> - 2004-05-06 01:01:08
|
* include/guilib.ch ! changes the init dialog command now the resource name follow the FROM RESOURCE and not on Title any more * source/dialog.c source/hdialog.prg ! Changed to allow the usage of new Data (xResourceId> which hold the name or value of resource * samples/dbc/*.* samples/hwreport/*.* samples/propsh.prg ! all samples that use from resource updated to use new syntax Regards Luiz |
From: Sandro R. R. F. <san...@ya...> - 2004-05-05 19:09:31
|
Hi All App compiled in Windows XP, not execute GETS or botons in Windows 98 and windows 95 I not use Windows XP I use Windows ME and Windows 2000 and I not verify the problem. Regards Sandro Freire http://www.lumainformatica.com.br |
From: Sandro R. R. F. <san...@ya...> - 2004-05-05 18:28:41
|
2004-05-05 15-10 UTC-0300 Sandro R. R. Freire <san...@ya...> * source/menu_c.c !minor fix * source/menu.prg New function HWG_INSERTBITMAPMENU Parameters (MainMenu, ID Item Menu, oBmp Handle) * include/guilib.ch new command #xcommand MENUITEMBITMAP <oMain> ID <nId> ; BITMAP <bmp> ; [<res: FROM RESOURCE>] ; * samples/testmenubitmap.prg replaced command Sandro Freire http://www.lumainformatica.com.br |
From: Alexander S.K. <al...@be...> - 2004-05-05 10:56:53
|
On 04.05.2004 22:35, Marcos Antonio Gambeta <mar...@uo...> wrote: MAG> Alexander, MAG> Some functions have the prefix HWG_, other not. MAG> Exists some rule on this ? I planned to use the HWG_ prefix for those functions, which are intended for internal using only, not for calling them in applications. Regards, Alexander http://kresin.belgorod.su |
From: Alexander S.K. <al...@be...> - 2004-05-05 10:56:50
|
On 27.04.2004 21:18, Alejandro de Garate <ale...@ho...> wrote: AdG> Alexander AdG> Accessing the developer's mailing list directly from sourceforge AdG> through item "list" do not shows any mail after April 4. AdG> What's happening ? SourceForge still has many unresolved problems - with CVS access for anonymous users, displaying statistics for a project ( you may see that HwGUI statistics is absent at Sourceforge ), etc. The incorrect displaying of the mailing list content is yes another thing ... We can only hope that in some time they will cure all this. Regards, Alexander http://kresin.belgorod.su |
From: Alexander S.K. <al...@be...> - 2004-05-05 10:56:50
|
On 03.05.2004 2:40, Rodrigo Moreno <rod...@te...> wrote: RM> Hi All RM> Some know if there is a windows replacement for Inkey() function ? RM> Let me explain, i'm working on nonblocking querys for postgres, then, i send RM> the query to database and i check time by time if result is ready. RM> [ ... ] You may use HwGUI's function HWG_PROCESSMESSAGE() in a cycle of checking the query result. Regards, Alexander http://kresin.belgorod.su |
From: Alexander S.K. <al...@be...> - 2004-05-05 10:56:50
|
On 03.05.2004 18:08, Sandro R. R. Freire <san...@ya...> wrote: SRRF> Hi Alexander SRRF> Please verify the new function in menu_c.c SRRF> Name: HWG__INSERTBITMAPMENU Is this function is intended for creating new menu item, you should use the InsertMenu() or InsertMenuItem() inside it instead of the SetMenuItemInfo(). If it is for changing some existing menu item, why you use CreateMenu() there ? BTW, what is the purpose of ChangeMenu() function ? As the API help says, it is for "versions earlier than Windows 3.0". Are we need it ? Regards, Alexander http://kresin.belgorod.su |
From: Alexander S.K. <al...@be...> - 2004-05-05 10:56:50
|
On 04.05.2004 19:43, Luiz Rafael Culik Guimaraes <cu...@uo...> wrot= e: LRCG> Dear Friend LRCG> i think their is an misuse of ::title envar on dialog when an resou= rce is LRCG> used LRCG> i plan to do the follow changes LRCG> one LRCG> add an new DATA envar to hold the dialog resource id (current one d= ont allow LRCG> use numetic resource id also) LRCG> make all changes necessary to use the new envar LRCG> also i=B4ll do the changes on dialog.c so we can use both name and = ID as LRCG> resource name LRCG> if any one agree , i=B4ll can commit the changes tommorow Ok. Regards, Alexander http://kresin.belgorod.su |
From: Luiz R. C. G. <cu...@uo...> - 2004-05-04 22:53:02
|
* include/guilib.ch ! added bitmap clause to @ tab * source/control.c source/htab.prg ! added code to add images to tabs items Regards Luiz |