Search found 107 matches

by concentra
Wed Nov 09, 2011 10:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2837

Re: Compiling TSButton with MinGW gcc

Rimantas, what version of TsButton are you using ?
by concentra
Wed Nov 09, 2011 10:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2837

Re: Compiling TSButton with MinGW gcc

Rimantas, seems that nobody else is interested in TsBrowse/TsButton and MinGW... And Manuel disappears from time to time... But after studying the C code I managed to compile the TsBrowse C code. So, lets try to do this. First in bpaint.c change all references of _parclen, _parl, _parni, _parnl, etc...
by concentra
Tue Nov 08, 2011 5:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TsBrowse and MinGW.
Replies: 0
Views: 1029

TsBrowse and MinGW.

I am triing to compile / link TsBrowse 9 with Harbour / MinGW. My problem is TSBFUNCS.C low level functions in C. I made some changes in order to compile TSBFUNCS.C but now I have errors linking. A lot of undefined references. Where are MoveTo, GetTextExtent, DrawMasked, DrawBitmap, MaskRegion ? Or ...
by concentra
Thu Nov 03, 2011 9:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2837

Re: Compiling TSButton with MinGW gcc

Hi Nicanor, thanks for your help. I discarded TSButton as an option and replaced it with standard buttons, since I got no help with this... But I still need help with TSBrowse ! You said to change clipapi.ch by hbapi.ch but in this case, the code is was already with hbapi.ch. And when compiled, I ge...
by concentra
Wed Oct 26, 2011 3:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse not showing at all with MinGw and Harbour
Replies: 2
Views: 503

xBrowse not showing at all with MinGw and Harbour

I am triing to program a browse using xBrowse without success. The window shows up empty with no messages at all. I was unable to figure out what am I doing wrong... I am using FiveWin with MinGw and Harbour. I made a small self contained sample of what I am coding. Could someone inspect the code ab...
by concentra
Wed Oct 19, 2011 9:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2837

Re: Compiling TSButton with MinGW gcc

Antonio, could you review this, please ?
I am not very good with C.
Thanks.
by concentra
Tue Oct 18, 2011 12:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2837

Compiling TSButton with MinGW gcc

I need to compile TSButton version 7 with Harbour 3.1 ( not "X" ) and MinGW gcc 4.5.2-dw2 and I need some help on some errors in C. To generate the .lib, based on the SBUTTONH.VRC I built this TSButton7.hbp : -incpath=..\..\..\INCLUDE -incpath=F:\FWH\INCLUDE -incpath=g:\hb31\include -m -n ...
by concentra
Tue Aug 30, 2011 10:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Is FiveWin MinGw compatible ?
Replies: 5
Views: 1053

Re: Is FiveWin MinGw compatible ?

Hi Antonio.
What for AlphaBlend() is used to ?
by concentra
Mon Aug 29, 2011 1:14 pm
Forum: FiveWin para Harbour/xHarbour
Topic: BCC 6.3
Replies: 35
Views: 6802

Re: BCC 6.3

MinGW no parecia una solución atractiva unos pocos años. Sin embargo, el compilador "oficial" (¿o debería decir preferente) de Harbour se convirtió en el MinGW y por lo tanto creemos que el mismo vnha ganando impulso. Yo personalmente empecé a utilizar la consola MinGW en mi sistema y me g...
by concentra
Mon Aug 22, 2011 6:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Is FiveWin MinGw compatible ?
Replies: 5
Views: 1053

Is FiveWin MinGw compatible ?

Is FiveWin MinGw compatible ?
I.E. Can I use MinGw to compile / link FiveWin apps ? How, please ?
by concentra
Mon May 31, 2010 11:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Hide controls in a dialog before activating it.
Replies: 20
Views: 3328

Re: Hide controls in a dialog before activating it.

James, Actually DATA lVisible just stores the visible status but it does not perform any action if we change it, in example if we do oControl:lVisible := .F. then the control will not be hidden. such functionality can be done using Methods Hide() and Show(). Anyway, if I call a HIDE() in an control...
by concentra
Fri May 28, 2010 4:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Hide controls in a dialog before activating it.
Replies: 20
Views: 3328

Re: Hide controls in a dialog before activating it.

Concentra, Then you have to do it from the ACTIVATE DIALOG ... ON INIT ... clause I already do this. I asked for an alternative because I thought I was missing something. We could implement a DISABLED clause for controls, but for now, it is not available yet Don´t. It´s not necessary. But what abou...
by concentra
Fri May 28, 2010 1:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Hide controls in a dialog before activating it.
Replies: 20
Views: 3328

Re: Hide controls in a dialog before activating it.

Antonio Linares wrote:Concentra,

If you are creating the dialogbox from resources, you can set the style WS_DISABLED to the controls that you want to be shown as disabled :-)

The issue is that sometimes I want it enabled and other times not.