Search found 2974 matches: display

Return to advanced search

Transparent Png on MDI Parent

I have a Png file, it is suppose to be transparent, when I display it in an image editor it shows a checkered gray background. How can I make this transparent using @ Say Image. On Resize I move it so it always is in the lower right hand corner of the ...
by byron.hopp
Wed May 08, 2024 7:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent Png on MDI Parent
Replies: 5
Views: 134

hb_getEnv("PRGPATH")

... It doesn´t seem to come directly from my machine... I tried what ChatGPT suggested to me ... but echo %PRGPATH" in the command prompt did not display a value. Please allow another question... is there a way to wrap something around hb_getEnv() to get in return all the possible standard-arguments ...
by Ruth
Tue May 07, 2024 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_getEnv("PRGPATH")
Replies: 8
Views: 148

Re: Filter on Xbrowse

Marc, it doesn't work. I don't like this display showing .T., .F., it should show YES or NO or a BITMAP. Download the example and modify it for me, please. Marc, no funciona. No me gusta esta pantalla que muestra .T., .F., debería mostrar SÍ ...
by karinha
Sat May 04, 2024 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 703

Dynamic Table Filter Control

... <style> #table-container { height: 300px; overflow: auto; } .filter-div { display: none; /* Beginnt versteckt */ margin: 0; padding: 0; } #filter-container { margin: 0; padding: 0; } .filter-section { display: flex; align-items: ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 210

Re: Filter on Xbrowse

... next to the words "filter by" 1) if I click in the first checkbox (married) the procedure must change the size of the xbrowse and must display two radio items at the top above the words "filter by" 1) married 2) unmarried 2) if I click in the second checkbox (age) the procedure ...
by Silvio.Falconi
Thu May 02, 2024 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 703

New FTDN April 2024 (FWH 24.04)

... * AdoFuncs: (source\function\adofuncs.prg) - New: function FW_OnAdoError( lShowError, lcLogError, bOnErr ) Some ado functions display encountered errors. This can be prevented using this function, so that he can handle the error on his own. Params: 1.lShowError [.T./.F.] default ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 419

Re: FWMARIA MENSAJES DE ERROR

...  .T. ) Last parameter .T. means ShowError. In that case the library shows the error as MySql shows. You can suppress display of error by oCn := maria_Connect9( <connectionspecs>,  .F. )if oCn == nil   ? "connection failed"  ...
by nageswaragunupudi
Tue Apr 23, 2024 9:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA MENSAJES DE ERROR
Replies: 4
Views: 175

Re: New txbrowse

... all the fields available to the end user but for space reasons sets some columns (defined columns) you end user wants to select the columns to display because you don't like the columns displayed, in the menu there is the possibility to return back i.e. to display xbrowse with the previous ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 449

Re: New txbrowse

... 0 ) METHOD New (nRow, nCol, nWidth, nHeight, oWnd) METHOD SetUserCols(lDefCols) ENDCLASS this is useful because there can be many columns to display, the end user can display the ones he wants, the programmer recommends the basic columns result https://i.postimg.cc/GhNNG7V1/l.png ...
by Silvio.Falconi
Mon Apr 22, 2024 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 449

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) MENUITEM "Deselect ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 226

Re: FWErrorsys()

In case we do not like FWH provided ErrorDialog and like to display our own ErrorDialog, we can do this: #include "fivewin.ch"function Main()   SetErrorDialog( { |e, aStack, cErrLogText, cErrLogFile | ;    ...
by nageswaragunupudi
Thu Apr 04, 2024 12:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1849

Re: Problema super raro

Do you want to copy all records from one table to another table and display them in XBrowse?
by nageswaragunupudi
Sat Mar 23, 2024 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2191

Re: TITLE CLASS BUG with oDLg TRansparent

... the background color/gradient/brush of the control are ignored and only the dialog's background is shown behind the controls too. If we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. ...
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: 1700

Re: TITLE CLASS BUG with oDLg TRansparent

... the background color/gradient/brush of the control are ignored and only the dialog's background is shown behind the controls too. If we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. ...
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: 1700

Different sizes of dialog

... WS_SYSMENU, ;                  WS_MINIMIZEBOX)   ICON oIcon Is there a fivewin method (no display 3.0) to recreate the dialogs at the same size if I use different monitors and computers?
by Silvio.Falconi
Wed Mar 13, 2024 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Different sizes of dialog
Replies: 0
Views: 136
Next

Return to advanced search

cron