I want that when the end user resizes the oWnd window, the splitter should move to the left
when the window is widened the splitter must go to the right and the second explorer must have the dimensions
as I have drawn them in the figure below
https://i.postimg.cc/k5YdbLdf/kkkkkkkkkk.png
the ...
Search found 8 matches: wnd
Searched query: wnd
- Thu Mar 21, 2024 11:13 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Splitter and Resize window
- Replies: 0
- Views: 629
- Mon Jul 31, 2023 10:58 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp
- Replies: 4
- Views: 502
EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp
... applications running: 4
1 DDE Server Window, C:\WINDOWS\System32\OLE32.DLL
2 GDI+ Window (AsusOSD.exe), C:\WINDOWS\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.1778_none_9fab56ede2916b
3 LOGI_RAWINPUT_WND,
4 Passaggio da un programma all'altro, d:\Zephir\NwCoge\Sigah.exe
1 DDE Server Window, C:\WINDOWS\System32\OLE32.DLL
2 GDI+ Window (AsusOSD.exe), C:\WINDOWS\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.1778_none_9fab56ede2916b
3 LOGI_RAWINPUT_WND,
4 Passaggio da un programma all'altro, d:\Zephir\NwCoge\Sigah.exe
- Fri Feb 17, 2023 11:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
- Replies: 2
- Views: 253
Re: a Main wnd with two ScrollPanel +buttonbar+msgbar
splitter ok but it must be hideJimmy wrote:hi Silvo,
instead oftryCode: Select all | Expand
oDash_right:nWidth := oWnd:nWidth-520 ,;
p.s. what du you think about a SPLITTERCode: Select all | Expand
oDash_right:nWidth := oWnd:nWidth-oDash_Left:nWidth -30 ,;
- Fri Feb 17, 2023 10:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
- Replies: 2
- Views: 253
Re: a Main wnd with two ScrollPanel +buttonbar+msgbar
hi Silvo,
instead of
try
p.s. what du you think about a SPLITTER
instead of
Code: Select all | Expand
oDash_right:nWidth := oWnd:nWidth-520 ,;
Code: Select all | Expand
oDash_right:nWidth := oWnd:nWidth-oDash_Left:nWidth -30 ,;
- Fri Feb 17, 2023 9:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
- Replies: 2
- Views: 253
a Main wnd with two ScrollPanel +buttonbar+msgbar
... include "fivewin.ch"
REQUEST DBFCDX
//----------------------------------------------------------------------------//
function Main()
local oWnd,oBar
local oDash_Left,oDash_Right
DEFINE WINDOW oWnd TITLE "Test silvio" //MDI
DEFINE BUTTONBAR oBar OF oWnd 2015 SIZE 70, 60
oDash_Left ...
REQUEST DBFCDX
//----------------------------------------------------------------------------//
function Main()
local oWnd,oBar
local oDash_Left,oDash_Right
DEFINE WINDOW oWnd TITLE "Test silvio" //MDI
DEFINE BUTTONBAR oBar OF oWnd 2015 SIZE 70, 60
oDash_Left ...
- Wed Dec 28, 2022 11:41 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MDI child window appearance
- Replies: 50
- Views: 7306
Re: MDI child window appearance
... com/FiveTechSoft/FWH_tools/blob/master/skin3.exe
Please execute it from FWH\samples
Application
===========
Path and name: C:\Work\errori\child_wnd_style\skin3 (1).exe (32 bits)
Size: 4,913,152 bytes
Compiler version: Harbour 3.2.0dev (r-2084736466)
FiveWin version: FWH 22.10
C compiler ...
Please execute it from FWH\samples
Application
===========
Path and name: C:\Work\errori\child_wnd_style\skin3 (1).exe (32 bits)
Size: 4,913,152 bytes
Compiler version: Harbour 3.2.0dev (r-2084736466)
FiveWin version: FWH 22.10
C compiler ...
- 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: 662
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
ok But for a sample If I move on left and on top I can set the position of child wnd
if ...
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 ...
- Thu Nov 10, 2022 12:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Logo on MDI window.
- Replies: 10
- Views: 1286
Re: Logo on MDI window.
Dear Silvio,
Function CloseBarra(oWnd,oBarRight,oLogo)
oBarRight:Hide()
oWnd:oRight:= nil
oWnd:Resize()
UpdateWindow( oWnd:hWnd )
oWnd:CoorsUpdate()
SysRefresh()
oWnd:bResized := { || SetLogo( oLogo, oWnd ) }
return nil
yes, I 'm making the same corrections!!!
only I have the wnd child ...
Function CloseBarra(oWnd,oBarRight,oLogo)
oBarRight:Hide()
oWnd:oRight:= nil
oWnd:Resize()
UpdateWindow( oWnd:hWnd )
oWnd:CoorsUpdate()
SysRefresh()
oWnd:bResized := { || SetLogo( oLogo, oWnd ) }
return nil
yes, I 'm making the same corrections!!!
only I have the wnd child ...