Search found 63 matches: hides

Return to advanced search

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

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

Re: Checkbox text disappears

... I used the TRANSPARENT clause to the DIALOG, removed this the dialog worked well it may be that there is a bug to the RADIO MENU class which hides part of the say controls
by Silvio.Falconi
Wed Oct 26, 2022 7:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox text disappears
Replies: 8
Views: 361

Re: Manifest

... I used the TRANSPARENT clause to the DIALOG, removed this the dialog worked well it may be that there is a bug to the RADIO MENU class which hides part of the say controls
by Silvio.Falconi
Wed Oct 26, 2022 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1789

clausole When...Hide a size of Dialog - strange - RESOLVED

... Prompt "Includi intestazioni" ; OF oDlg SIZE 80, 10 PIXEL FONT oFont When nRadio=2 it is really strange that the procedure hides a button and part of the dialog
by Silvio.Falconi
Mon Oct 10, 2022 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clausole When...Hide a size of Dialog - strange - RESOLVED
Replies: 26
Views: 1586

Re: XBrowse: Using Get for incremental Seek/Filters

... FONT oFontreturn nil//----------------------------------------------------------------------------//  Wonderful and then If a user hides a column ?, the combobox does not update creating problems
by Silvio.Falconi
Mon Feb 08, 2021 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3796

New FTDN January/Enero 2021 (FWH 21.01)

... - New ACCESS DATA in TTreeItem :IsLast --> .t. when the item is the last in the tree. - New SETGET DATA Visible: Setting .t./.f. opens/hides the item - New SETGET DATA Value. User value to store and retrive. - New DATA bSetGet. If assigned with a setget codeblock, this is used to access ...
by Antonio Linares
Sun Feb 07, 2021 9:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

Re: chenge on line a combo

... same columns and this is wrong. https://i.postimg.cc/JnmcNtmJ/4.png Question: How do I refresh the columns in case the end user hides a specific column or group of columns?
by Silvio.Falconi
Sat Nov 14, 2020 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5336

Re: best code for

Probably. But I prefer to not hide something (ADO) that already hides something else.

EMG
by Enrico Maria Giordano
Wed Dec 18, 2019 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: best code for
Replies: 5
Views: 873

Re: xbrowser does not appears after window

... oBtn XBROWSER {10,20,30,40} DEFINE WINDOW oWnd ACTIVATE WINDOW oWnd ; VALID SHOW_BRW( oWnd ) RETURN NIL // on window-close shows new values and hides the window // closing the browser closes the window as well FUNCTIOn SHOW_BRW( oWnd ) oWnd:Hide() XBROWSER {50,60,70,80} RETURN .T. regards Uwe :D
by ukoenig
Tue Oct 22, 2019 10:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser does not appears after window
Replies: 12
Views: 1160

Re: Alternative Gif Control

... Technologies, Inc. sv_gifs.c: Warning W8022 c:\Language\Borland\include\windows\sdk\GdiplusHeaders.h 636: 'Bit map::Clone(const Rect &,int)' hides virtual function 'Image::Clone()' Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, In c. Error: Unresolved external ...
by marca
Wed Jan 24, 2018 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alternative Gif Control
Replies: 22
Views: 4546

Re: Alternative Gif Control

... Technologies, Inc. sv_gifs.c: Warning W8022 c:\Language\Borland\include\windows\sdk\GdiplusHeaders.h 636: 'Bit map::Clone(const Rect &,int)' hides virtual function 'Image::Clone()' Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, In c. Error: Unresolved external ...
by marca
Wed Jan 24, 2018 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alternative Gif Control
Replies: 22
Views: 4546

Re: Alternative Gif Control

... Technologies, Inc. sv_gifs.c: Warning W8022 c:\Language\Borland\include\windows\sdk\GdiplusHeaders.h 636: 'Bit map::Clone(const Rect &,int)' hides virtual function 'Image::Clone()' Error E2268 SV_GIFS.prg 252: Call to undefined function 'hb_storvni' in function HB_FUN_GDIPLUSIMAGEGETFRAMEDIMENSIONS() ...
by marca
Wed Jan 24, 2018 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alternative Gif Control
Replies: 22
Views: 4546

Re: Referencing a dialog from a different class ?

It returns a numeric. So you can't use :hide()

oWdlg:hide()

cannot be replaced with

hDlg := GetActiveWindow( )
hDlg:hide()


However, this does work:

hDlg := GetActiveWindow( )
ShowWindow( hDlg, 0 ) // Hides
then
ShowWindow( hDlg, 1 ) // Shows it again in normal size

Thank you.
by TimStone
Fri Sep 22, 2017 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Referencing a dialog from a different class ?
Replies: 11
Views: 2303

Re: Impresión de Códigos de Barra con TPrinter

... no funciona. Que complicado. GDIPFWH.CPP:Warning W8022 c:\bcc72\include\windows\sdk\GdiplusHeaders.h 650: 'Bitmap::Clone(const Rect &,int)' hides virtual function 'Image::Clone()'Error E2268 GDIPFWH.CPP 955: Call to undefined function 'hb_parvni' in function HB_FUN_GDIP_FILLRECT()Error ...
by mastintin
Sat Aug 05, 2017 11:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Impresión de Códigos de Barra con TPrinter
Replies: 36
Views: 6783
Next

Return to advanced search