473,405 Members | 2,141 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Double Buffering and MyBase.OnPaint(pe)

Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed
up things and avoid flikkering using Double Buffering. To draw the normal
things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works fine,
but I think it should work better if my MyBase.OnPaint also painted in my
buffer.

Am I wrong? And how should I do this? I kind of need to link the pe-argument
to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc
'....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter
Jul 22 '05 #1
5 2392
Hi,

Why dont you use setstyle for the control to doublebuffer.

http://msdn.microsoft.com/library/de...styletopic.asp

Ken
----------------------
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:eK*************@TK2MSFTNGP14.phx.gbl...
Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed
up things and avoid flikkering using Double Buffering. To draw the normal
things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works fine,
but I think it should work better if my MyBase.OnPaint also painted in my
buffer.

Am I wrong? And how should I do this? I kind of need to link the pe-argument
to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc
'....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter

Jul 22 '05 #2
Hi,

I did that already. I based my solution to this:
www.bobpowell.net/doublebuffer.htm

although by relooking to it I think I'm having automatic and manual double
buffering together in my application, hehe :-)
"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
Hi,

Why dont you use setstyle for the control to doublebuffer.

http://msdn.microsoft.com/library/de...styletopic.asp
Ken
----------------------
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:eK*************@TK2MSFTNGP14.phx.gbl...
Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed
up things and avoid flikkering using Double Buffering. To draw the normal
things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works fine, but I think it should work better if my MyBase.OnPaint also painted in my
buffer.

Am I wrong? And how should I do this? I kind of need to link the pe-argument to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc
'....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter

Jul 22 '05 #3
Please, don't cross-post in irrelevant newsgroups (ado.net????).

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/
SLODUG - Slovene Developer Users Group www.codezone-si.info

"DraguVaso" <pi**********@hotmail.com> wrote in message
news:eK*************@TK2MSFTNGP14.phx.gbl...
Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed
up things and avoid flikkering using Double Buffering. To draw the normal
things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works
fine,
but I think it should work better if my MyBase.OnPaint also painted in my
buffer.

Am I wrong? And how should I do this? I kind of need to link the
pe-argument
to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc
'....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter

Jul 22 '05 #4
I'm not sure but I think one disadvantage to the method you are using with
the _BackBuffer is that you are repainting the entire control each time the
paint event is fired rather than just the invalidated rectangle...depending
on what you are painting each time, maybe you have to do this.
--
Dennis in Houston
"DraguVaso" wrote:
Hi,

I did that already. I based my solution to this:
www.bobpowell.net/doublebuffer.htm

although by relooking to it I think I'm having automatic and manual double
buffering together in my application, hehe :-)
"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
Hi,

Why dont you use setstyle for the control to doublebuffer.

http://msdn.microsoft.com/library/de...styletopic.asp

Ken
----------------------
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:eK*************@TK2MSFTNGP14.phx.gbl...
Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed
up things and avoid flikkering using Double Buffering. To draw the normal
things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works

fine,
but I think it should work better if my MyBase.OnPaint also painted in my
buffer.

Am I wrong? And how should I do this? I kind of need to link the

pe-argument
to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc
'....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter


Jul 22 '05 #5
That's indeed a good remark. Although the Paint-event repaints every time
the whole DataGrid, so I need to repaint my stuff also each time :-/ it
should be nicer indeed if I could disable some things to be repainted, but
idon't know if something like that is possible or not.

with disabling the paint of the background I guess saved alreaddy some
time...

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
I'm not sure but I think one disadvantage to the method you are using with
the _BackBuffer is that you are repainting the entire control each time the paint event is fired rather than just the invalidated rectangle...depending on what you are painting each time, maybe you have to do this.
--
Dennis in Houston
"DraguVaso" wrote:
Hi,

I did that already. I based my solution to this:
www.bobpowell.net/doublebuffer.htm

although by relooking to it I think I'm having automatic and manual double
buffering together in my application, hehe :-)
"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
Hi,

Why dont you use setstyle for the control to doublebuffer.

http://msdn.microsoft.com/library/de...styletopic.asp

Ken
----------------------
"DraguVaso" <pi**********@hotmail.com> wrote in message
news:eK*************@TK2MSFTNGP14.phx.gbl...
Hi,

I have my custom Inherited DataGrid. I override the OnPaint-event to speed up things and avoid flikkering using Double Buffering. To draw the normal things of the DataGrid I have to call the MyBase.OnPain(pe). But in my
opinion it doesn't seem to be painted on the buffer. Everything works

fine,
but I think it should work better if my MyBase.OnPaint also painted in my buffer.

Am I wrong? And how should I do this? I kind of need to link the

pe-argument
to my g-object?

This is the code :

Protected Overrides Sub OnPaint(ByVal pe As
System.Windows.Forms.PaintEventArgs)
'DoubleBuffer-functions********
If _backBuffer Is Nothing Then
_backBuffer = New Bitmap(Me.ClientSize.Width,
Me.ClientSize.Height)
End If

Dim g As Graphics = Graphics.FromImage(_backBuffer)
'Paint on the Graphics object here
'DoubleBuffer-functions********

MyBase.OnPaint(pe)

'I do my special stuff here with the g-object (custom cilumnheaders etc '....
'DoubleBuffer-functions********
g.Dispose()
'Copy the back buffer to the screen
pe.Graphics.DrawImageUnscaled(_backBuffer, 0, 0)
'DoubleBuffer-functions********
End Sub

Thanks a lot in advance!

Pieter


Jul 26 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Alex Glass | last post by:
I have read plenty about applying double buffering for animation and self drawn forms. Is there a way to apply it to a form with many standard controls on it (textboxes, labels etc) ?? I have...
8
by: DraguVaso | last post by:
Hi, I want to override the MyBase.OnPaint(ByVal pe As System.Windows.Forms.PaintEventArgs) of the DataGrid, to have some custom property's designed (other column headers etc). The problem is...
5
by: Ron Vecchi | last post by:
I have a custyom control that has a property which wraps a collection. When I add controls to the collection the OnPaint method of these newly added controls never get fired. But if I take the...
3
by: Xarky | last post by:
Hi, I am overriding the method given to draw ellipses on my window, using the following code. My problem is that I have a button that every time it is pressed, a variable is inremented,...
3
by: Richard | last post by:
I have a requirement to put a GDI style circle or rectangle border around the selected row of a datagrid/ It will overlap into the row above and below the selected row. Doing this in a the OnPaint...
1
by: Nuno Magalhaes | last post by:
How can I catch an exception inside an event? I want to capture the exception of an OnPaint event in a picturebox because sometimes it's not displayed and gives me an error. Another question...
5
by: DraguVaso | last post by:
Hi, I have my custom Inherited DataGrid. I override the OnPaint-event to speed up things and avoid flikkering using Double Buffering. To draw the normal things of the DataGrid I have to call the...
11
by: =?Utf-8?B?UmF5IE1pdGNoZWxs?= | last post by:
Hello, I know I sound like a one-note Johnny on this but I'm still looking for a solution. I need to display characters coming in from a serial port or a socket. I also need to be able to type...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.