Search found 163 matches: container

Return to advanced search

Re: GROUPBOX

... color of the group.    | meaning if I put COLOR CLR_MSPURPLE, CLR_ORANGE TRANSPARENT CLR_ORANGE is omitted and the background-color of the parent-container is shown? Again thank you so much for your help. Kind regards and until soon :-) Ruth
by Ruth
Tue Feb 27, 2024 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 178

Re: GROUPBOX

... <nBottom> To specify the right and bottom coordinates. <cLabel> The caption of the group. <oWnd> The window or dialogbox container of this control. <cClrFore> The foreground color of the group. <nClrBack> The background color of the group. <oFont> A reference ...
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 178

Re: Fijar Texto en la ventana Principal de mi Aplicación

O también puedes usar el method de la clase TWindow
Code: Select all  Expand view

<oParent>:SayText( cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder, nAddlStyle )
 

llamándolo desde el ON PAINT del <oParent>
-> oParent es el objeto del container ( Window, Dialog, TPanel, etc. )
by cnavarro
Sat Sep 30, 2023 12:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fijar Texto en la ventana Principal de mi Aplicación
Replies: 5
Views: 366

Create help system with F1

... a help page for a specific item on the dialog (like a browse or a button ?) How to start the help program. As always I prefer a xbrowse as data container and call a item from it to show the help text. Any samples ? (Now I have a general Word-file that opens when hitting the F1 key)
by Marc Venken
Fri Jul 07, 2023 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 868

Re: Resize a tpanel

For ScrollPanel, please set :oRightMargin and :oBottomMargin, to make it resizable when container window/dialog is resized. Sample: #include "fivewin.ch"function Main()   local oWnd, oPanel, n   DEFINE WINDOW oWnd   oPanel := TScrollPanel():New( ...
by Silvio.Falconi
Sun May 21, 2023 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a tpanel
Replies: 5
Views: 338

Re: Resize a tpanel

For ScrollPanel, please set :oRightMargin and :oBottomMargin, to make it resizable when container window/dialog is resized. Sample: #include "fivewin.ch"function Main()   local oWnd, oPanel, n   DEFINE WINDOW oWnd   oPanel ...
by nageswaragunupudi
Sun May 21, 2023 3:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a tpanel
Replies: 5
Views: 338

Re: View deleted records in xBrowse

Dear Tim,

you could use the xbrowse container window bGotFocus and bLostFocus to SET DELETED ON and OFF
by Antonio Linares
Wed Dec 14, 2022 8:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: View deleted records in xBrowse
Replies: 8
Views: 702

Re: SPLITTER : how to"resize" Client Area

hi Antonio,
Antonio Linares wrote:After you create it, then do oWnd:oBottom = oToolBar where oWnd is the parent container of the toolbar

will SPLITTER "respect" it at Bottom like STATUSBAR :?:
by Jimmy
Fri Nov 04, 2022 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SPLITTER : how to"resize" Client Area
Replies: 17
Views: 1014

Re: SPLITTER : how to"resize" Client Area

Dear Jimmy,

> p.s. can i put a Toolbar on Bottom using Fivewin ?

After you create it, then do oWnd:oBottom = oToolBar where oWnd is the parent container of the toolbar
by Antonio Linares
Fri Nov 04, 2022 7:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SPLITTER : how to"resize" Client Area
Replies: 17
Views: 1014

Re: TWebView:Destroy method does not close the window.

... I have two version of TWebView examples that shows both "document.readyState" First one is original FWH TWebView class with dialog container with your last sended fwh libs. #include "FiveWin.ch"function Main()  local oWnd, oBar   DEFINE WINDOW oWnd    DEFINE BUTTONBAR ...
by Horizon
Fri Aug 05, 2022 1:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView:Destroy method does not close the window.
Replies: 46
Views: 3082

Re: TWebView:Destroy method does not close the window.

Hi Antonio, Has our WEBVIEW_CREATE(,::oWndDlgContainer:hWnd) function container dialog parameter? void * webview_create(int debug, void * window );  // Creates a new webview instance. If debug is non-zero - developer tools will// be enabled (if the ...
by Horizon
Wed Aug 03, 2022 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView:Destroy method does not close the window.
Replies: 46
Views: 3082

Re: XIMAGE -> CLASS TXImage -> ACTION ?

... resize the image is the size of the XImage Control If you want to show the image in "full screen" then you need to first maximize the container window/dialog to full screen and then increase the size of the ximage control itself to maximum client area size of the window/dialog and ...
by nageswaragunupudi
Wed Aug 03, 2022 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE -> CLASS TXImage -> ACTION ?
Replies: 4
Views: 612

MDI child windows use hard-coded Visual Style Rendering

1. Create an MDI container as the main application window (typical). (Set IsMDIContainer to true) 2. Via code, add MDI child window using the standard way (create, set MDIParent to "this", then Show). Secondary windows are ...
by Silvio.Falconi
Thu May 19, 2022 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child windows use hard-coded Visual Style Rendering
Replies: 1
Views: 210

Re: Wine under Mac with FWH app

Dear Reinaldo If you use a Dialog as a container for the TExplorerBar and not a window, I advise you to create the controls, including the TExplorerBar, in a separate function that you will call from the bInit of the Dialog. You will tell me ...
by cnavarro
Sat May 14, 2022 1:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wine under Mac with FWH app
Replies: 7
Views: 514

New Version of FiveWin 20.02

... writing the extremely complex 'Hello World" application and I will work my way up from there. My "Hello World" does have an MDI Container. Thanks Byron ...
by byron.hopp
Thu Mar 31, 2022 8:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Version of FiveWin 20.02
Replies: 3
Views: 345
Next

Return to advanced search