Search found 811 matches

by fraxzi
Fri Dec 19, 2008 3:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH8.11 Dialog Flickers when Refresh
Replies: 12
Views: 3953

Frances, You should only refresh the controls that you want to be repainted, using oDlg:Update(), or oControl:Refresh() oDlg:Refresh() causes flickering as it forces all controls to be repainted. That's true. But my reason to include the oDlg:Refresh() on Splitter issue when I click on the spliter ...
by fraxzi
Fri Dec 19, 2008 12:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH8.11 Dialog Flickers when Refresh
Replies: 12
Views: 3953

Anybody? Mr. Antonio?


:wink:
by fraxzi
Thu Dec 18, 2008 7:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH8.11 Dialog Flickers when Refresh
Replies: 12
Views: 3953

FWH8.11 Dialog Flickers when Refresh

Hi all and happy holidays!!! :) Whenever I fire-up oDlg:Refresh(), all controls from that dialog flickers (not smooth redrawn).... I tried: ... oDlg:BeginPaint() oDlg:Refresh() oDlg:EndPaint() ... RC of Dialog and controls using (Resource Editor 2.1) ResEd: CBS_COMPARISON DIALOGEX 5,6,495,413 FONT 1...
by fraxzi
Fri Dec 12, 2008 12:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Strange problem - solved
Replies: 2
Views: 469

Hi!

re-download the FWH8.11 ..it was re-published when BTNBMP caption was not painted properly.


Regards,
by fraxzi
Fri Dec 12, 2008 12:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.11 Nested TGroup + WindowsXP.Manifest Problem
Replies: 4
Views: 874

Hello Hakan,


Please look with this link http://fivetechsoft.com/forums/viewtopi ... 6c34f4ffa4

Regards,
by fraxzi
Sat Dec 06, 2008 3:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help on ADS SQL - Reinaldo?
Replies: 0
Views: 314

Help on ADS SQL - Reinaldo?

Hello!


Can I do this nested?

Code: Select all

...
dbSelectArea( 0 )
IF AdsCreateSQLStatement( "Compare01", ADS_ADT, hADSSERVER )

    ...

    dbSelectArea( 0 ) 
    IF AdsCreateSQLStatement( "Compare02", ADS_ADT, hADSLOCAL )
        ....
    End

End
...


Regards,
by fraxzi
Thu Dec 04, 2008 3:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Here, How to compile xharbour hello.prg
Replies: 3
Views: 575

Please use the supplied hbmake.exe

>hbmake hello.bc -e

you can start from there.... Enjoy


Regards
by fraxzi
Thu Dec 04, 2008 2:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.11 bKeyDown fails
Replies: 24
Views: 2911

This could be related... Please look...


http://forums.fivetechsoft.com/viewtopi ... 1105#71105


Regards,
by fraxzi
Thu Dec 04, 2008 2:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

SOLVED!!!! - workaround Mr. Antonio, I put this: ... ON INIT oFld:aDialogs[2]:bEraseBkGnd := { | hDC | DrawPBack( oFld:hWnd, hDC ), 1 } ... OR ... ON INIT oFld:aDialogs[2]:bEraseBkGnd := Nil ... oFld:aDialogs[2] is the container of redefined dialog with redefined groupbox oFld:hWnd is the handle of...
by fraxzi
Thu Dec 04, 2008 1:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.11 bKeyDown fails
Replies: 24
Views: 2911

Hi! I noticed the first image with groupbox's font is different from folder's... My problem is with 8.11 (or even the 2.4) the groupbox inherited the folder's font.... any of groupbox or folder or control class modified? My regards, Hi Antonio, As I said these lines are not mine. I use SetColor meth...
by fraxzi
Tue Dec 02, 2008 2:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

Mr. Antonio,


Any development?


Regards
by fraxzi
Sat Nov 29, 2008 9:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

This fails too: #include "FiveWin.ch" function Main() local oFnt, oFnt2, oDlg, oFld, oGrp DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Arial" SIZE 0, -10 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt @ 0.5, 1 FOLDER oFld OF oDlg SIZE 188, 138 ;...
by fraxzi
Sat Nov 29, 2008 9:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

Yes. Here's the sample codes ( EXPANDED ) .PRG #include "FiveWin.ch" function Main() local oFnt, oDlg, oFld, oGrp local oFnt2 DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Verdana" SIZE 0, -12 DEFINE DIALOG oDlg FONT oFnt RESOURCE 'TRY_DLG' RE...
by fraxzi
Sat Nov 29, 2008 8:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

#include "FiveWin.ch" function Main() local oFnt, oDlg, oFld, oGrp local oFnt2 DEFINE FONT oFnt NAME "Verdana" SIZE 0, -16 BOLD DEFINE FONT oFnt2 NAME "Verdana" SIZE 0, -12 DEFINE DIALOG oDlg SIZE 400, 300 FONT oFnt @ 0.5, 1 FOLDER oFld OF oDlg SIZE 188, 138 ; PROMPTS ...
by fraxzi
Sat Nov 29, 2008 8:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: setting font on Group Box
Replies: 26
Views: 5849

OK! Lets try and solve this..

I will build this example and post results..

ASAP.


The dialog should be redefined from .RC and themed.