Search found 1710 matches: paint

Return to advanced search

It doesn't work with the same code FW and FWH

... Function EntryScr SET RESOURCES TO "EZ4SCR.DLL" DEFINE DIALOG oDlg RESOURCE 'RSFIELDS' TITLE 'In House List' .. .. ACTIVATE DIALOG oDlg ON PAINT (SetResources( MEMVAR->hResc )) return Regards, Dutch
by dutch
Tue Nov 29, 2005 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I call external 2 DLL files in my prog?*Successful*
Replies: 13
Views: 3881

How to use 1 RC and 1 DLL file?

... SET RESOURCES TO ("BWCC.DLL") SetResource( hResc ) .. Function Scr Set Resource To "SECOND.DLL" DEFINE DIALOG ... ACTIVATE DIALOG ... ; ON PAINT SetResources( hResc ) return Regards, Dutch
by dutch
Mon Nov 28, 2005 11:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use 1 RC and 1 DLL file?
Replies: 2
Views: 969

En el método Paint() de la Clase TButtonBmp hay este código: if ! Empty( ::hBitmap ) nTop = ( ::nHeight() / 2 ) - ( nBmpHeight( ::hBitmap ) / 2 ) nLeft = ( ::nWidth() / 2 ) - ( nBmpWidth( ::hBitmap ) / 2 ) if ::lActive DrawMasked( ...
by Antonio Linares
Mon Nov 28, 2005 6:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: BUTTONBMP el bmp sale encima del texto
Replies: 2
Views: 819

2 questions: @ x, y bitmap and draw rectangle

1 - When I paint a bitmap in a dialog with @ x, y bitmap command it appears into a rectangle. How can I hide this border were the bitmap is painted? 2 - How can I draw a rectangle in a dialog or window? How can I fill it with a ...
by Maurilio Viana
Tue Nov 22, 2005 3:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2 questions: @ x, y bitmap and draw rectangle
Replies: 2
Views: 1073

error con esta macro, no lo se ??'

... [ 2] = C Stack Calls =========== Called from LOCKERRHAN(0) Called from (b)INITHANDL$(0) Called from TSBROWSE:DRAWSELECT(2547) Called from TSBROWSE:PAINT(5535) Called from TSBROWSE:DISPLAY(1793) Called from TSBROWSE:HANDLEEVEN(0) Called from TSBROWSE:HANDLEEVEN(8604) Called from DIALOGBOX(0) Called ...
by luis cortes
Tue Nov 08, 2005 7:00 pm
 
Forum: FiveWin para CA-Clipper
Topic: error con esta macro, no lo se ??'
Replies: 1
Views: 991

Antonio, This window is dialog. I found in eVc BasicDialog sample. Dialog is paint on full screen and have empty menu. This dialog looks very well. Right corner show Ok buttton vs standard X button. Dialog on init use SHIDIF_DONEBUTTON | SHIDIF_SIZEDLGFULLSCREEN ...
by pawelu
Sun Nov 06, 2005 9:36 am
 
Forum: FiveWin for Pocket PC
Topic: Empty menu
Replies: 19
Views: 7029

Error DBFCDX/2037 Read error: Read Failed;In Function: GetDa

... !(NSELEANT)->(eof()) oWnd:oMsgbar:cMsgdef:="Fichero "+cFichtrab+" Actualizando Registro.."+Str(RecNo(),9)+" de "+Str(LastRec(),9) ownd:oMsgbar:paint() NSYS++ IF NSYS = 100 Sysrefresh() NSYS = 0 ENDIF (nSeletrab)->(dbappend()) for nCont := 1 to (OFTEMP)->(FCount()) if (nSeleant)->(fieldget(fieldpos((nSeletrab)->(fieldname(nCont)))))=Nil ...
by MANOLO
Fri Nov 04, 2005 12:08 pm
 
Forum: FiveWin para CA-Clipper
Topic: Error DBFCDX/2037 Read error: Read Failed;In Function: GetDa
Replies: 4
Views: 1491

Error DBFCDX/2037 Read error: Read Failed;In Function: GetD

... !(NSELEANT)->(eof()) oWnd:oMsgbar:cMsgdef:="Fichero "+cFichtrab+" Actualizando Registro.."+Str(RecNo(),9)+" de "+Str(LastRec(),9) ownd:oMsgbar:paint() NSYS++ IF NSYS = 100 Sysrefresh() NSYS = 0 ENDIF (nSeletrab)->(dbappend()) for nCont := 1 to (OFTEMP)->(FCount()) if (nSeleant)->(fieldget(fieldpos((nSeletrab)->(fieldname(nCont)))))=Nil ...
by MANOLO
Fri Nov 04, 2005 8:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error DBFCDX/2037 Read error: Read Failed;In Function: GetD
Replies: 2
Views: 1012

Error de Proteccion General.

... CODE 0004:80E2 0027EH SETARRAY CODE 0004:8360 002F3H SETARRAY CODE 0004:8654 00279H SETTREE CODE 0004:88CE 00215H SETTREE CODE 0004:8AE4 00331H PAINT CODE 0004:8E16 002EDH PAINT CODE 0004:9104 0018FH PAINT CODE 0004:9294 00379H PAINT CODE 0004:960E 000D3H PAINT CODE 0004:96E2 0008FH PAINT CODE ...
by Garbi
Wed Nov 02, 2005 3:38 pm
 
Forum: FiveWin para CA-Clipper
Topic: Error de Proteccion General.
Replies: 5
Views: 4149

Resuelto!!

!!Resuelto!! La verdad que sucede solo con xp, y la solucion la encontre en fivetilus ACTIVATE WINDOW _oWnd MAXIMIZED ; ON PAINT BmpTiled( hDC, _oWnd, oBmp ) STATIC FUNCTION BmpTiled( hDC, oWnd, oBmp ) local nWidth := oWnd:nWidth(), nHeight := oWnd:nHeight() local nRow := 0, nCol := ...
by Patricio Avalos Aguirre
Wed Oct 19, 2005 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: imagen al inicio del sistema
Replies: 3
Views: 1887

imagen al inicio del sistema

... 130 ) ; MENU BuildMenu() ; MENUINFO 2 ; MDI DEFINE BITMAP oBmp FILE "Imagen\Fondo.bmp" OF _oWnd bla....bla.. ACTIVATE WINDOW _oWnd MAXIMIZED ; ON PAINT DrawBitmap( hDC, oBmp:hBitmap, ; ( _oWnd:nHeight() / 2 ) - ( oBmp:nHeight() / 2 ), ; ( _oWnd:nWidth() / 2 ) - ( oBmp:nWidth() / 2 ),0,0 ) El problema ...
by Patricio Avalos Aguirre
Wed Oct 19, 2005 3:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: imagen al inicio del sistema
Replies: 3
Views: 1887

Re: TReport and its WMF-files

driessen wrote:1. Is there a possibility to store these files ?


The EMF files are stored at the Windows temporary directory: GetEnv("TEMP").

driessen wrote:2. Can these WMF-files be opened ? With which software ?


Yes, you may use a program like Paint Shop Pro, which it is shareware and may be downloaded from Internet.
by Antonio Linares
Sat Oct 15, 2005 11:52 am
 
Forum: FiveWin for CA-Clipper
Topic: TReport and its WMF-files
Replies: 1
Views: 947

Re: Hernan's Twbrowse ( msvc ) ??

Also I did this my paint fully - as for DBF as for array . For mouse move too . It works fine . I did one method : METHOD LineRepaint( nRowPrv, nRecPrv, nDirection ) CLASS TWBrowse local nRecNew := if( upper( ::cAlias ) != "ARRAY", ...
by Rimantas
Thu Oct 13, 2005 5:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colouring TwBrowse ( Hernan's )
Replies: 12
Views: 6586

Colouring TwBrowse ( Hernan's )

... . If choose ! lCellStyle , then all active row coloured with one color and the active cell too . I want to do something mix of both styles - paint active row with wanted color and underline with other color active cell . Is it possible ? Here is my own background painting for bBkColor color ...
by Rimantas
Tue Oct 11, 2005 5:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colouring TwBrowse ( Hernan's )
Replies: 12
Views: 6586

Gracias

Pablo.

Gracias, resulto.

mi problema era el on paint, ahora funciona.
by wmormar
Sat Oct 08, 2005 3:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Meter
Replies: 2
Views: 1642
Previous

Return to advanced search