Search found 39 matches: endpaint

Return to advanced search

Fivewin Classes

... help, please. This is only a test, but don't work. Why ? METHOD Paint() INLINE Super:Paint() METHOD Display() INLINE ::BeginPaint(), ::Paint(), ::EndPaint(), 0 One simple solution could be to add something like this in the Paint() method of TWindow class: if ::aControls != nil AEval( ::aControls, ...
by Antonio Linares
Wed Aug 27, 2008 7:44 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65804

Amigo efectivamente, el problema es de twindows

la solucion al parecer esta aqui:

http://forums.fivetechsoft.com/viewtopi ... t=endpaint

saludos..
by sysctrl2
Fri Jul 18, 2008 7:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fondo de ventana y dialogos
Replies: 3
Views: 870

... añadido soporte para "@!" y otros carácteres especiales como la "ñ" del español y de otros idiomas. * Corrección: Pequeña corrección en el método EndPaint() de la clase TOutLook. * Nuevo: Nuevo método End() en la clase TComboBox para destruir y ocultar los desplegables editables de los comboboxes. ...
by Antonio Linares
Sat Mar 29, 2008 9:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March / Marzo 2008 (8.03)
Replies: 6
Views: 4952

New FTDN March / Marzo 2008 (8.03)

... * Enhancement: Class TGet proper support for '@!' and spanish and other countries special chars like "ñ", etc. * Fix: Class TOutLook Method EndPaint() minor fix. * New: Class TComboBox Method End() to properly hide and destroy the dropdown editable comboboxes. * Enhancement: Class TTabs ...
by Antonio Linares
Wed Mar 12, 2008 7:27 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March / Marzo 2008 (8.03)
Replies: 6
Views: 4952

Pete,

Have you tried Giovany's suggestion ?

It would be enough to add this method to Class TOutLook:

METHOD EndPaint() INLINE ::nPaintCount--,;
EndPaint( ::hWnd, ::cPS ), ::cPS := nil, ::hDC := nil
by Antonio Linares
Thu Jan 24, 2008 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOutlook Problem
Replies: 5
Views: 1458

I solved like this in OUTLOOK.PRG METHOD Display() INLINE ::BeginPaint(), ::Paint(), ::EndPaintOld() in WINDOW.PRG METHOD EndPaint() INLINE ::nPaintCount--,; EndPaint( ::hWnd, ::cPS ), ::cPS := nil, ::hDC := nil, 0 // keep this zero here! METHOD EndPaintOld() INLINE ...
by Giovany Vecchi
Thu Jan 24, 2008 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TOutlook Problem
Replies: 5
Views: 1458

Erro em bKeyDown

... return Creio que isto não esta correto outra coisa na CLASSE WINDOW comigo acontece algo estranho pois se comento a linha abaixo METHOD EndPaint() INLINE ::nPaintCount--,; EndPaint( ::hWnd, ::cPS ), ::cPS := nil, ::hDC := nil //, 0 // keep this zero here! veja que estou comentanto o ...
by miragerr
Sun Dec 30, 2007 11:09 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Erro em bKeyDown
Replies: 19
Views: 5560

Hola Diego:

Yo tengo una versión anterior a la tuya y modificando el método EndPaint de window.prg, como dice Antonio, se soluciona el problema.

Saludos,
Manuel
by Manuel Aranda
Tue Nov 20, 2007 7:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: jpg como fondo deja estela al arrastrar ventanas
Replies: 6
Views: 1656

Diego, Solo se me ocurre que estés usando una versión incorrecta de window.prg. Solo tienes que modificar el método EndPaint(). Si sigue dándote errores, lo más aconsejable es que te actualices a la versión actual 7.11 que incluye todas esas mejoras y no tienes que andar recompilando, ...
by Antonio Linares
Mon Nov 19, 2007 9:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: jpg como fondo deja estela al arrastrar ventanas
Replies: 6
Views: 1656

Raymundo, Gracias. Es lo que suponía: no hay cambios en TPages. Puedes probar a quitar el cero que añadimos en window.prg en el método EndPaint() y probar tu aplicación ? gracias, METHOD EndPaint() INLINE ::nPaintCount--,; EndPaint( ::hWnd, ::cPS ), ...
by Antonio Linares
Sat Oct 27, 2007 1:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush en dialog con page
Replies: 10
Views: 2196

Construccion Octubre 2007 =================== * Corrección: El método EndPaint() de la clase TWindow devuelve cero para evitar errores de pintado. Todas las clases que usan el método Display() devuelven cero, para evitar errores de pintado. * Mejora: La función ...
by Antonio Linares
Tue Oct 09, 2007 5:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2007 (7.10)
Replies: 1
Views: 2460

New FTDN October/Octubre 2007 (7.10)

October 2007 build ============== * Fix: Class TWindow Method EndPaint() returns zero to avoid painting errors. This way all classes using Method Display() return zero now, to avoid painting errors. * Enhancement: function MsgGet() shows proper dimensions ...
by Antonio Linares
Mon Oct 08, 2007 8:42 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2007 (7.10)
Replies: 1
Views: 2460

Antonio fijate que probe haciendo el cambio de ponerle el cero (el de la sugerencia fue carlos, no yo, jeje) en el endpaint(), y no me va, sigue pintando mal, y aparte me bloquea el sistema completo... asi tengo mi codigo DEFINE WINDOW oWnd TITLE oVarSys:NomSys MDI MENU MiMenu() ...
by Francisco Horta
Mon Sep 17, 2007 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH - Nueva Clase TOutLook2003
Replies: 63
Views: 17306

Re: Important fix

Antonio Linares wrote:In Class TWindow Method EndPaint(), add this final zero:

METHOD EndPaint() INLINE ::nPaintCount--,;
EndPaint( ::hWnd, ::cPS ), ::cPS := nil, ::hDC := nil, 0

It solves painting errors!
Antonio,
My version "FWHX 7.04" ix fixable?
can you post the little sample for test the fix?
by Ugo
Sun Sep 16, 2007 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Important fix
Replies: 16
Views: 4529

Solo hay que añadir ese cero al final en EndPaint()
by Antonio Linares
Sat Sep 15, 2007 1:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH - Nueva Clase TOutLook2003
Replies: 63
Views: 17306
PreviousNext

Return to advanced search