Click here to Skip to main content
16,012,611 members
Home / Discussions / C#
   

C#

 
AnswerRe: This is about Rotating an image Pin
MidwestLimey15-May-08 7:33
professionalMidwestLimey15-May-08 7:33 
GeneralRe: This is about Rotating an image Pin
Luckie15-May-08 7:52
Luckie15-May-08 7:52 
GeneralRe: This is about Rotating an image Pin
MidwestLimey15-May-08 8:11
professionalMidwestLimey15-May-08 8:11 
GeneralRe: This is about Rotating an image Pin
Luckie15-May-08 8:13
Luckie15-May-08 8:13 
GeneralRe: This is about Rotating an image Pin
Luckie15-May-08 8:16
Luckie15-May-08 8:16 
GeneralRe: This is about Rotating an image Pin
Dan Neely15-May-08 8:11
Dan Neely15-May-08 8:11 
GeneralRe: This is about Rotating an image Pin
MidwestLimey15-May-08 8:12
professionalMidwestLimey15-May-08 8:12 
QuestionMDI Background image. Pin
benjamin yap15-May-08 6:16
benjamin yap15-May-08 6:16 
Hi, i have this option that allows use to change MDIClient mdiparent background color to their choice. This is my code
<br />
       private void mnuBackGroundColor_Click(object sender, EventArgs e)<br />
        {<br />
            MdiClient ctlMDI;<br />
            customColor = new ColorDialog();<br />
            customColor.ShowDialog();<br />
<br />
            foreach (Control ctl in this.Controls)<br />
            {<br />
                try<br />
                {<br />
                    // Attempt to cast the control to type MdiClient.<br />
                    ctlMDI = (MdiClient)ctl;<br />
<br />
                    // Set the BackColor of the MdiClient control.<br />
                    ctlMDI.BackColor = customColor.Color;<br />
                }<br />
                catch (InvalidCastException exc)<br />
                {<br />
                    // Catch and ignore the error if casting failed.<br />
                }<br />
<br />
            }<br />
        }


I have another option that allows usr to choose the image they wan for their background instead of just color. How do i do that?
AnswerRe: MDI Background image. Pin
Ed.Poore15-May-08 12:48
Ed.Poore15-May-08 12:48 
QuestionFile copy buffer size? Pin
MicealG15-May-08 6:15
MicealG15-May-08 6:15 
AnswerRe: File copy buffer size? Pin
led mike15-May-08 6:23
led mike15-May-08 6:23 
GeneralRe: File copy buffer size? Pin
MicealG15-May-08 6:31
MicealG15-May-08 6:31 
GeneralRe: File copy buffer size? Pin
led mike15-May-08 6:51
led mike15-May-08 6:51 
AnswerRe: File copy buffer size? Pin
Guffa15-May-08 7:41
Guffa15-May-08 7:41 
GeneralRe: File copy buffer size? Pin
led mike15-May-08 9:15
led mike15-May-08 9:15 
AnswerRe: File copy buffer size? Pin
The Nightcoder15-May-08 11:44
The Nightcoder15-May-08 11:44 
GeneralRe: File copy buffer size? Pin
Guffa15-May-08 13:01
Guffa15-May-08 13:01 
GeneralRe: File copy buffer size? Pin
The Nightcoder16-May-08 12:10
The Nightcoder16-May-08 12:10 
GeneralRe: File copy buffer size? Pin
MicealG15-May-08 23:14
MicealG15-May-08 23:14 
QuestionStoring data in an array Pin
Brad Wick15-May-08 6:03
Brad Wick15-May-08 6:03 
AnswerRe: Storing data in an array Pin
led mike15-May-08 6:19
led mike15-May-08 6:19 
GeneralRe: Storing data in an array Pin
Brad Wick15-May-08 6:45
Brad Wick15-May-08 6:45 
GeneralRe: Storing data in an array Pin
led mike15-May-08 6:51
led mike15-May-08 6:51 
AnswerRe: Storing data in an array Pin
Bert delaVega15-May-08 6:47
Bert delaVega15-May-08 6:47 
GeneralRe: Storing data in an array Pin
Brad Wick15-May-08 7:11
Brad Wick15-May-08 7:11 

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.