Search found 1710 matches: paint

Return to advanced search

Re: The more fancy Xbrowses the more slow they become ?

... will slow down a little ... "slowest" are GDI32 which are not Hardware Accelerated big IMAGE need "more" Time to "paint" than small IMAGE 10 ROW in Browse / GRID is faster than 20 ROW --- to use a "external" Graphic Card is much quicker that "build-in" ...
by Jimmy
Thu Nov 03, 2022 5:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: The more fancy Xbrowses the more slow they become ?
Replies: 8
Views: 454

Re: SPLITTER : how to"resize" Client Area

... Request : would be nice to get "Percent" to use that Value to "o:SetPosition()" when "maximize" use a IMAGE to "paint" SPLITTER
by Jimmy
Thu Nov 03, 2022 5:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SPLITTER : how to"resize" Client Area
Replies: 17
Views: 1018

GRAPHPRN

... from: => GETDC( 0 ) Called from: .\source\classes\TGRAPH.PRG => TGRAPH:DRAWPIE( 2194 ) Called from: .\source\classes\TGRAPH.PRG => TGRAPH:PAINT( 970 ) Called from: .\source\classes\TGRAPH.PRG => TGRAPH:PRINT( 2355 ) Called from: .\source\classes\PRINTER.PRG => TPRINTER:PRINTGRAPH( ...
by Marco Augusto
Fri Oct 28, 2022 1:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GRAPHPRN
Replies: 3
Views: 489

Re: Splash Screen for Startup

... while Data are loading at Start btw. does Fivewin have Function like "BOS TAURUS" Contribution to use hDC "direct" to "paint" :?: i want to use it in ON PAINT
by Jimmy
Thu Oct 27, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Splash Screen for Startup
Replies: 14
Views: 819

Resource Bitmap for Fivewin

... Resource under Fivewin (work with Xbase++ and HMG) now i have figure out that those BMP have no DPI Setting (most i "save" from Windows PAINT) https://i.postimg.cc/3JtsRF4h/BMP-no-DPI.png when change to 96 x 96 DPI and "save" it work with Fivewin without Problem ...
by Jimmy
Thu Oct 27, 2022 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resource Bitmap for Fivewin
Replies: 7
Views: 446

Re: Parpadeo de Menu COLOR , Ayuda

ACTIVATE WINDOW oWnd MAXIMIZED ;
ON INIT (pASSWORD(),INDEXA1()) ;
ON PAINT DrawBitmap( hDC, oBmp:hBitmap, ;
( oWnd:nHeight() / 2 ) - ( oBmp:nHeight() / 2 ), ;
( oWnd:nWidth() / 2 ) - ( oBmp:nWidth() / 2 ),0,0 );
VALID MsgYesNo(oemtoansi( "¨ Desea Salir ?"),"Salida del Sistema ")
by devwin2010
Tue Oct 18, 2022 7:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de Menu COLOR , Ayuda
Replies: 29
Views: 1915

Error on Header of Xbrowse

... error: +    Args:      [   1] = N   2      [   2] = U   Stack Calls ===========    Called from: .\source\classes\XBROWSE.PRG => TXBRWCOLUMN:PAINTHEADER( 14000 )    Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:PAINTHEADER( 2825 )    Called from: .\source\classes\XBROWSE.PRG => ...
by Silvio.Falconi
Thu Sep 29, 2022 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on Header of Xbrowse
Replies: 2
Views: 259

Re: Area de trabajo no usada: ORDKEYNO

... := odlg:nWidth + 7 oWndChild:nHeight := odlg:nHeight + 32 ACTIVATE WINDOW oWndChild ON INIT (oRS1Cli:=buscosql( obrow, xbusco, oRS1Cli ) ,oWnd:paint() )
by jpcavagnaro
Sun Sep 11, 2022 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Area de trabajo no usada: ORDKEYNO
Replies: 3
Views: 327

Re: DC of the window

just paint them on different locations

just to paint them from the ON PAINT of the window
by Natter
Fri Aug 12, 2022 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DC of the window
Replies: 10
Views: 496

Re: DC of the window

Is it an animation ? I mean, do you want to paint them one after another, or just paint them on different locations ?

Do you need them as controls or just to paint them from the ON PAINT of the window ?
by Antonio Linares
Fri Aug 12, 2022 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DC of the window
Replies: 10
Views: 496

Re: DC of the window

Dear Yuri,

A DC (device context) belongs to a window, not to a PNG file.

I guess that you have several PNG files and you want to paint them on a window, is this correct ?
by Antonio Linares
Fri Aug 12, 2022 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DC of the window
Replies: 10
Views: 496

Re: Readonly and/or disable GETs background color

Ok, bColorBlock (actually bColor) is evaluated inside paint event. So this is the only option, it seems. I would like to avoid using paint event.

EMG
by Enrico Maria Giordano
Fri Aug 05, 2022 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Readonly and/or disable GETs background color
Replies: 15
Views: 865

Re: Readonly and/or disable GETs background color

... con nClrP := GetSysColor( COLOR_WINDOW ) Yes, but I was referring to the fact that the background color of the readonly GETs is set inside the paint event, if I read the TGet source code correctly. Is it the only way? Or are there other ways to override the defaul readonly color? EMG
by Enrico Maria Giordano
Fri Aug 05, 2022 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Readonly and/or disable GETs background color
Replies: 15
Views: 865

Re: Readonly and/or disable GETs background color

Thank you. So we have to color the background during the paint event, right? And "who" exactly give the default COLOR_WINDOW color to the readonly GETs? Is it an internal Windows behaviour that can be change only using paint event? EMG Si no ...
by cmsoft
Fri Aug 05, 2022 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Readonly and/or disable GETs background color
Replies: 15
Views: 865

Re: Readonly and/or disable GETs background color

Thank you. So we have to color the background during the paint event, right? And "who" exactly give the default COLOR_WINDOW color to the readonly GETs? Is it an internal Windows behaviour that can be change only using paint event?

EMG
by Enrico Maria Giordano
Fri Aug 05, 2022 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Readonly and/or disable GETs background color
Replies: 15
Views: 865
PreviousNext

Return to advanced search