Click here to Skip to main content
15,922,407 members
Home / Discussions / C#
   

C#

 
GeneralRe: Limiting the bandwidth Pin
Dave Kreskowiak9-Jul-04 6:07
mveDave Kreskowiak9-Jul-04 6:07 
GeneralRe: Limiting the bandwidth Pin
pi_trek10-Jul-04 3:54
pi_trek10-Jul-04 3:54 
GeneralRe: Limiting the bandwidth Pin
Dave Kreskowiak10-Jul-04 5:39
mveDave Kreskowiak10-Jul-04 5:39 
GeneralRe: Limiting the bandwidth Pin
pi_trek10-Jul-04 8:04
pi_trek10-Jul-04 8:04 
GeneralI would like to add programmatically a new element(c# or VB.NET) in the header of my aspx page. Pin
zoltix9-Jul-04 0:25
zoltix9-Jul-04 0:25 
GeneralRe: I would like to add programmatically a new element(c# or VB.NET) in the header of my aspx page. Pin
Colin Angus Mackay9-Jul-04 2:14
Colin Angus Mackay9-Jul-04 2:14 
GeneralRe: I would like to add programmatically a new element(c# or VB.NET) in the header of my aspx page. Pin
zoltix9-Jul-04 2:31
zoltix9-Jul-04 2:31 
GeneralDouble buffering Pin
Atlemann8-Jul-04 23:59
Atlemann8-Jul-04 23:59 
I have an app that draws graphs. I want a tooltip that says the x and y value for the axis the mousepointer is over. That is not the main problem. The real problem is that the panel redpaints itself when the tooltip moves. (It now just shows the X and Y coordinate of the pointer) The tooltip moves on panel_Navigate which makes it repaint at every little mouse movement. I have read a little about Double buffering. Is there an easy way of implementing this? This did not work:

this.SetStyle(ControlStyles.UserPaint, true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.DoubleBuffer, true);

I have a form with a usercontrol with the panel to draw graphs inside it. I tried to make my own little derived panelclass which overrides the OnPaint method, but I just could not make it work properly because I have to draw the graphics inside the override method. That makes things a little tricky.

Any suggestions? Maybe I'm doing something wrong with the code above? I tried putting it inside all of the constructors, but nothing happend.

- Atle
GeneralRe: Double buffering Pin
Heath Stewart9-Jul-04 4:18
protectorHeath Stewart9-Jul-04 4:18 
General2D Array modification Pin
saud_a_k8-Jul-04 23:59
saud_a_k8-Jul-04 23:59 
GeneralRe: 2D Array modification Pin
Heath Stewart9-Jul-04 3:57
protectorHeath Stewart9-Jul-04 3:57 
GeneralRe: 2D Array modification Pin
saud_a_k12-Jul-04 18:21
saud_a_k12-Jul-04 18:21 
GeneralRe: 2D Array modification Pin
saud_a_k12-Jul-04 21:32
saud_a_k12-Jul-04 21:32 
QuestionHow to add a button in the caption bar of a window Pin
bouli8-Jul-04 22:11
bouli8-Jul-04 22:11 
AnswerRe: How to add a button in the caption bar of a window Pin
Anonymous9-Jul-04 1:37
Anonymous9-Jul-04 1:37 
GeneralRe: How to add a button in the caption bar of a window Pin
saud_a_k9-Jul-04 2:02
saud_a_k9-Jul-04 2:02 
AnswerRe: How to add a button in the caption bar of a window Pin
Heath Stewart9-Jul-04 3:52
protectorHeath Stewart9-Jul-04 3:52 
GeneralRe: How to add a button in the caption bar of a window Pin
bouli9-Jul-04 3:56
bouli9-Jul-04 3:56 
GeneralRe: How to add a button in the caption bar of a window Pin
Heath Stewart9-Jul-04 4:38
protectorHeath Stewart9-Jul-04 4:38 
GeneralRe: How to add a button in the caption bar of a window Pin
bouli9-Jul-04 4:45
bouli9-Jul-04 4:45 
GeneralSending multiple values(Array) from one page to other Pin
Member 11955128-Jul-04 21:14
Member 11955128-Jul-04 21:14 
GeneralRe: Sending multiple values(Array) from one page to other Pin
Heath Stewart9-Jul-04 3:29
protectorHeath Stewart9-Jul-04 3:29 
GeneralDynamiclly naming variables Pin
saud_a_k8-Jul-04 20:45
saud_a_k8-Jul-04 20:45 
GeneralRe: Dynamiclly naming variables Pin
etfintnick8-Jul-04 23:04
etfintnick8-Jul-04 23:04 
GeneralRe: Dynamiclly naming variables Pin
etfintnick8-Jul-04 23:06
etfintnick8-Jul-04 23:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.