Search found 170 matches: container

Return to advanced search

Re: scrollbars on tFolderEx

... wait for us, thank you Antonio, I did it! As you suggest I used TScrollPanel to make folders scrollable and, with a few modifications in the container object to manage window and splitter resizing, now it works. All the controls are now painted on the TScrollPanel instead of the FolderEx ...
by chiaiese
Fri Sep 06, 2024 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scrollbars on tFolderEx
Replies: 26
Views: 2574

Re: scrollbars on tFolderEx

Hi, Is it possibile to enable scrollbars on tFolderex control? the situation: I have an MdiChild container with a Browse on the left and a FolderEx control on the right, the two controls are divided by a Splitter, see some samples in the picture below. So the tFolderex ...
by Silvio.Falconi
Tue Sep 03, 2024 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scrollbars on tFolderEx
Replies: 26
Views: 2574

scrollbars on tFolderEx

Hi, Is it possibile to enable scrollbars on tFolderex control? the situation: I have an MdiChild container with a Browse on the left and a FolderEx control on the right, the two controls are divided by a Splitter, see some samples in the picture below. So the tFolderex ...
by chiaiese
Fri Aug 30, 2024 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scrollbars on tFolderEx
Replies: 26
Views: 2574

Re: Dbf/cdx to sql changing

... the web. But I am a visual type, and therefore I like the file system as a framework for a database and I simply want the data there and not in a container again. I now have clear ideas on how a database should be for my purposes and have delved deeply into it. I like the DBF system, which for ...
by Otto
Fri Jul 19, 2024 9:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 4190

Re: DivMasterJS

... site and it uses <article> </article>. It is similar to <div></div>. <div>: No special meaning, serves as a generic container. <article>: Represents self-contained, standalone content. <div>: Grouping of elements for styling and scripting. <article>: ...
by Otto
Mon May 27, 2024 12:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DivMasterJS
Replies: 3
Views: 399

Re: eMailDesktop - uses filesystem as database

... I integrated several components. This makes it somewhat difficult to expand and maintain the program. Therefore, today I started reprogramming the container for the individual documents. Now you can easily store images, text, or tables there and zoom in by double-clicking. Best regards, Otto https://mybergland.com/fwforum/emdsk.jpg ...
by Otto
Sat May 25, 2024 9:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 6
Views: 2693

Dynamic Table Filter Control

... <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <style> #table-container { height: 300px; overflow: auto; } .filter-div { display: none; /* Beginnt versteckt */ margin: 0; padding: 0; } #filter-container { margin: ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 950

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: 399

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: 399

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  RUN

<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: 619

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: 1542

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: 459

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: 459

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: 1020

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: 1734
Next

Return to advanced search