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: Itamar M. L. J. L. <ita...@gm...> - 2014-04-21 22:04:45
|
Hi!
Mr. Alexander, you can remove if desired directive to "FOR EACH" because
harbour include from 2010 year of hdialog.prg and others.
FUNCTION hwg_ReleaseAllWindows( hWnd )
LOCAL oItem, iCont, nCont
// Vamos mandar destruir as filhas
// Destroi as CHILD's desta MAIN
#ifdef __XHARBOUR__ //can remove these lines
FOR EACH oItem IN HWindow():aWindows
IF oItem:oParent != Nil .AND. oItem:oParent:handle == hWnd
hwg_Sendmessage( oItem:handle, WM_CLOSE, 0, 0 )
ENDIF
NEXT
/*
#else //
nCont := Len( HWindow():aWindows )
FOR iCont := nCont TO 1 STEP - 1
IF HWindow():aWindows[iCont]:oParent != Nil .AND. ;
HWindow():aWindows[iCont]:oParent:handle == hWnd
hwg_Sendmessage( HWindow():aWindows[iCont]:handle, WM_CLOSE, 0, 0 )
ENDIF
NEXT
#endif
*/
Best regards,
Itamar M. Lins Jr.
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-21 15:32:56
|
Hi!
Now with more time I test possibilities on EXIT of a dialog and found somes
problems.
#include "hwgui.ch"
Function Main
Local oDlg, var1 := 10, var2 := 20
INIT DIALOG oDlg TITLE "Test" AT 210,10 SIZE 100,140 CLIPPER NOEXIT
@ 10,10 GET var1 SIZE 80,24
@ 10,34 GET var2 SIZE 80,24 VALID {||hwg_Msginfo("v2"),.t.}
ACTIVATE DIALOG oDlg
Return Nil
Flag CLIPPER NOEXIT = Bug, not run hwg_msginfo() if I use <RETURN> to
finalize, but with <TAB> key works fine!
Now flag CLIPPER ONLY! without "NOEXIT"
If I use <TAB> key on GET var2 run hwg_msginfo() one times and I get a bug
because not close dialog!
More, if I use key <RETURN> on GET var2 continues run twice (bug) and close
dialog
Best regards,
Itamar M. Lins Jr.
|
|
From: Alexander S.K. <al...@be...> - 2014-04-21 12:13:31
|
Itamar M. Lins Jr. Lins пишет:
> Here not work :( While I key <RETURN> run hwg_msginfo("v2") twice.
You wrote that "The dialog not run valid flag into last get". So, it
run , but the problem is that for the last get it executes twice ?
For now I fixed it in situation where the NOEXIT clause is set for
the dialog.
> If I remove // it auto click on BUTTON "OK" and close dialog.
Yes, of course - this is the same behavour as in Clipper. If you don't
want this, you need to add NOEXIT to the dialog declaration.
Regards, Alexander.
|
|
From: Alain A. <ala...@wa...> - 2014-04-17 20:39:00
|
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi,<br>
<br>
The same way I have translated dbview, I have made it for the
debugger.<br>
It works , but I have a little problem.<br>
To translate I added this:<br>
<br>
<small><i>REQUEST HB_CODEPAGE_FRISO<br>
REQUEST HB_CODEPAGE_UTF8<br>
<br>
...<br>
<br>
Function Main( ... )<br>
...<br>
hwg_SetAppLocale( "ISO8859-1" )<br>
hb_CdpSelect( "FRISO" )<br>
<br>
</i></small><br>
and I use hb_utf8tostr() for the menus, titles, strings<br>
That's ok<br>
<br>
To have a correct display of the text, I have added<br>
<br>
<small><i>Static Function OpenPrg()<br>
...<br>
hwg_SetAppLocale( "UTF-8" )<br>
</i></small><br>
but it doesn't work as I expect<br>
<br>
hwgdebug <program> >>> don't
display correctly <br>
<program> >>>
don't display correctly<br>
hwgdebug => debug a program >>> don't display
correctly<br>
<br>
In all these cases, I must use 'open a source file' to have then
correct display.<br>
<br>
What do I miss ?<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.6-1 | H.arbour 3.2.0dev
(2014-04-11 15:36) | HbIDE (Rev.288) | Five.Linux (r138) |
Hw.Gui (2235)</small>
<hr></div>
</body>
</html>
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-16 13:31:34
|
>I just tested this, and it works - the info box appears:
#include "hwgui.ch"
Function Main
Local oDlg, var1 := 10, var2 := 20
INIT DIALOG oDlg TITLE "Test" AT 210,10 SIZE 100,140 CLIPPER
@ 10,10 GET var1 SIZE 80,24
@ 10,34 GET var2 SIZE 80,24 VALID {||hwg_Msginfo("v2"),.t.}
//@ 20, 80 BUTTON "Ok" SIZE 90, 32 ON CLICK {||hwg_Enddialog()}
ACTIVATE DIALOG oDlg
Return Nil
>Regards, Alexander.
Here not work :( While I key <RETURN> run hwg_msginfo("v2") twice.
If I remove // it auto click on BUTTON "OK" and close dialog.
Hwgui build
* $Id: Changelog 2236 2014-04-16 09:43:51Z alkresin $
Harbour 3.4.0dev (r1404120953)
Copyright (c) 1999-2014, http://harbour-project.org/
Harbour Build Info
---------------------------
Version: Harbour 3.4.0dev (r1404120953)
Compiler: MinGW GNU C 4.8.1 (32-bit)
Platform: Windows 7 6.1.7601 Service Pack 1
PCode version: 0.3
ChangeLog last entry: 2014-04-12 11:53 UTC+0200 Viktor Szakats
(vszakats users.noreply.github.com)
ChangeLog ID:
Built on: Apr 13 2014 12:56:12
Build options:
---------------------------
Best regards,
Itamar M. Lins Jr.
|
|
From: Alexander S.K. <al...@be...> - 2014-04-16 11:55:46
|
Itamar M. Lins Jr. Lins пишет:
>
> I found others anomalies of dialog still unresolved.
> The dialog not run valid flag into last get
>
> Init Dialog ...
> ... get oGetA var cGetA
> ... get oGetB var ocGetB Valid {||hwg_msginfo("Hi")} //not show :(
> Activate ...
>
I just tested this, and it works - the info box appears:
#include "hwgui.ch"
Function Main
Local oDlg, var1 := 10, var2 := 20
INIT DIALOG oDlg TITLE "Test" AT 210,10 SIZE 100,140 CLIPPER
@ 10,10 GET var1 SIZE 80,24
@ 10,34 GET var2 SIZE 80,24 VALID {||hwg_Msginfo("v2"),.t.}
@ 20, 80 BUTTON "Ok" SIZE 90, 32 ON CLICK {||hwg_Enddialog()}
ACTIVATE DIALOG oDlg
Return Nil
Regards, Alexander.
|
|
From: Alexander S.K. <al...@be...> - 2014-04-16 09:01:02
|
Itamar M. Lins Jr. Lins пишет:
>
> A susgestion is create a how to (for users) of with add lost methods of 2.17
> since you are creating some resistance adds in them, not what your thinking is wrong, but in Brazil there are more than 400 users Hwgui hoping the 2.18 version is more compatible with some features of 2.17
>
As I wrote before, I'm ready to discuss what to do with those lost
features. Some of them may be included in 2.18 base library ( hwgui.lib
), some others - to the contrib ( hwg_extctrl.lib ), as we did it with
ButtonEx, StaticEx, ...
> For example:
> Class hBrowse this methods not found in 2.18
> //oBrw:ShowSortMark := .T.
> //oBrw:ShowMark := .F.
> //oBrw:Themed := .T.
To resolve these and other problems with HBrowse I suggest to include
the whole HBrowse from 2.17 to the contrib as HBrowseEx.
>
> I found others anomalies of dialog still unresolved.
> The dialog not run valid flag into last get
>
> Init Dialog ...
> ... get oGetA var cGetA
> ... get oGetB var ocGetB Valid {||hwg_msginfo("Hi")} //not show :(
> Activate ...
I'll check this.
Regards, Alexander.
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-15 13:51:24
|
>What this //oBrw:ShowSortMark := .T.
>SortMark() is intended for ? Does it really needed ?
>Regards, Alexander.
A susgestion is create a how to (for users) of with add lost methods
of 2.17since you are creating some resistance adds in them, not what
your thinking is wrong, but in Brazil there are more than 400 users
Hwgui hoping the 2.18 version is more compatible with some features of
2.17
For example:
Class hBrowse this methods not found in 2.18 //oBrw:ShowSortMark :=
.T. //oBrw:ShowMark := .F.
//oBrw:Themed := .T.
I found others anomalies of dialog still unresolved.
The dialog not run valid flag into last get
Init Dialog ...
... get oGetA var cGetA
... get oGetB var ocGetB Valid {||hwg_msginfo("Hi")} //not show :(
Activate ...
Best regards,
Itamar M. Lins Jr.
|
|
From: Alex S. <ss...@mw...> - 2014-04-15 09:28:34
|
Hi Alexander > What this SortMark() is intended for ? Does it really needed ? It shows the current column which is used to order the browse, and whether ascending or descending. I use it (but my source is quite a lot different from the repository now). -- Regards Alex |
|
From: Alexander S.K. <al...@be...> - 2014-04-15 09:07:44
|
Itamar M. Lins Jr. Lins пишет: > I get a lot of problems here... > Error HCUSTOMWINDOW/0 Invalid class member > Called from ->HBROWSE:_SHOWSORTMARK(228) > > I wonder if version 2.18 will to be full sintaxe of 2.17. > How to resolve this question ? > > 2009-11-18 13:45 UTC-0300 Luis Fernando Basso <lfbasso at via-rs.net > <http://via-rs.net>> > * source\hbrowse.prg > * CLASS HColumn > + DATA nSortMark INIT 0 > + METHOD SortMark( nSortMark ) SETGET > * CLASS HBrowse > + DATA ShowSortMark INIT .F. > ... What this SortMark() is intended for ? Does it really needed ? Regards, Alexander. |
|
From: Alexander S.K. <al...@be...> - 2014-04-15 09:05:14
|
Itamar M. Lins Jr. Lins пишет: > Error BASE/1004 Método não exportado: NWIDTH > Called from ->NWIDTH(0) > Called from ->HBROWSE:REBUILD(634) > ... The :nWidth data here belongs not to the hbrowse, but to the hbitmap object, which you use with the browse. Check, if the bitmap object was created properly. Regards, Alexander. |
|
From: Alexander S.K. <al...@be...> - 2014-04-15 09:02:25
|
Itamar M. Lins Jr. Lins пишет:
> oBitMap1:=HBitMap():addfile('imagens\exit.bmp') :Handle
>
> Error BASE/1004 Método não exportado: HANDLE
> Called from ->HANDLE(0)
>
The HBitMap():addfile() works. For example:
#include "hwgui.ch"
Function Main
Local oDlg, oBitmap := HBitmap():AddFile( "..\image\exit.bmp" )
INIT DIALOG oDlg TITLE "Test" AT 210,10 SIZE 100,100
@ 10,10 BITMAP oBitmap
ACTIVATE DIALOG oDlg
Return Nil
Check, if the path and the name of a bitmap are correct.
Regards, Alexander.
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-14 18:53:33
|
I get a lot of problems here... Error HCUSTOMWINDOW/0 Invalid class member Called from ->HBROWSE:_SHOWSORTMARK(228) I wonder if version 2.18 will to be full sintaxe of 2.17. How to resolve this question ? 2009-11-18 13:45 UTC-0300 Luis Fernando Basso <lfbasso at via-rs.net> * source\hbrowse.prg * CLASS HColumn + DATA nSortMark INIT 0 + METHOD SortMark( nSortMark ) SETGET * CLASS HBrowse + DATA ShowSortMark INIT .F. + DATA nIndexOrd INIT -1 HIDDEN + DATA nRecCount INIT 0 HIDDEN + METHOD BrwScrollVPos() new method that calculates the position of the vertical scroll bar. The shape of the left anterior browse extremely slow in the shipping and scroll when in a network environment and using indexes ! FUNCTION VScrollPos changed new feature in header columns. it is possible to display an arrow indicating the sort column this requires : obrowse:ShowSortMark := .T. (DEFAULT ) obrowse:acolumns[n]:SortMark := 0-HIDDEN (DEFAULT) | 1-ASCENDING | 2-DESCENDING Best regards, Itamar M. Lins Jr. |
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-14 18:38:14
|
oBitMap1:=HBitMap():addfile('imagens\exit.bmp') :Handle
Error BASE/1004 Método não exportado: HANDLE
Called from ->HANDLE(0)
* $Id: Changelog 2234 2014-04-14 11:53:54Z alkresin $
Best regards,
Itamar M. Lins Jr.
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-14 18:32:26
|
Error BASE/1004 Método não exportado: NWIDTH Called from ->NWIDTH(0) Called from ->HBROWSE:REBUILD(634) Called from ->HBROWSE:PAINT(697) Called from ->HBROWSE:ONEVENT(302) Called from ->HWG_DLGBOXINDIRECT(0) Called from ->HDIALOG:ACTIVATE(135) * $Id: Changelog 2234 2014-04-14 11:53:54Z alkresin $ Best regards, Itamar M. Lins Jr. |
|
From: Alexander S.K. <al...@be...> - 2014-04-14 11:39:18
|
Itamar M. Lins Jr. Lins пишет: > ... > hbmk2: Error: Referenced, missing, but unknown Harbour function(s): > HB_ANSITOOEM() > > 2012-09-17 14:03 UTC+0200 Viktor Szakats (vszakats.net/harbour > <http://vszakats.net/harbour>) > + contrib/hbwin/oemansi.c > * contrib/hbwin/hbwin.hbp > * contrib/hbwin/hbwin.hbx > + added WIN_OEMTOANSI() and WIN_ANSITOOEM(). These are > compatible with current core HB_OEMTOANSI()/HB_ANSITOOEM() > Usage of them is not recommended. Thanks for the info, I'll fix it. Regards, Alexander. |
|
From: Alexander S.K. <al...@be...> - 2014-04-14 11:29:04
|
Alain Aupeix ?????:
>
> And if I read the last post you made, utils are also linux compliant ?
>
Not all of them - only debugger/ and tutorial/.
Dbc is based on MDI interface, which isn't supported under GTK, hwreport
is an outdated utility ( the Designer is used instead )< the screen
forms there are realized with the resource files, which aren't supported
by GTK.
> Concerning samples, the only linux compliant are in gtk_samples ?
> none in samples ?
>
Some of prgs in samples may be compiled under Linux, I didn't check all
of them.
Regards, Alexander.
|
|
From: Itamar M. L. J. L. <ita...@gm...> - 2014-04-13 18:33:53
|
C:\devl\hwgui>hbmk2 hwguidyn.hbp
hbmk2: Criando biblioteca dinâmica... lib\hwguidyn.dll
lib/.hbmk/win/mingw/hbdyn/printdos.o:printdos.c:(.data+0x3f8): undefined
referen
ce to `HB_FUN_HB_ANSITOOEM'
collect2.exe: error: ld returned 1 exit status
hbmk2 [hwguidyn]: Erro: Executando comando de linkagem da biblioteca
dinâmica.
1
gcc.exe -shared -o lib/hwguidyn.dll
C:/Users/Itamar/AppData/Local/Temp/i32yrs.ln
k -m32 -Wl,--nxcompat -Wl,--dynamicbase -Wl,--start-group -lhbxml
-lprocmisc -l
hbmainstd -lhbcplr -lhbdebug -lkernel32 -luser32 -lgdi32 -ladvapi32
-lws2_32 -li
phlpapi -lwinspool -lcomctl32 -lcomdlg32 -lshell32 -luuid -lole32
-loleaut32 -lm
pr -lwinmm -lmapi32 -limm32 -lmsimg32 -lwininet -l"harbour-34"
-Wl,--end-group
-LC:/HB34/lib/win/mingw -Llib
hbmk2: Error: Referenced, missing, but unknown Harbour function(s):
HB_ANSITOOEM()
2012-09-17 14:03 UTC+0200 Viktor Szakats (vszakats.net/harbour)
+ contrib/hbwin/oemansi.c
* contrib/hbwin/hbwin.hbp
* contrib/hbwin/hbwin.hbx
+ added WIN_OEMTOANSI() and WIN_ANSITOOEM(). These are
compatible with current core HB_OEMTOANSI()/HB_ANSITOOEM()
Usage of them is not recommended.
* contrib/hbxpp/oemansix.c
* CONVTOANSICP()/CONVTOOEMCP() changed to use local
implementation instead of relying on now deprecated
core OEM/ANSI functions
* src/rtl/oemansi.c
* HB_OEMTOANSI()/HB_ANSITOOEM() Windows-specific functions
deprecated with HB_LEGACY_LEVEL4 (meaning they will
disappear after next stable release). Either avoid
these calls completely (recommended) or change them to
hbwin or hbxbp equivalents.
* contrib/hbtip/thtml.prg
* contrib/hbtip/hbtip.hbx
* deprecated HtmlToAnsi(), HtmlToOem(), AnsiToHtml(), OemToHtml()
functions with HB_LEGACY_LEVEL4.
+ added TIP_STRTOHTML(), TIP_HTMLTOSTR() functions which cover
major above functionality, but in a portable and CP agnostic
way. Code untested, if you need it, test it and provide feedback
and/or fix.
2012-11-15 16:07 UTC+0200 Alexey Myronenko (m.o...@uk...)
* doc/en/string.txt
+ documentaion for HB_AT(), HB_RAT() added/corrected
! fixed examples for them
- delete allusion for HB_OEMTOANSI(), HB_ANSITOOEM() due to they will
disappear after next stable release
Best Regards,
Itamar M. Lins Jr.
|
|
From: Alain A. <ala...@wa...> - 2014-04-11 14:05:49
|
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">Le 11/04/2014 11:31, Alexander S.Kresin
a écrit :<br>
</div>
<blockquote cite="mid:534...@be..." type="cite">
<pre wrap="">Alain Aupeix ?????:
</pre>
<blockquote type="cite">
<pre wrap=""> Hi,
I see that activity is full, but I ought to know if its improvements are
also Linux compliant.
I thought that source common was only Windows compliant. Am I wrong ?
</pre>
</blockquote>
<pre wrap=""> source/common files are for winapi and gtk versions both.
The latest update in utils/designer/editor.prg replaces the winapi's
richedit control with the hwgui's edit control ( source/common/editor )
- this is an important step to provide building of the designer under Linux.</pre>
</blockquote>
Thanks,<br>
<br>
And if I read the last post you made, utils are also linux compliant
?<br>
<br>
Concerning samples, the only linux compliant are in gtk_samples ?<br>
none in samples ?<br>
<br>
A+<br>
<blockquote cite="mid:534...@be..." type="cite">
<pre wrap="">
Regards, Alexander.
------------------------------------------------------------------------------
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment
Start a new project now. Try Jenkins in the cloud.
<a class="moz-txt-link-freetext" href="http://p.sf.net/sfu/13600_Cloudbees">http://p.sf.net/sfu/13600_Cloudbees</a>
_______________________________________________
Hwgui-developers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Hwg...@li...">Hwg...@li...</a>
<a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/hwgui-developers">https://lists.sourceforge.net/lists/listinfo/hwgui-developers</a>
</pre>
</blockquote>
<br>
<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.6-1 | H.arbour 3.2.0dev
(2014-04-03 12:26) | HbIDE (Rev.285) | Five.Linux (r138) |
Hw.Gui (2227)</small>
<hr></div>
</body>
</html>
|
|
From: Alexander S.K. <al...@be...> - 2014-04-11 09:31:26
|
Alain Aupeix ?????: > Hi, > > I see that activity is full, but I ought to know if its improvements are > also Linux compliant. > I thought that source common was only Windows compliant. Am I wrong ? > source/common files are for winapi and gtk versions both. The latest update in utils/designer/editor.prg replaces the winapi's richedit control with the hwgui's edit control ( source/common/editor ) - this is an important step to provide building of the designer under Linux. Regards, Alexander. |
|
From: Alain A. <ala...@wa...> - 2014-04-11 07:44:04
|
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<font size="-1">Hi,<br>
<br>
I see that activity is full, but I ought to know if its
improvements are also Linux compliant.<br>
I thought that source common was only Windows compliant. Am I
wrong ?<br>
<br>
Thanks<br>
A+<br>
</font>
<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.6-1 | H.arbour 3.2.0dev
(2014-04-03 12:26) | HbIDE (Rev.285) | Five.Linux (r138) |
Hw.Gui (2227)</small>
<hr></div>
</body>
</html>
|
|
From: Alexander S.K. <al...@be...> - 2014-04-07 05:19:24
|
Maurizio la Cecilia пишет: >> I've uploaded current CVS sources as a 2.18 build 2 to the Sourceforge. >> But on the Files page previous version is still marked as the latest. >> Does anyone know where to fix it ? >> > Hi Alexander, > I fixed it using the suggestions found at: > > http://stackoverflow.com/questions/6777327/how-to-manually-set-the-default-download-file-in-a-sourceforge-project > Thanks, Maurizio! Regards, Alexander. |
|
From: Maurizio la C. <m.l...@gm...> - 2014-04-04 14:26:22
|
Nella citazione in data venerdì 4 aprile 2014 07:11:07, Alexander S.Kresin ha scritto: > Hi, > > I've uploaded current CVS sources as a 2.18 build 2 to the Sourceforge. > But on the Files page previous version is still marked as the latest. > Does anyone know where to fix it ? > > Regards, Alexander. > > ------------------------------------------------------------------------------ > _______________________________________________ > Hwgui-developers mailing list > Hwg...@li... > https://lists.sourceforge.net/lists/listinfo/hwgui-developers > > Hi Alexander, I fixed it using the suggestions found at: http://stackoverflow.com/questions/6777327/how-to-manually-set-the-default-download-file-in-a-sourceforge-project Regards, Maurizio. |
|
From: Alexander S.K. <al...@be...> - 2014-04-04 05:27:15
|
Hi, I've uploaded current CVS sources as a 2.18 build 2 to the Sourceforge. But on the Files page previous version is still marked as the latest. Does anyone know where to fix it ? Regards, Alexander. |
|
From: Alexander S.K. <al...@be...> - 2014-02-06 12:07:58
|
Alain Aupeix writes: > Have you an idea, why the numpad doesn't work in hwgui (numbres and > pgup,up, ...)? > Yes, I have :). This need to be done. Regards, Alexander. |