Search found 34 matches: aminmaxinfo

Return to advanced search

Re: MDI child window appearance

... If you resize it to much the "bitmap" can't be paited, then it is reason for why the skin disapear. then you need adjust the oDlg:aMinMaxInfo to avoid that :D in case you want some different style you can make your own by editing the BMPs, please check the folder black_skin, blue_skin ...
by Silvio.Falconi
Fri Dec 30, 2022 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4062

Re: MDI child window appearance

... If you resize it to much the "bitmap" can't be paited, then it is reason for why the skin disapear. then you need adjust the oDlg:aMinMaxInfo to avoid that :D in case you want some different style you can make your own by editing the BMPs, please check the folder black_skin, blue_skin ...
by Lailton
Thu Dec 29, 2022 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4062

Re: How to set up a child window inside a main window

... Even if you modify the size of oWndClient, the child windows will exceed its area, it is the way Windows is designed. You may try to use oWndChild:aMinMaxInfo to restrict the child dimensions ok But for a sample If I move on left and on top I can set the position of child wnd  if ::oWinTest:nLeft ...
by Silvio.Falconi
Fri Nov 11, 2022 11:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set up a child window inside a main window
Replies: 6
Views: 444

Re: How to set up a child window inside a main window

Dear Silvio,

Even if you modify the size of oWndClient, the child windows will exceed its area, it is the way Windows is designed.

You may try to use oWndChild:aMinMaxInfo to restrict the child dimensions
by Antonio Linares
Fri Nov 11, 2022 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set up a child window inside a main window
Replies: 6
Views: 444

Re: Different style of window

... TITLE cTitle STYLE WS_POPUP oDlg:bStart := {|| oSkin := Skin( oDlg, "Blue_skin" ) } ACTIVATE DIALOG oDlg center I tried also with o Dlg:aMinMaxInfo := { nil, nil, ,, 600, 350,600, 350 } but not run
by Silvio.Falconi
Wed May 18, 2022 10:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Different style of window
Replies: 10
Views: 802

Re: oWnd:oClient := oPanel

... I used DEFINE DIALOG oDlgTariffe SIZE 880,600 ; PIXEL TRUEPIXEL RESIZABLE FONT oFont oDlgTariffe:aMinMaxInfo := { nil, nil, nil, nil, 878, 570, nil, nil } //878, 570 oDlgTariffe:bResized := <|| local oRect := oDlgTariffe:GetCliRect() local x:= ...
by Silvio.Falconi
Tue May 28, 2019 11:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oWnd:oClient := oPanel
Replies: 39
Views: 3968

Resing a window

... many btnbmps. when I resize this window the procedure should reduce all the btnbmps that are inside up to a min / max that I set with oWndMain:aMinMaxInfo := { nil, nil, nil, nil, 878, 570, nil, nil } I talk of 450 btnbmps and on widow there is also a ribbonbar How I can resolve... I saw on ...
by Silvio.Falconi
Mon Jul 30, 2018 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resing a window
Replies: 2
Views: 595

Error on PanelScroll resizing the dialog

...  @ 195,250 BUTTON oBtnClose PROMPT "&Exit" SIZE 40,15 PIXEL OF oDlg ACTION oDlg:End()    oDlg:aMinMaxInfo = { GETSYSMETRICS( 0 ), GETSYSMETRICS( 1 ),;  // xMaxSize,      yMaxSize        ...
by Silvio.Falconi
Tue Jul 03, 2018 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on PanelScroll resizing the dialog
Replies: 3
Views: 751

Re: fix coordinates of a window

... * 0.85 ) Local nMAXWidth := GETSYSMETRICS( 0 ) //risoluzione orizzontale Local nMAXHeight := GETSYSMETRICS( 1 ) //risoluzione verticale ::oWndMain:aMinMaxInfo = { GETSYSMETRICS( 0 ), GETSYSMETRICS( 1 ),; // xMaxSize, yMaxSize 0, 0,; // xMaxPosition, yMaxPosition nMINWidth, nMINHeight,; // xMinTrackSize, ...
by Silvio.Falconi
Sat Aug 26, 2017 12:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: fix coordinates of a window
Replies: 5
Views: 952

Re: fix coordinates of a window

oWnd:aMinMaxInfo := { ; xMaxSize, yMaxSize, ; xMaxPosition, yMaxPosition, ; xMinTrackSize, yMinTrackSize, ; xMaxSize - xMaxPosition, yMaxSize - yMaxPosition } // xMaxTrackSize, yMaxTrackSize
by rhlawek
Tue Aug 22, 2017 9:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fix coordinates of a window
Replies: 5
Views: 952

Re: FWH64

Robb,

I am emailing you modified FWH 64 libs to test aMinMaxInfo and to confirm the wrong behavior of drag and
drop (you will get a visual confirmation).

You can test both using FWH\samples\testsize.prg and testdrop.prg

many thanks for your feedback
by Antonio Linares
Sat Mar 19, 2016 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 24968

Re: FWH64

... array that winds up being passed in aFiles is always empty. No issues with 32 bit at all in this regard. The other issue has to do with using the aMinMaxInfo array to set min/max sizes for the main window. I protect the call to set these values so that they don't get used when running 64 bit. ...
by rhlawek
Fri Mar 18, 2016 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 24968

Re: strange error with png files

... 900 local nMAXWidth := 1200//GETSYSMETRICS( 0 ) //risoluzione orizzontale local nMAXHeight := 900//GETSYSMETRICS( 1 ) //risoluzione verticale oWnd:aMinMaxInfo = { GETSYSMETRICS( 0 ), GETSYSMETRICS( 1 ),; // xMaxSize, yMaxSize 0, 0,; // xMaxPosition, yMaxPosition nMINWidth, nMINHeight,; // xMinTrackSize, ...
by Silvio.Falconi
Thu Jan 14, 2016 8:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error with png files
Replies: 2
Views: 559

Re: "Snap" for Clipper

...  2911  2922  2931  3300  3312  3316                   3317  3318  3319  3322 AITEMS                  WINDOW.PRG     1768  1769  1770  1771  3438 AMINMAXINFO            WINDOW.PRG      445   617   618 APARENT1                WINDOW.PRG     4019  4022  4025  4028 APARENT2                WINDOW.PRG ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6688
Next

Return to advanced search