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

C#

 
GeneralProblems with NUnit Pin
jparsons17-Jul-02 3:57
jparsons17-Jul-02 3:57 
Generalapplication server Pin
Anoop16-Jul-02 23:42
Anoop16-Jul-02 23:42 
GeneralRe: application server Pin
SimonS18-Jul-02 0:36
SimonS18-Jul-02 0:36 
GeneralNice :) Pin
leppie16-Jul-02 22:42
leppie16-Jul-02 22:42 
GeneralFormatting text in RichTextBox Pin
leppie16-Jul-02 21:45
leppie16-Jul-02 21:45 
GeneralRe: Formatting text in RichTextBox Pin
leppie18-Jul-02 3:47
leppie18-Jul-02 3:47 
Generalstring vs. String; (string) casting vs. ToString() Pin
yaaang16-Jul-02 21:20
yaaang16-Jul-02 21:20 
GeneralRe: string vs. String; (string) casting vs. ToString() Pin
leppie16-Jul-02 22:01
leppie16-Jul-02 22:01 
GeneralRe: string vs. String; (string) casting vs. ToString() Pin
jparsons17-Jul-02 3:51
jparsons17-Jul-02 3:51 
GeneralRe: string vs. String; (string) casting vs. ToString() Pin
Mazdak17-Jul-02 9:17
Mazdak17-Jul-02 9:17 
GeneralFile Verifying Pin
Nnamdi Onyeyiri16-Jul-02 21:16
Nnamdi Onyeyiri16-Jul-02 21:16 
GeneralRe: File Verifying Pin
leppie16-Jul-02 22:32
leppie16-Jul-02 22:32 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 0:10
Nnamdi Onyeyiri17-Jul-02 0:10 
GeneralRe: File Verifying Pin
leppie17-Jul-02 0:45
leppie17-Jul-02 0:45 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 0:53
Nnamdi Onyeyiri17-Jul-02 0:53 
GeneralRe: File Verifying Pin
leppie17-Jul-02 1:06
leppie17-Jul-02 1:06 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 2:01
Nnamdi Onyeyiri17-Jul-02 2:01 
GeneralRe: File Verifying Pin
leppie17-Jul-02 2:32
leppie17-Jul-02 2:32 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 2:34
Nnamdi Onyeyiri17-Jul-02 2:34 
GeneralRe: File Verifying Pin
leppie17-Jul-02 3:19
leppie17-Jul-02 3:19 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 4:02
Nnamdi Onyeyiri17-Jul-02 4:02 
GeneralRe: File Verifying Pin
leppie17-Jul-02 10:20
leppie17-Jul-02 10:20 
GeneralRe: File Verifying Pin
Nnamdi Onyeyiri17-Jul-02 0:11
Nnamdi Onyeyiri17-Jul-02 0:11 
GeneralWindows Service won't start.... Pin
Jason.NET16-Jul-02 11:20
Jason.NET16-Jul-02 11:20 
QuestionPainting a component *after* the form is displayed? Pin
Zombies with Coffee, LLC16-Jul-02 11:21
professionalZombies with Coffee, LLC16-Jul-02 11:21 
I have added a custom component that draws a big ellipse on a form. (It's much more involved, but keeping it easy for an example)

Inside of the initialization, I add a delegate to the Form's Paint method.
m_Parent.Paint += new PaintEventHandler( this.Paint );

Unfortunately, the delegates are drawn first, and then all of the controls. So, all of the controls are drawn on top of my ellipse and I can't see it.

Since there isn't a method called Painted, how can I get my component to draw on TOP of the other controls instead of on the bottom?!

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.