Search found 319 matches: resized

Return to advanced search

Re: records on xbrowse

oBrw:nLen and oBrw:nDataRows get their values after the first Refresh/paint of the browse. Also oBrw:nDataRows changes when browse is resized. DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen ) would work Not%20working I made @  oBrw:nbottom+2, ...
by Silvio.Falconi
Tue Mar 26, 2024 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1689

Re: records on xbrowse

oBrw:nLen and oBrw:nDataRows get their values after the first Refresh/paint of the browse.
Also oBrw:nDataRows changes when browse is resized.

Code: Select all  Expand view
DEFINE BUTTON/BTNBMP ..... (arrows)  ... WHEN ( oBrw:nDataRows >= oBrw:nLen )

would work
by nageswaragunupudi
Tue Mar 26, 2024 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1689

change size dialog selecting noption folder

... make the dialog smaller when the end user selects tab number 3 and tab number 6 I made a small test Problem is when press folder tab the dialog is resized but sometimes the oBar is hided or became smaller and then I often notice a flutter, i.e. the dialog trembles #include "FiveWin.ch"#include ...
by Silvio.Falconi
Thu Mar 14, 2024 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change size dialog selecting noption folder
Replies: 3
Views: 619

WebView resize

... pressing the "Cancel" button within the WebView (HTML), the program encounters an error, but this only occurs if the DIALOG has been resized. Here's the relevant code snippet: h['oDlg']:bResized := { || oWebView:SetSize(600, 800) } Inside the function `fromjavascript(hPost)`, if the ...
by Otto
Fri Mar 08, 2024 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2098

Re: New FTDN February 2024 (FWH 24.02)

... XBrowse. Una gran implementación desarrollada por el Sr. Rao. * Corrección: En la clase TWindow el método Activate() tenía una llamada al método Resized() sin argumentos y este error generaba un comportamiento incorrecto en la nueva Class TWebView2. Esa llamada se ha eliminado y ahora debemos ...
by Antonio Linares
Sun Mar 03, 2024 7:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 202

New FTDN February 2024 (FWH 24.02)

... implement a booking system using XBrowse. A great implementation developed by Mr. Rao. * Fix: Class TWindow METHOD Activate() had a call to method Resized() with no arguments and this error was generating an incorrect behavior on new Class TWebView2. That call has been removed and now we need to ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 202

Re: Transparent area becomes black when use BUTTON...ADJUST

... If you remove this clause, the images will be transparent. But resizing makes the image ragged. 2) Add "GDIP" clause. This makes the resized image smooth. Recommended code:  DEFINE BUTTONBAR oBar OF oWnd GDIP SIZE 110,66 RIGHT Please make this small change in buttonbar definition ...
by nageswaragunupudi
Wed Dec 06, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 873

Re: Transparent area becomes black when use BUTTON...ADJUST

...   OF oBar ADJUST The image is alpha-blend image. If I don't use ADJUST clause, the image is not resized but transparent area displays ok. If I use ADJUST clause, the image's size is nice but the transparent area of the image becomes black like ...
by nageswaragunupudi
Tue Dec 05, 2023 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 873

Transparent area becomes black when use BUTTON...ADJUST

...   OF oBar ADJUST The image is alpha-blend image. If I don't use ADJUST clause, the image is not resized but transparent area displays ok. If I use ADJUST clause, the image's size is nice but the transparent area of the image becomes black like ...
by hua
Tue Dec 05, 2023 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 873

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

Re: How to set Brush size?

... prefer RESIZE and recommend instead of STRETCH. The entire window is covered by the brush and will automatically resize when the window is resized. Do not write any extra code more than what I suggested.
by dutch
Sat May 06, 2023 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set Brush size?
Replies: 4
Views: 257

Re: How to set Brush size?

... prefer RESIZE and recommend instead of STRETCH. The entire window is covered by the brush and will automatically resize when the window is resized. Do not write any extra code more than what I suggested.
by nageswaragunupudi
Sat May 06, 2023 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set Brush size?
Replies: 4
Views: 257

change dialog size from a combobox

selecting an option from a combobox the dialog must be resized according to the instructions inserted in the Change_dialog() function because according to the option the end user must insert some controls instead of others. the second combobox only ...
by Silvio.Falconi
Tue Apr 11, 2023 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change dialog size from a combobox
Replies: 0
Views: 188

Re: Resized dialog and combobox

I use from many years only sourcecode @x,y no resources ( resources only the bitmaps,cursor,sound) here a test sample to resize a dialog with a xBrowse, two buttons, one combobox ( made on 2 minutes) https://i.postimg.cc/cHghCxyr/po.gif #include "FiveWin.ch"#include "c...
by Silvio.Falconi
Wed Mar 08, 2023 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resized dialog and combobox
Replies: 3
Views: 358
Next

Return to advanced search