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: Marcelo A. <ma...@ma...> - 2015-06-05 19:24:58
|
On Fri 05 Jun 2015 15:32:22 Alexander S.Kresin wrote: > > After studying tutorial example and your lines on email, unfortunately I > > cannot be able to use updown in either form. Now it give as result the > > initial value without reflecting changes from control. > > > > Copied function DlgGet from tutorial and compile them with same results. > > Is probable that some requisite is not satisfied for compiling hwgui? I am > > working with archlinux. > > Does you use latest HwGUI code from SVN or the distribution ? > Does you compile the tutorial and run the sample with updown control ? > > Regards, Alexander. > > ---------------------------------------------------------------------------- > -- _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers Yes! using build 2425, but I discover that: UPDOWN ... INIT ... RANGE is working properly, the trouble is in: @ 110, 105 BUTTON "Ok" ID IDOK SIZE 100, 32 ON CLICK bOkClick @ 220, 105 BUTTON "Cancel" ID IDCANCEL SIZE 100, 32 ON CLICK bCancelClick must coded without ID for accessing bOkClick and bCancelClick: @ 110, 105 BUTTON "Ok" SIZE 100, 32 ON CLICK bOkClick @ 220, 105 BUTTON "Cancel" SIZE 100, 32 ON CLICK bCancelClick And GET UPDOWN does not update variable parameters, I am trying to make some proof tonight. The actual code is: LOCAL bOkClick := { || nSaturation := oSaturation:Value, ; nGain := oGain:Value, ; oDiapar:lResult := .T., oDiaPar:Close() } LOCAL bCancelClick := { || oDiapar:lResult := .F., oDiaPar:Close() } ... INIT DIALOG oDiaPar TITLE "Parametros para LucisArt" AT 100, 200 SIZE 330, 145 ICON oIcono ; CLIPPER NOEXIT NOEXITESC ; STYLE WS_POPUP + WS_VISIBLE + WS_CAPTION + WS_SYSMENU + DS_CENTER // @ 10, 10 SAY "Ganancia:" SIZE 120, 25 @ 130, 10 UPDOWN oGain INIT nGain RANGE 0, 50000 SIZE 100, 25 STYLE WS_BORDER @ 240, 10 SAY "g >= 0" SIZE 80, 25 @ 10, 35 SAY "Saturacion:" SIZE 120, 25 // @ 130, 35 UPDOWN oSaturation VAR nSaturation RANGE 0, 500 SIZE 100, 25 @ 130, 35 UPDOWN oSaturation INIT nSaturation RANGE 0, 300 SIZE 100, 25 STYLE WS_BORDER @ 240, 35 SAY "s >= 0" SIZE 80, 25 @ 10, 70 SAY "Tamano imagen:" SIZE 120, 25 @ 130, 70 GET oTamano VAR cTamano SIZE 100, 25 @ 110, 105 BUTTON "Ok" SIZE 100, 32 ON CLICK bOkClick @ 220, 105 BUTTON "Cancel" SIZE 100, 32 ON CLICK bCancelClick // hwg_SetDlgKey( oDiapar,, GDK_Return, bOkClick, .F. ) hwg_SetDlgKey( oDiapar,, GDK_KP_Enter, bOkClick, .F. ) hwg_SetDlgKey( oDiapar,, GDK_Escape, bCancelClick, .F. ) // ACTIVATE DIALOG oDiapar Marcelo Anelli C. ma...@ma... ma...@ma... http://www.marceloanelli.com/ |
From: Marcelo A. <ma...@ma...> - 2015-06-05 14:07:26
|
LOCAL bOkClick := { || nSaturation := oSaturation:Value, ; nGain := oGain:Value, ; oDiapar:lResult := .T., oDiaPar:Close() } LOCAL bCancelClick := { || oDiapar:lResult := .F., oDiaPar:Close() } ... INIT DIALOG oDiaPar TITLE "Parametros para LucisArt" AT 100, 200 SIZE 330, 145 ICON oIcono ; CLIPPER NOEXIT NOEXITESC ; STYLE WS_POPUP + WS_VISIBLE + WS_CAPTION + WS_SYSMENU + DS_CENTER // @ 10, 10 SAY "Ganancia:" SIZE 120, 25 @ 130, 10 UPDOWN oGain INIT nGain RANGE 0, 50000 SIZE 100, 25 STYLE WS_BORDER @ 240, 10 SAY "g >= 0" SIZE 80, 25 @ 10, 35 SAY "Saturacion:" SIZE 120, 25 // @ 130, 35 UPDOWN oSaturation VAR nSaturation RANGE 0, 500 SIZE 100, 25 @ 130, 35 UPDOWN oSaturation INIT nSaturation RANGE 0, 300 SIZE 100, 25 STYLE WS_BORDER @ 240, 35 SAY "s >= 0" SIZE 80, 25 @ 10, 70 SAY "Tamano imagen:" SIZE 120, 25 @ 130, 70 GET oTamano VAR cTamano SIZE 100, 25 @ 110, 105 BUTTON "Ok" SIZE 100, 32 ON CLICK bOkClick @ 220, 105 BUTTON "Cancel" SIZE 100, 32 ON CLICK bCancelClick // hwg_SetDlgKey( oDiapar,, GDK_Return, bOkClick, .F. ) hwg_SetDlgKey( oDiapar,, GDK_KP_Enter, bOkClick, .F. ) hwg_SetDlgKey( oDiapar,, GDK_Escape, bCancelClick, .F. ) // ACTIVATE DIALOG oDiapar The trouble was in this lines: @ 110, 105 BUTTON "Ok" ID IDOK SIZE 100, 32 ON CLICK bOkClick @ 220, 105 BUTTON "Cancel" ID IDCANCEL SIZE 100, 32 ON CLICK bCancelClick Where ID IDOK and ID IDCANCEL must be removed... I will try now with GET UPDOWN Regards to all. Marcelo Anelli C. ma...@ma... ma...@ma... http://www.marceloanelli.com/ |
From: Alain A. <ala...@wa...> - 2015-06-05 13:43:02
|
> What about the editor, I didn't build it under Linux yet - I will check > the problems later. The HCEdiExt class, a base for this utility, is an > important one for me - I plan to use it in few applications as an > embedded rich text editor. It has a special xml-based format, but it > support a subset of html, too. This mean that it will not open any html > file, but it can save as html and this saved file can be opened by any > browser. I have just made a test, adding an url, and saved it, and see the xml structure. I have tried to add a bmp, no error, but when I than tried to save the file, I had a crash: Error BASE/1081 Argument error: + Called from HCEDIEXT:SAVE(1632) Called from SAVEFILE(215) Called from (b)MAIN(113) Called from ONCOMMAND(293) Called from (b)HMAINWINDOW(204) Called from HMAINWINDOW:ONEVENT(267) Called from HWG_ACTIVATEMAINWINDOW(0) Called from HMAINWINDOW:ACTIVATE(256) Called from MAIN(170) and a terminal message: (editor:7843): GdkPixbuf-CRITICAL **: gdk_pixbuf_new_from_file: assertion `filename != NULL' failed A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-27 11:56) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2425) ------------------------------------------------------------------------ |
From: Alain A. <ala...@wa...> - 2015-06-05 13:29:22
|
Le 05/06/2015 13:28, Alexander S.Kresin a écrit : > Dbc and Tutor crashes fixed. Thanks. I had one time the crash with Tutor, I haven't been able to reproduce what I done to crash it. I'll try to retreive it. I found another bug with dbc, concerning Zoom with menu or keys Ctrl+ and Ctrl- doesn't work on alphanuméric keyboard With menu or numeric pad, the result is really curious ... See https://www.dropbox.com/s/hgyjz7j2oapadv3/Zoom_dbc.ogv?dl=1 > HwReport and Designer doesn't work under gtk version. For designer (and perhaps hwReport), I suppose it's due to the impossibility to create non-modal windows ? It would be nice to have these two tools under Linux > What about the editor, I didn't build it under Linux yet - I will check > the problems later. The HCEdiExt class, a base for this utility, is an > important one for me - I plan to use it in few applications as an > embedded rich text editor. It has a special xml-based format, but it > support a subset of html, too. This mean that it will not open any html > file, but it can save as html and this saved file can be opened by any > browser. Humm, I suppose that the xml file has a particular format? Can you give an example in svn. To be able to open a file, and see what happens. Thanks A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-27 11:56) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2425) ------------------------------------------------------------------------ |
From: Alexander S.K. <al...@be...> - 2015-06-05 12:32:36
|
> > After studying tutorial example and your lines on email, unfortunately I > cannot be able to use updown in either form. Now it give as result the initial > value without reflecting changes from control. > > Copied function DlgGet from tutorial and compile them with same results. > Is probable that some requisite is not satisfied for compiling hwgui? I am > working with archlinux. > Does you use latest HwGUI code from SVN or the distribution ? Does you compile the tutorial and run the sample with updown control ? Regards, Alexander. |
From: Alexander S.K. <al...@be...> - 2015-06-05 12:28:34
|
Dbc and Tutor crashes fixed. HwReport and Designer doesn't work under gtk version. What about the editor, I didn't build it under Linux yet - I will check the problems later. The HCEdiExt class, a base for this utility, is an important one for me - I plan to use it in few applications as an embedded rich text editor. It has a special xml-based format, but it support a subset of html, too. This mean that it will not open any html file, but it can save as html and this saved file can be opened by any browser. Regards, Alexander. |
From: Alain A. <ala...@wa...> - 2015-06-04 12:14:20
|
Calculator : /Error BASE/1111 Argument error: LEN Called from LEN(0) Called from HEDIT:NEW(78) Called from CALCUL(875) Called from (b)MAIN(241) Called from ONCOMMAND(292) Called from (b)HMAINWINDOW(203) Called from HMAINWINDOW:ONEVENT(266) Called from HWG_ACTIVATEMAINWINDOW(0) Called from HMAINWINDOW:ACTIVATE(255) Called from MAIN(294)/ A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2419) ------------------------------------------------------------------------ |
From: Alain A. <ala...@wa...> - 2015-06-04 12:02:37
|
When I create a new form, just appears the object inspector, the new window doesn't appear. Terminal messages: /alain@Gramps-JujuLand:/opt/TuxPrograms/trunks/harbour/addons/hwgui-src/hwgui/utils/designer$ ./designer (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): Gtk-CRITICAL **: IA__gtk_check_menu_item_set_active: assertion `GTK_IS_CHECK_MENU_ITEM (check_menu_item)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkCombo' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkNotebook' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_move: assertion `GTK_IS_WINDOW (window)' failed (designer:7668): GLib-GObject-WARNING **: invalid cast from `GtkHBox' to `GtkWindow' (designer:7668): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `GTK_IS_WINDOW (window)' failed / When I close form and try to create a new one: /(designer:7674): GLib-GObject-CRITICAL **: g_object_get_data: assertion `G_IS_OBJECT (object)' failed (designer:7674): Gtk-CRITICAL **: IA__gtk_entry_get_text: assertion `GTK_IS_ENTRY (entry)' failed Unrecoverable error 6005: Exception SIGSEGV at address (nil) Called from HWG_EDIT_GETTEXT(0) Called from HCOMBOBOX:GETVALUE(197) in hcombo.prg Called from HCOMBOBOX:VALUE(218) in hcombo.prg Called from INSPUPDBROWSE(348) in inspect.prg Called from DLGONSIZE(372) in hformgen.prg Called from (b)HFORMGEN_CREATEDIALOG(238) in hformgen.prg Called from HWG_ONWNDSIZE(36) in hwindow.prg Called from (b)(_INITSTATICS00002)(0) in hdialog.prg Called from HDIALOG:ONEVENT(153) in hdialog.prg Called from HWG_SHOWALL(0) Called from HDIALOG:ACTIVATE(127) in hdialog.prg Called from HFORMGEN:CREATEDIALOG(316) in hformgen.prg Called from HFORMGEN:NEW(87) in hformgen.prg Called from (b)MAIN(176) in designer.prg Called from HOWNBUTTON:MUP(264) in hownbtn.prg Called from HOWNBUTTON:ONEVENT(126) in hownbtn.prg Called from HWG_ACTIVATEMAINWINDOW(0) Called from HMAINWINDOW:ACTIVATE(255) in hwindow.prg Called from MAIN(248) in designer.prg / A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2419) ------------------------------------------------------------------------ |
From: Alain A. <ala...@wa...> - 2015-06-04 11:43:03
|
Trying to build hwreport: /alain@Gramps-JujuLand:/opt/TuxPrograms/trunks/harbour/addons/hwgui-src/hwgui/utils/hwreport$ hbmk2 hwreport.hbp// //Harbour 3.2.0dev (r1505271156)// //Copyright (c) 1999-2015, http://harbour-project.org/// //Compiling 'hwreport.prg'...// //hwreport.prg(17) Warning W0002 Redefinition or duplicate definition of #define SB_VERT// //Lines 4327, Functions/Procedures 14// //Generating C source output to '/tmp/hbmk_TCtHjJ.dir/hwreport.c'... Done.// //Compiling 'opensave.prg'...// //opensave.prg(15) Warning W0002 Redefinition or duplicate definition of #define SB_VERT// //Lines 4178, Functions/Procedures 11// //Generating C source output to '/tmp/hbmk_TCtHjJ.dir/opensave.c'... Done.// //Compiling 'propert.prg'...// //propert.prg(14) Warning W0002 Redefinition or duplicate definition of #define UDS_SETBUDDYINT// //propert.prg(15) Warning W0002 Redefinition or duplicate definition of #define UDS_ALIGNRIGHT// //Lines 3782, Functions/Procedures 22// //Generating C source output to '/tmp/hbmk_TCtHjJ.dir/propert.c'... Done.// //Compiling 'printrpt.prg'...// //Lines 3588, Functions/Procedures 1// //Generating C source output to '/tmp/hbmk_TCtHjJ.dir/printrpt.c'... Done.// //Compiling 'repexec.prg'...// //Lines 4354, Functions/Procedures 7// //Generating C source output to '/tmp/hbmk_TCtHjJ.dir/repexec.c'... Done.// ///tmp/hbmk_TCtHjJ.dir/hwreport.o:(.data+0x4b0): undefined reference to `HB_FUN_HWG_SHOWSCROLLBAR'// ///tmp/hbmk_TCtHjJ.dir/hwreport.o:(.data+0x6d0): undefined reference to `HB_FUN_HWG_CHECKRADIOBUTTON'// ///tmp/hbmk_TCtHjJ.dir/hwreport.o:(.data+0x730): undefined reference to `HB_FUN_HWG_ISDLGBUTTONCHECKED'// ///tmp/hbmk_TCtHjJ.dir/hwreport.o:(.data+0x950): undefined reference to `HB_FUN_HWG_SETSCROLLINFO'// ///tmp/hbmk_TCtHjJ.dir/hwreport.o:(.data+0xb10): undefined reference to `HB_FUN_HWG_POSTMESSAGE'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x150): undefined reference to `HB_FUN_HWG_SETDLGITEMTEXT'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x1f0): undefined reference to `HB_FUN_HWG_CHECKRADIOBUTTON'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x250): undefined reference to `HB_FUN_HWG_GETDLGITEM'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x270): undefined reference to `HB_FUN_HWG_ISDLGBUTTONCHECKED'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x2d0): undefined reference to `HB_FUN_HWG_SAVEFILE'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x2f0): undefined reference to `HB_FUN_HWG_GETEDITTEXT'// ///tmp/hbmk_TCtHjJ.dir/opensave.o:(.data+0x470): undefined reference to `HB_FUN_HWG_SHOWSCROLLBAR'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x250): undefined reference to `HB_FUN_HWG_CHECKRADIOBUTTON'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x270): undefined reference to `HB_FUN_HWG_SETDLGITEMTEXT'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x350): undefined reference to `HB_FUN_HWG_GETDLGITEM'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x370): undefined reference to `HB_FUN_HWG_GETEDITTEXT'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x390): undefined reference to `HB_FUN_HWG_ISDLGBUTTONCHECKED'// ///tmp/hbmk_TCtHjJ.dir/propert.o:(.data+0x3d0): undefined reference to `HB_FUN_HWG_GETDLGITEMTEXT'// //collect2: ld a retourné 1 code d'état d'exécution// //hbmk2[hwreport]: Erreur: Exécution de l'éditeur des liens. 1// //gcc '/tmp/hbmk_TCtHjJ.dir/hwreport.o' '/tmp/hbmk_TCtHjJ.dir/opensave.o' '/tmp/hbmk_TCtHjJ.dir/propert.o' '/tmp/hbmk_TCtHjJ.dir/printrpt.o' '/tmp/hbmk_TCtHjJ.dir/repexec.o' '/tmp/hbmk_TCtHjJ.dir/hbmk_vuO5JB.o' -Wl,--start-group -lhwgui -lprocmisc -lhbxml -lhwgdebug -lhbcplr -lhbdebug -lharbour -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lglib-2.0 -Wl,--end-group -ohwreport -L/usr/lib/harbour -L/usr/lib/harbour/addons/hwgui// // //hbmk2: Erreur: Référencée(s), manquante(s), mais fonction(s) inconnue(s):// // HWG_SHOWSCROLLBAR(), HWG_CHECKRADIOBUTTON(), HWG_ISDLGBUTTONCHECKED(),// // HWG_SETSCROLLINFO(), HWG_POSTMESSAGE(), HWG_SETDLGITEMTEXT(),// // HWG_GETDLGITEM(), HWG_SAVEFILE(), HWG_GETEDITTEXT(),// // HWG_GETDLGITEMTEXT()// / Where do I fail ? Just a Windows util ? Thanks A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2419) ------------------------------------------------------------------------ |
From: Alain A. <ala...@wa...> - 2015-06-04 11:32:43
|
Maximize/minimized : Trying to Center : /Error HCUSTOMWINDOW/0 Invalid class member // //Called from HMAINWINDOW:CENTER(212) // //Called from (b)TEST(15) // //Called from ONCOMMAND(292) // //Called from (b)HMAINWINDOW(203) // //Called from HMAINWINDOW:ONEVENT(266) // //Called from HWG_ACTIVATEMAINWINDOW(0) // //Called from HMAINWINDOW:ACTIVATE(255) // //Called from TEST(23) // //Called from HB_HRBRUN(0) // //Called from _APPMAIN(86)/ A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2419) ------------------------------------------------------------------------ |
From: Alain A. <ala...@wa...> - 2015-06-04 11:20:07
|
When opening a file (txt, prg, ch, hbc, sh, bat, ) : /Error BASE/1108 Argument error: AT// //Called from AT(0)// //Called from SETTEXT(534)// //Called from (b)OPENFILE(187)// //Called from HCEDIEXT:SETTEXT(185)// //Called from HCEDIEXT:OPEN(291)// //Called from OPENFILE(189)// //Called from (b)MAIN(111)// //Called from ONCOMMAND(292)// //Called from (b)HMAINWINDOW(203)// //Called from HMAINWINDOW:ONEVENT(266)// //Called from HWG_ACTIVATEMAINWINDOW(0)// //Called from HMAINWINDOW:ACTIVATE(255)// //Called from MAIN(170)/ When opening an xml : /Wrong file format /What are the filetypes which can be opened with editor ?/ / When trying to insert an image (bmp), after confirmation, nothing appears but a message in the terminal : (editor:7040): GdkPixbuf-CRITICAL **: gdk_pixbuf_new_from_file: assertion `filename != NULL' failed - When writting text (after new) nothing appears in the box - When inserting a tab with border, nothing appears no cursor, and impossibility to know where we are I really dont understand how this sample can work. Is-it just for Windows ? Thanks A+ -- ------------------------------------------------------------------------ Alain Aupeix http://jujuland.pagesperso-orange.fr/ http://pissobi-lacassagne.pagesperso-orange.fr/ ------------------------------------------------------------------------ U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2419) ------------------------------------------------------------------------ |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-06-03 14:59:03
|
Hi! > Because when it was written, nobody care about standartization - >this is one of reasons, why I made the cleanup and moved some classes to >contrib. > We may change the code to pass object instead of handle there, but, >you know, there will be dissatisfied users, who will get errors and will >be forced to change their code. > >Regards, Alexander. I made a poll in the forum hwgui in Brazil, about to standardize the functions but no one did, a total silence. For my part feel the will to make such corrections as necessary. Only one main syntaxe for; For example, ButtonEx... :Handle,ComboBox -> Get -> Displaycount, etc... Here below onother problem of syntaxe with new users! >2) to use GET UPDOWN instead of UPDOWN, then the value will be in >appropriate get variable: Best regards, Itamar M. Lins Jr. |
From: Alexander S.K. <al...@be...> - 2015-06-03 06:47:23
|
Marcelo, > nGain and nSaturation are always 0! and obtain this message on execution of > program: > That's because you try to get values from widgets after the dialog window is destroyed and these widgets are not exist already. You need to get values with one of, at least, two ways ( both are presented in the tutorial ): 1) to do this in the button's ON CLICK codeblock : ... Local bClick := {|| nGain := oGain:Value oDiapar:lResult := .T. hwg_EndDialog() return Nil } ... @ 280, 425 BUTTON "Ok" SIZE 100, 32 ON CLICK bClick 2) to use GET UPDOWN instead of UPDOWN, then the value will be in appropriate get variable: Local upd := 30 ... @ 20,170 GET UPDOWN upd RANGE 0,80 SIZE 50,30 ... ACTIVATE DIALOG oDlg IF oDlg:lResult // upd keeps the UPDOWN value ENDIF Regards, Alexander. |
From: Marcelo A. <ma...@ma...> - 2015-06-02 19:20:32
|
This code for a dialog with two updown control: INIT DIALOG oDiaPar TITLE "Parametros" AT 100, 200 SIZE 510, 460 ICON oIcono ; CLIPPER NOEXIT NOEXITESC ; STYLE WS_POPUP + WS_VISIBLE + WS_CAPTION + WS_SYSMENU + DS_CENTER // @ 10, 10 SAY "Ganancia:" SIZE 100, 25 @ 110, 10 UPDOWN oGain INIT 30 RANGE 0, 6000 SIZE 100, 25 WIDTH 50 @ 10, 35 SAY "Saturacion:" SIZE 100, 25 @ 110, 35 UPDOWN oSaturation INIT 60 RANGE 0, 200 SIZE 100, 25 WIDTH 50 @ 280, 425 BUTTON "Ok" ID IDOK SIZE 100, 32 ON CLICK { || oDiapar:lResult := .T. , hwg_EndDialog() } @ 390, 425 BUTTON "Cancel" ID IDCANCEL SIZE 100, 32 ON CLICK { || oDiapar:lResult := .F. , hwg_EndDialog() } // ACTIVATE DIALOG oDiapar // IF !oDiapar:lResult Hwg_MsgInfo( "Proceso cancelado." ) DirChange( cDirAct ) RETURN NIL ENDIF nGain := oGain:Value() cGain := AllTrim( Str( nGain, 5, 0 ) ) nSaturation := oSaturation:Value() cSaturation := AllTrim( Str( nSaturation, 4, 0 ) ) Hwg_MsgInfo( cGain + " / " + cSaturation ) nGain and nSaturation are always 0! and obtain this message on execution of program: (macmirestvguijpg:21924): Gtk-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated (macmirestvguijpg:21924): Gtk-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated (macmirestvguijpg:21924): Gdk-WARNING **: gdk_window_set_icon_list: icons too large (macmirestvguijpg:21924): Gtk-CRITICAL **: IA__gtk_spin_button_get_value_as_int: assertion 'GTK_IS_SPIN_BUTTON (spin_button)' failed (macmirestvguijpg:21924): Gtk-CRITICAL **: IA__gtk_spin_button_get_value_as_int: assertion 'GTK_IS_SPIN_BUTTON (spin_button)' failed Using this statements: nGain := hwg_GetUpDown( oGain:handle ) same errors and 0 value is obtained. Some hints? Regards, Marcelo Anelli C. ma...@ma... ma...@ma... http://www.marceloanelli.com/ -- Marcelo Anelli C. ma...@ma... ma...@ma... http://www.marceloanelli.com/ -- Marcelo Anelli C. ma...@ma... ma...@ma... http://www.marceloanelli.com/ |
From: Alexander S.K. <al...@be...> - 2015-06-02 12:37:39
|
Itamar M. Lins Jr. Lins пишет: > > ... OwnerButton ...BITMAP HBitMap():AddResource('RUN') > ... BUTTONEX ... BITMAP HBitMap():AddResource('RUN'):handle > > > Why ButtonEX is necessary :Handle ? > > Because when it was written, nobody care about standartization - this is one of reasons, why I made the cleanup and moved some classes to contrib. We may change the code to pass object instead of handle there, but, you know, there will be dissatisfied users, who will get errors and will be forced to change their code. Regards, Alexander. |
From: Alexander S.K. <al...@be...> - 2015-06-02 12:30:24
|
> Hi! > The version 2.19 erase same examples. > > viewer.prg > ... > This is file not found into samples directory and others samples files. > These files are important for research > hwgui sintaxe and functions. > Yes, long ago I've deleted from samples few files, which dublicated the functionality of other tests, or had outdated syntax ( sa mysql client sample, which used dialogs from resources, built with Borland Workshop ). I can restore those of them, which are really needed. Regards, Alexander. |
From: Luiz R. C. <lu...@xh...> - 2015-06-02 00:44:36
|
Hi Becouse hbuttonex require the real handle to manipulate the image Regards Luiz 2015-06-01 21:15 GMT-03:00 Itamar M. Lins Jr. Lins <ita...@gm...>: > > ... OwnerButton ...BITMAP HBitMap():AddResource('RUN') > ... BUTTONEX ... BITMAP HBitMap():AddResource('RUN'):handle > > > Why ButtonEX is necessary :Handle ? > > Best regards, > Itamar M. Lins Jr. > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers > > |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-06-02 00:15:58
|
... OwnerButton ...BITMAP HBitMap():AddResource('RUN') ... BUTTONEX ... BITMAP HBitMap():AddResource('RUN'):handle Why ButtonEX is necessary :Handle ? Best regards, Itamar M. Lins Jr. |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-06-01 18:13:37
|
Hi! The version 2.19 erase same examples. viewer.prg /* * $Id: viewer.prg 2012 2013-03-07 09:03:56Z alkresin $ * * JPEG, BMP, PNG, MNG, TIFF images viewer. * FreeImage.dll should present to use this sample * * Copyright 2003 Alexander S.Kresin <al...@be...> * www - http://kresin.belgorod.su */ ... This is file not found into samples directory and others samples files. These files are important for research hwgui sintaxe and functions. Best regards, Itamar M. Lins Jr. |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-05-23 13:57:53
|
-----------------------8<--------------------- 2008-01-28 17-00 UTC-0300 Sandro R. R. Freire <sandrorrfreire at yahoo.com.br> * source\hedit.prg ! added new Method ParsePict to replace the picture em real time ------------->8------------- Becouse you change Parsepict of method to function. Some Brazilian users are facing this problem. oObj1:ParsePict(oObj1,cPicture,oObj1:title) Error HCUSTOMWINDOW/0 Invalid class member Called from source\winapi\hcwindow.prg->HEDIT:PARSEPICT(230) Called from cadastro.prg->MUDA_TEXTO(553) Called from cadastro.prg->(b)CAD_ASSOCIADO(406) Called from source\winapi\hdialog.prg->INITMODALDLG(258) Best regards, Itamar M. Lins Jr. |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-05-23 13:51:45
|
Becouse you change Parsepict of method to function. Some Brazilian users are facing this problem. oObj1:ParsePict(oObj1,cPicture,oObj1:title) Error HCUSTOMWINDOW/0 Invalid class member Called from source\winapi\hcwindow.prg->HEDIT:PARSEPICT(230) Called from cadastro.prg->MUDA_TEXTO(553) Called from cadastro.prg->(b)CAD_ASSOCIADO(406) Called from source\winapi\hdialog.prg->INITMODALDLG(258) Best regards, Itamar M. Lins Jr. |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-05-22 20:33:37
|
Using tutor.exe Crash on example tutor. Hwgui tutorial Controls->Status widow Error BASE/1082 Argument error: - Called from ->HWG_WRITESTATUS(86) Called from ->(b)HSTATUS(262) Called from ->HSTATUS:SETTEXT(0) Called from __tmp.hrb->(b)TEST(11) Called from ->ONCOMMAND(567) Called from ->(b)HMAINWINDOW(256) Called from ->HMAINWINDOW:ONEVENT(346) Called from ->HWG_ACTIVATEMAINWINDOW(0) Called from ->HMAINWINDOW:ACTIVATE(335) Called from __tmp.hrb->TEST(15) Called from ->HB_HRBRUN(0) Called from ->_APPMAIN(86) HWGUI 2.19 Build 3 Date:05/22/15 Time:17:05:38 --------------------8<------------- Controls->ComboBox and ON CHANGE event Not working, because flag/parameters "DisplayCount" and "VAR" not found. --------------------8<------------- Get started->Base controls Same problem with combobox not found "DisplayCount..." however I see a little confusion. We use time: @ 20,20 COMBOBOX oCombo1 ITEMS aCombo1 SIZE 100, 25 ON CHANGE bCombo1 //Not work @ 20,120 GET COMBOBOX oCombo VAR cm ITEMS aCombo SIZE 100, 150 //Working fine! There will be better unify this command? ComboBox with GET flag and without GET flag, with "VAR" flag and without "VAR, "DISPLAYCOUNT"...? Best regards, Itamar M. Lins Jr. |
From: Alain A. <ala...@wa...> - 2015-05-22 19:32:31
|
<html> <head> <meta content="text/html; charset=windows-1252" http-equiv="Content-Type"> </head> <body text="#000000" bgcolor="#FFFFFF"> After some tests with the external programs I launched from my program, and testing a few way to avoid this error, I may say:<br> <br> - no error with console commands or shell (if no graphic program is used inside)<br> - no error with gnome-terminal<br> - no error when using a program such xdg-open which detach the launched program<br> - no error launching Firefox or Thunderbird.<br> <br> I think that Firefox and Thunderbird binaries aren't launched directly, and the mechanism used by it has the same specificities than xdg-open. That's probably the reason why they do not make errors.<br> <br> - errors launching an harbour program or a python program (gedit, gramps, ...).<br> - errors perhaps too with other program types.<br> <br> For the types which makes errors, I have then two solutions:<br> <br> - for simple commands without parameters we can use at, or directly the command embedded with close_db() and open_db(). As these way are identical, at is not the simpliest way, as it's necessary to create a script and change the rights.<br> - for commands with parameters which can be different, to avoid having to create a script and change the rights, the easiest way is to embed the command with close_db() and open_db()<br> <br> So in conclusion, I prefer the method of closing and opening the database.<br> <br> But it was an excellent exercice :)<br> <br> A+<br> -- <br> <div class="moz-signature"> <hr> Alain Aupeix<br> <a class="moz-txt-link-freetext" href="http://jujuland.pagesperso-orange.fr/">http://jujuland.pagesperso-orange.fr/</a><br> <a class="moz-txt-link-freetext" href="http://pissobi-lacassagne.pagesperso-orange.fr/">http://pissobi-lacassagne.pagesperso-orange.fr/</a><br> <hr> <small>U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2407)</small> <hr> </div> </body> </html> |
From: Itamar M. L. J. L. <ita...@gm...> - 2015-05-22 19:26:14
|
C:\devl\hwgui>hbmk2 hwgui.hbp hbmk2: Harbour: Compilando módulos... hbmk2: Compilando... ../../../../source/winapi/draw.c: In function 'HB_FUN_HWG_DRAWGRADIENT': ../../../../source/winapi/draw.c:1362:15: warning: suggest parentheses around '& &' within '||' [-Wparentheses] if( isV && stop_y[0] > y1 || isH && stop_x[0] > x1 ) ^ ../../../../source/winapi/draw.c:1373:16: warning: suggest parentheses around '& &' within '||' [-Wparentheses] if ( isV && stop_y[colors_num-1] < y2 + 1 || isH && stop_x[colors_num-1] < x2 + 1 ) ^ ../../../../source/winapi/draw.c:1387:7: warning: 'hBrush_1' may be used uniniti alized in this function [-Wmaybe-uninitialized] DeleteObject( hBrush_1 ); ^ ../../../../source/winapi/draw.c:1385:7: warning: 'hPen_1' may be used uninitial ized in this function [-Wmaybe-uninitialized] DeleteObject( hPen_1 ); ^ ../../../../source/winapi/draw.c:1388:7: warning: 'hBrush_2' may be used uniniti alized in this function [-Wmaybe-uninitialized] DeleteObject( hBrush_2 ); ^ ../../../../source/winapi/draw.c:1386:7: warning: 'hPen_2' may be used uninitial ized in this function [-Wmaybe-uninitialized] DeleteObject( hPen_2 ); ^ Thanks for Your attention to ComboBox! Best regards, Itamar M. Lins Jr. |
From: Alain A. <ala...@wa...> - 2015-05-22 17:52:21
|
<html> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> </head> <body text="#000000" bgcolor="#FFFFFF"> <div class="moz-cite-prefix">Le 22. 05. 15 15:24, Francesco Perillo a écrit :<br> </div> <blockquote cite="mid:CADPHLr-AJwwSWK3=E5V...@ma..." type="cite"> <div dir="ltr"> <div> <div> I think it is standard unix behaviour: when you run an external program a copy of all FDs (file descriptors) are passed to the new program. Infact, years ago, I had to close stdin and stdout to really detach the called executable.<br> <br> </div> At the end I used another trick: AT now.<br> <br> run("at now "copen+" '"+fname+"' &")<br> <br> </div> Program "at" receives the copy of FDs but it quits immediately. Then crond subsystem runs the command. Please be carefull and check since I can't remember (after almost 15 years...): the called program is run with a different environment and you may need to adapt the code, or run a bash script that set it up and calls the program...<br> </div> </blockquote> After some troubles to make it works, I finally success <span class="moz-smiley-s1"><span> :-);)</span></span><br> <br> 1) It works only with bash or sh scripts, not for graphics command directly passed to at<br> 2) In the script, the command must be prefixed with the display to use<br> <br> Exemple in the prg :<br> <br> run("at -M -f "+cspath+"/gradients now")<br> <br> The script :<br> <br> #!/bin/bash<br> env DISPLAY=:0 Gradients<br> <br> And it work s nicelly.<br> No more error :)<br> <br> Thanks<br> A+<br> <div class="moz-signature">-- <br> <hr> Alain Aupeix<br> <a class="moz-txt-link-freetext" href="http://jujuland.pagesperso-orange.fr/">http://jujuland.pagesperso-orange.fr/</a><br> <a class="moz-txt-link-freetext" href="http://pissobi-lacassagne.pagesperso-orange.fr/">http://pissobi-lacassagne.pagesperso-orange.fr/</a><br> <hr> <small>U.buntu 12.04 | G.ramps 3.4.8-1 | H.arbour 3.2.0dev (2015-05-19 13:17) | HbIDE (Rev.316) | Five.Linux (r143) | Hw.Gui (2407)</small> <hr> </div> </body> </html> |