Search found 77 matches: resizable

Return to advanced search

Re: WebView resize

... Memo to a WebView2 embedded application: Best regards, Otto SPLITTER: While there's no direct HTML equivalent for a splitter, you can create a resizable split view using JavaScript and CSS. This would allow users to adjust the space allocated to different sections of the UI, similar to the ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2095

Re: WebView resize

Dear Antonio,
Even though I do not use the code block bResized, but the DIALOG is resizable and I have changed the size, then I also get the error.
Best regards,
Otto


h['oDlg']:bResized := { || oWebView:SetSize(600, 800) }'
by Otto
Fri Mar 08, 2024 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2095

Re: Dialogos dentro de una ventana

... hacer es crear un dialog y que la ventana child se ajuste luego a ese dialogo. Tambien con las versiones nuevas de Fivewin puedes hacer un dialogo resizable y minimizable en lugar de lanzar una ventana child. Depende mucho de la funcionalidad que quieras darle a tu programa. Para el caso 1 puedes ...
by cmsoft
Wed Dec 06, 2023 11:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos dentro de una ventana
Replies: 14
Views: 3116

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  ...
by nageswaragunupudi
Sun May 21, 2023 3:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a tpanel
Replies: 5
Views: 338

Re: Xbrowse autoajuste en tdockpnel redimensionar

Resizable XBrowse:

@ r, c XBROWSE ......... SIZE 0,0 PIXEL .....

OR

@ r,c, XBROWSE ...... SIZE -wMargin, -hMargin PIXEL ......
by nageswaragunupudi
Wed Apr 12, 2023 1:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse autoajuste en tdockpnel redimensionar - SOLUCIONADO
Replies: 2
Views: 366

Re: MDI child window appearance

... the fact of using oDlg:aMinMaxInfo can be a deterrent but I have seenon Tkin that the whole set is not fully functional, i.e. if the dialog is resizable and the user wanting to resize the dialog can do it but with difficulty because unlike the normal dialog when you approach the mouse to the ...
by Silvio.Falconi
Fri Dec 30, 2022 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4069

Re: MDI child window appearance

... types and i saw this https://i.postimg.cc/9QyDqxfy/dfdf.png however even in the dialog there is some error if for example I use a resizable dialog with a folder inside it gives me an error in the sense that it shows the interface incorrectly as you can see below https://i.postimg.cc/rpcNdRqF/dialog-er.png ...
by Lailton
Thu Dec 29, 2022 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4069

Re: MDI child window appearance

... types and i saw this https://i.postimg.cc/9QyDqxfy/dfdf.png however even in the dialog there is some error if for example I use a resizable dialog with a folder inside it gives me an error in the sense that it shows the interface incorrectly as you can see below https://i.postimg.cc/rpcNdRqF/dialog-er.png ...
by Silvio.Falconi
Wed Dec 28, 2022 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4069

Re: Newbie Question : XBROWSE

when using DIALOG instead of WINDOW i can not "maximize" :shock: WRONG. Use "RESIZABLE" clause while defining the DIALOG. Ref: dialog.ch also BUTTONBAR does not appear when use oWnd:oClient := oBrwDBF ... ALSO WRONG. Just oDlg:Resize(). Test program ...
by nageswaragunupudi
Sun Nov 27, 2022 8:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1473

Re: Dlg2Wnd

Detlef:
A good starting point would be to look at the xbrowser function which uses a resizable dialog
by cmsoft
Mon Apr 11, 2022 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dlg2Wnd
Replies: 11
Views: 600

Re: Ajustar contenido página web en control TDockPnel

... en la carga de la pagina, porque esta no existe mi web. Con una pequeña correccion la pude hacer andar pero sin exito como lo veo La clausula RESIZABLE no es valida en mi version de Fivewin. Asi es como deberia verse mi web https://app.pedidosbcn.com/tienda/tiendadepizzas https://i.postimg.cc/cH8xStVs/image.png ...
by cmsoft
Sun Sep 19, 2021 8:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055

Re: Ajustar contenido página web en control TDockPnel

... next RETURN NIL FUNCTION HtmlView( cUrl, cTitle ) LOCAL oDlg, oActiveX DEFAULT cTitle := cUrl DEFINE DIALOG oDlg TITLE cTitle SIZE 1000, 600 RESIZABLE @ 0, 0 ACTIVEX oActiveX PROGID "Shell.Explorer.2" OF oDlg oActiveX:nDlgCode = DLGC_WANTALLKEYS oDlg:oClient = oActiveX ACTIVATE ...
by karinha
Sun Sep 19, 2021 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar contenido página web en control TDockPnel
Replies: 22
Views: 2055

TO Cristobal : Message position

some time ago I wrote to you because I had problems positioning a message with TToast class I explained to you that in a resizable dialog the class did not work as it should and I also sent you the example I explained to you that the message created with the class being another entity ...
by Silvio.Falconi
Tue Jun 08, 2021 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO Cristobal : Message position
Replies: 4
Views: 784

Re: About TCalendar

the test of Antonino run ok I add resizable system to resize the calendar https://i.postimg.cc/XYwGrfYL/jkk.gif    #include <fivewin.ch>    #include <calendar.ch>    // MyCalendar    #define MCMV_MONTH      0    ...
by Silvio.Falconi
Tue Dec 29, 2020 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: About TCalendar
Replies: 16
Views: 2769
Next

Return to advanced search