Search found 2240 matches: controls

Return to advanced search

Re: colorize btnbmp with diagonal

... bitmap covers the full area of the button. We need to keep in mind the effect of using or not using the TRUEPIXEL clause on the dimensions of the controls. Nages look this differences Without Truepixel https://i.postimg.cc/P5SZHc5W/no.png With Truepixel https://i.postimg.cc/2jnZy358/si.png ...
by Silvio.Falconi
Fri Apr 19, 2024 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize btnbmp with diagonal
Replies: 9
Views: 286

Checkbox with ltransparent error

... l05 Prompt axArray[ 5, 2 ] SIZE 350, 20 PIXEL OF oDlg aDat[ 5]:lTransparent:=.t. this gate covers the lower part of the dialog, hiding the other controls that are there If I rem aDat[ 5]:lTransparent:=.t. Not happend nothing
by Silvio.Falconi
Fri Apr 19, 2024 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox with ltransparent error
Replies: 1
Views: 52

Re: colorize btnbmp with diagonal

... bitmap covers the full area of the button. We need to keep in mind the effect of using or not using the TRUEPIXEL clause on the dimensions of the controls.
by nageswaragunupudi
Thu Apr 18, 2024 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize btnbmp with diagonal
Replies: 9
Views: 286

Re: WebView resize

... panels in FiveWin. With appropriate CSS styling, these <div> elements can visually and functionally represent panels, organizing content and controls on the page. Text Fields (TGet, TMemo, etc.): Text input fields in FiveWin can be mapped to <input type="text"> or <textarea> ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2098

Re: Hide/show search system on a dialog

nageswaragunupudi wrote:Use
oCtrl:Hide() for all the controls you want to Hide() and use oCtrl:Show() when you want to show.


in reality I had already thought about it and had tried it without success.
probably at a certain time of night it is better to abandon and go to sleep.

:)
by Silvio.Falconi
Mon Mar 18, 2024 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1186

Re: TITLE CLASS BUG with oDLg TRansparent

... visible and take the color of the dialog Dear Silvio This is not a bug. This is the expected behavior. When a dialog is defined to be TRANSPARENT, controls are painted transparently over the dialog. That means, the background color/gradient/brush of the control are ignored and only the dialog's ...
by Silvio.Falconi
Mon Mar 18, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1649

Re: Hide/show search system on a dialog

Use
oCtrl:Hide() for all the controls you want to Hide() and use oCtrl:Show() when you want to show.
by nageswaragunupudi
Mon Mar 18, 2024 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1186

Re: TITLE CLASS BUG with oDLg TRansparent

... visible and take the color of the dialog Dear Silvio This is not a bug. This is the expected behavior. When a dialog is defined to be TRANSPARENT, controls are painted transparently over the dialog. That means, the background color/gradient/brush of the control are ignored and only the dialog's ...
by nageswaragunupudi
Mon Mar 18, 2024 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1649

Hide/show search system on a dialog - Resolved

I want to hide the xbrowse search consisting of two say controls, a get control and a combobox through a popup menu the test works but when Ichange the size of the xbrowse the get control and the combobox control remain active with lsearch :=.t. https://i.postimg.cc/Bv8vS4Vn/1.png ...
by Silvio.Falconi
Mon Mar 18, 2024 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1186

Re: WebView resize

... it's not that simple and requires a lot of practice. But it's really fun. Responsive: a problem that is cumbersome to solve with desktop controls is easy with the WebView. Thanks again. I wish you a nice weekend. Best regards, Otto https://mybergland.com/fwforum/resize.gif
by Otto
Sat Mar 09, 2024 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2098

how to get Childlist of a Control ?

hi,

from TWindows() i can get a Childlist of all Controls
Code: Select all  Expand view
  oWnd:aControls

but how to get Childlist of a single Control when have Child :?:
by Jimmy
Thu Feb 29, 2024 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 117

Re: Controls behave different in Window as in Dialog

... %hdirl%\googlefwh.lib + >> b32.bc #include "WebCam.ch"Public oMain//  The Dialog/Window testing is done because I can't get all controls transparent on dialog or window if cRun = "Dialog"DEFINE DIALOG oMain SIZE 1400,900 PIXEL TRUEPIXEL ;  FONT oFont BRUSH oBrush ;  ...
by Marc Venken
Sat Feb 24, 2024 11:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Controls behave different in Window as in Dialog
Replies: 2
Views: 154

Re: Controls behave different in Window as in Dialog

Dear Marc,

Windows uses different code procedures to manage windows and dialogs, thus the differences.
We try to make them behave the same but there may be differences as the ones that you have spotted.

How are you showing the cam view ? Please post the code so we can review it, thanks
by Antonio Linares
Sat Feb 24, 2024 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Controls behave different in Window as in Dialog
Replies: 2
Views: 154

Controls behave different in Window as in Dialog

I noticed that many controls behave different in Windows oWnd as dialogs oDlg. Why is that ? Exact the same code, just this option : if cRun = "Dialog"  ACTIVATE DIALOG oMain CENTERED ;  ON INIT ( oWebView := TWebView():New(), ...
by Marc Venken
Sat Feb 24, 2024 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Controls behave different in Window as in Dialog
Replies: 2
Views: 154

Re: Google Graph extra graphic ? (Navaro)

Antonio Linares wrote:You can not mix FWH controls with TWebView

TWebView is just for HTML, etc

Keep them apart


Isn't this what we are doing now ? of do you mean something else ?
by Marc Venken
Thu Feb 22, 2024 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2856
Next

Return to advanced search

cron