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

C#

 
GeneralRe: HOWTO: start, get partial output and kill a console application from c# Pin
Luc Pattyn24-Nov-10 12:29
sitebuilderLuc Pattyn24-Nov-10 12:29 
AnswerRe: HOWTO: start, get partial output and kill a console application from c# Pin
PIEBALDconsult24-Nov-10 11:59
mvePIEBALDconsult24-Nov-10 11:59 
QuestionMessage Removed Pin
23-Nov-10 20:19
NarVish23-Nov-10 20:19 
AnswerRe: Logging the start & end of the function of an application. Pin
JF201523-Nov-10 20:24
JF201523-Nov-10 20:24 
QuestionNeed Typing Tutor Method / Examples Pin
M Riaz Bashir23-Nov-10 18:46
M Riaz Bashir23-Nov-10 18:46 
AnswerRe: Need Typing Tutor Method / Examples Pin
Keith Barrow23-Nov-10 21:49
professionalKeith Barrow23-Nov-10 21:49 
QuestionGet color value from array Pin
pancakeleh23-Nov-10 16:49
pancakeleh23-Nov-10 16:49 
AnswerRe: Get color value from array Pin
JF201523-Nov-10 18:25
JF201523-Nov-10 18:25 
Hi,

here is the code you wanted. An array of colors and how you can get one single color as background and how you get the value of the single color layer as string.
System.Drawing.Color[] arrColor = new System.Drawing.Color[20];
arrColor[0] = System.Drawing.Color.FromArgb(5, 5, 5);
textBox1.Text = arrColor[0].R.ToString();
panel1.BackColor = arrColor[0];

GeneralRe: Get color value from array Pin
pancakeleh23-Nov-10 18:31
pancakeleh23-Nov-10 18:31 
GeneralRe: Get color value from array Pin
JF201523-Nov-10 18:37
JF201523-Nov-10 18:37 
GeneralRe: Get color value from array [modified] Pin
pancakeleh23-Nov-10 18:52
pancakeleh23-Nov-10 18:52 
GeneralRe: Get color value from array Pin
_Erik_24-Nov-10 3:48
_Erik_24-Nov-10 3:48 
GeneralRe: Get color value from array [modified] Pin
pancakeleh24-Nov-10 16:11
pancakeleh24-Nov-10 16:11 
GeneralRe: Get color value from array [modified] Pin
_Erik_25-Nov-10 4:51
_Erik_25-Nov-10 4:51 
QuestionWhat Class(es) to use for Hardware Profiling? Pin
dpminusa23-Nov-10 15:48
dpminusa23-Nov-10 15:48 
AnswerRe: What Class(es) to use for Hardware Profiling? Pin
Not Active23-Nov-10 15:58
mentorNot Active23-Nov-10 15:58 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
dpminusa23-Nov-10 17:12
dpminusa23-Nov-10 17:12 
AnswerRe: What Class(es) to use for Hardware Profiling? Pin
Luc Pattyn23-Nov-10 16:25
sitebuilderLuc Pattyn23-Nov-10 16:25 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
dpminusa23-Nov-10 17:13
dpminusa23-Nov-10 17:13 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
Luc Pattyn23-Nov-10 17:25
sitebuilderLuc Pattyn23-Nov-10 17:25 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
dpminusa23-Nov-10 17:47
dpminusa23-Nov-10 17:47 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
Bernhard Hiller23-Nov-10 23:29
Bernhard Hiller23-Nov-10 23:29 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
dpminusa24-Nov-10 0:16
dpminusa24-Nov-10 0:16 
AnswerRe: What Class(es) to use for Hardware Profiling? Pin
dpminusa23-Nov-10 17:18
dpminusa23-Nov-10 17:18 
GeneralRe: What Class(es) to use for Hardware Profiling? Pin
Jacob D Dixon23-Nov-10 17:53
Jacob D Dixon23-Nov-10 17:53 

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.