Search found 9 matches: resizedlg

Searched query: resizedlg

by Otto
Wed Oct 14, 2020 9:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Resize dialog
Replies: 16
Views: 2803

Re: Resize dialog

... Font for the size - which looks nice. Same with buttons.
Regards,
Otto

DEFINE FONT oFontTmp NAME cFaceName SIZE -PERC( oRect:nWidth , oCon:Cargo['%FON'] ), -PERC( oRect:nHeight , oCon:Cargo['%FON'] )

https://mybergland.com/fwforum/resizedlg.jpg
by Colin Haig
Tue Jan 19, 2010 1:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Flickering
Replies: 12
Views: 2338

Re: Flickering

Hi Enrico

STATIC FUNCTION RESIZEDLG( oDlg )

LOCAL oGrp := oDlg:aControls[ 1 ]

oGrp:Hide()
oGrp:Move( 20, 20, oDlg:nWidth() - 40, oDlg:nHeight() - 60, .T. )
oGrp:Show()

RETURN NIL

Colin
by patili
Tue Nov 04, 2008 6:54 am
Forum: FiveWin for Harbour/xHarbour
Topic: New on harbour
Replies: 27
Views: 7108

... of my prg

Error: Unresolved external '_HB_FUN_LSAVEOBJECT' referenced from C:\TITUS\PRG\TI
TUS.OBJ
Error: Unresolved external '_HB_FUN_RESIZEDLG' referenced from C:\TITUS\PRG\CLIE
NTS.OBJ
Error: Unresolved external '_HB_FUN_IMPRACE' referenced from C:\TITUS\PRG\RACE.O
BJ
Error ...
by patili
Mon Nov 03, 2008 11:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New on harbour
Replies: 27
Views: 7108

... TI
TUS.OBJ
Error: Unresolved external '_hb_itemReturnRelease' referenced from C:\HARBOUR\LI
B\HBSIX.LIB|sxord
Error: Unresolved external '_HB_FUN_RESIZEDLG' referenced from C:\TITUS\PRG\CLIE
NTS.OBJ
Error: Unresolved external '_HB_FUN_IMPRACE' referenced from C:\TITUS\PRG\RACE.O
BJ
Error: Unresolved ...
by patili
Sun Nov 02, 2008 11:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New on harbour
Replies: 27
Views: 7108

... TITUS.OBJ
Error: Unresolved external '_hb_itemReturnRelease' referenced from E:\HARBOUR\LIB\HBSIX.LIB|sxord
Error: Unresolved external '_HB_FUN_RESIZEDLG' referenced from E:\TITUS\PRG\CLIENTS.OBJ
Error: Unresolved external '_HB_FUN_REFAIT' referenced from E:\TITUS\PRG\ANALYSES.OBJ
Error ...
by patili
Sun Nov 02, 2008 10:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New on harbour
Replies: 27
Views: 7108

New on harbour

... PRG\TITUS.OBJ
Error: Unresolved external '_HB_FUN_SX_SETSCOPE' referenced from E:\TITUS\PRG\CLIENTS.OBJ
Error: Unresolved external '_HB_FUN_RESIZEDLG' referenced from E:\TITUS\PRG\CLIENTS.OBJ
Error: Unresolved external '_HB_FUN_SX_CLRSCOPE' referenced from E:\TITUS\PRG\CLIENTS.OBJ
Error ...
by Antonio Linares
Thu Feb 09, 2006 10:59 pm
Forum: FiveWin for CA-Clipper
Topic: COMBOBOX AND XP PRO
Replies: 9
Views: 2892

Patili,

It looks as in your resizedlg() you change the size of the controls. You may be assigning a wrong heigth to the comboboxes, thats why they don't open.
by patili
Thu Feb 09, 2006 10:01 pm
Forum: FiveWin for CA-Clipper
Topic: COMBOBOX AND XP PRO
Replies: 9
Views: 2892

When i activate a dialog i resize it

activate dialog dliste on init (function1,resizedlg(dliste,1,1,1,1,1))


Now the combobox don't open.


If i don't resize it

activate dialog dliste on init function1

Now the combobox work fine


It is the same for all my dialogs and all my combobox ...
by patili
Thu Feb 09, 2006 9:12 pm
Forum: FiveWin for CA-Clipper
Topic: COMBOBOX AND XP PRO
Replies: 9
Views: 2892

Oupss!
in fact it is only when i use a function that automatically sesize the dialog according to the screen resolution




PROCEDURE ResizeDlg(oDlg,x,y,h,la,n)

LOCAL HAUTEURDIALOG := 0, ;
LARGEURDIALOG := 0, ;
I := 0
local ox,oy



if h#1
HAUTEURFENETRE := (WNDMAIN():nVertRes()-24)/h ...