Search found 1054 matches: hide

Return to advanced search

Re: How to make password GET viewable on demand?

oGet:lShowPassword := .T. / .F. to display or hide password oGet:lShowPassword := !oGet:lShowPassword to toggle display of password Here is a sample #include "fivewin.ch"function Main()   local oDlg, oGet   local ...
by nageswaragunupudi
Mon May 13, 2024 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 2
Views: 37

Re: Transparent Png on MDI Parent

... oLogo,oWnd ) RETURN (NIL) Function SetLogo( oLogo,oWnd ) Local nX,nY oWnd:CoorsUpdate() oWnd:oWndClient:CoorsUpdate() oLogo:CoorsUpdate() oLogo:Hide() nX := oWnd:oWndClient:nWidth() - oLogo:nWidth() nY := oWnd:oWndClient:nHeight() - oLogo:nHeight() oLogo:Move( nY,nX,oLogo:nWidth(),oLogo:nHeight(),.t. ...
by byron.hopp
Fri May 10, 2024 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent Png on MDI Parent
Replies: 6
Views: 182

Re: Filter on Xbrowse

New version. Now using INDEX TEMPORARY and HIDE() and SHOW() on the RADIOS BUTTONS. Master OTTO, I challenge you to do better! hahahahahaha. Nueva versión. Ahora usando INDEX TEMPORARY y HIDE() y SHOW() en los BOTONES DE RADIOS. Maestro OTTO, ...
by karinha
Sat May 04, 2024 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 750

Re: Silvo .. changes to your xMate environment

... local nRow := 0, nCol := 0, n with: local nRow := 0, nCol And you shold not have any warnings. Fixing the warnings is very important as they can hide serious problem in the code, so I don't recommend to silence them.
by Enrico Maria Giordano
Tue Apr 30, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 353

Re: Hide/show search system on a dialog - Resolved

... local oBtn,n If lSearchBar oSay[1]:show() oSay[2]:show() oGet:show() oBrw:oSortCbx:show() oBrw:nTop:=32 oBrw:nHeight:= oBar:ntop-40 else oSay[1]:hide() oSay[2]:hide() oGet:hide() oBrw:oSortCbx:hide() oBrw:nTop:=2 oBrw:nHeight:= oBar:ntop-40 Endif for n=1 to Len(aBtn) aBtn[n]:ntop:= oBar:ntop-40 ...
by Silvio.Falconi
Mon Mar 25, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1228

Re: Hide/show search system on a dialog - Resolved

on xbrowser.prg there is not on buttonbar the get and the combobox


In that example, the sample hides the buttonbar.
Please use similar logic to hide the says,get and combobox instead of buttonbar in your case.

Logic is the same.
by nageswaragunupudi
Tue Mar 19, 2024 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1228

Re: Hide/show search system on a dialog - Resolved

nageswaragunupudi wrote:Please see the solution I posted here
viewtopic.php?f=6&t=44333

You may modify and adopt similar logic to your case.

on xbrowser.prg there is not on buttonbar the get and the combobox
by Silvio.Falconi
Tue Mar 19, 2024 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1228

Re: Hide/show search system on a dialog - Resolved

Please see the solution I posted here
viewtopic.php?f=6&t=44333

You may modify and adopt similar logic to your case.
by nageswaragunupudi
Mon Mar 18, 2024 11:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1228

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

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

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 ...
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: 1228

Re: Parpadeo de un SAY

... * * funcion de WILLY * Function Blinker(oCtrl, oTmr) Static lOn := .f. oTmr:DeActivate() if lOn oCtrl:Enable() //Hide() else oCtrl:Disable() //Show() endif lOn := !lOn oTmr:Activate() oCtrl:Refresh() Return(Nil) *************************************************************** ...
by José Camilo
Sat Mar 02, 2024 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de un SAY
Replies: 18
Views: 641

Re: FWH 24.02 new Class TWebView2

He just answered me saying that he didn't use that, it is not needed

He just hides the bar options using:
put_HiddenPdfToolbarItems( … constants to hide )

from interface settingsd

webview2 has many options, please review the above Microsoft docs url for it
by Antonio Linares
Sat Mar 02, 2024 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 24.02 new Class TWebView2
Replies: 11
Views: 2526

Como ocultar una opcion de tres de un radiobutton

... Pero necesito segun una condicion, que la 3ra opcion del radiobutton se desabilite o no aparezca, alguna idea ??, puse al activar el dialogo oRb1:hide(3), pero me oculta todo el radiobutton y Yo solo quiero ocultar la 3ra opcion (la que esta en el 106) Gracias !!!
by Enrrique Vertiz
Fri Mar 01, 2024 6:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como ocultar una opcion de tres de un radiobutton
Replies: 4
Views: 213

Re: XAMPP through PortableApps.com or Server2Go

Otto, For me, it's practical that I can simply hide the TEMPLATE /ENDTEXT and then edit and test the code with the FIVEWIN development environment (much xbrowse :-) ). If you want to work directly against html it is very easy. You go to RX Menu->Config->enable ...
by Carles
Thu Feb 29, 2024 3:06 pm
 
Forum: mod_harbour
Topic: XAMPP through PortableApps.com or Server2Go
Replies: 11
Views: 10633
Next

Return to advanced search