Click here to Skip to main content
15,898,596 members
Home / Discussions / C#
   

C#

 
QuestionMerging Config files Pin
KrunalC24-Oct-07 15:50
KrunalC24-Oct-07 15:50 
QuestionRemoting and Events Issue Pin
nbize24-Oct-07 13:58
nbize24-Oct-07 13:58 
AnswerRe: Remoting and Events Issue Pin
John Whitmire2-Nov-07 6:26
professionalJohn Whitmire2-Nov-07 6:26 
QuestionIt seems that one window sits on the top and doesn't allow other windows to appear on it?!!! Pin
Khoramdin24-Oct-07 12:35
Khoramdin24-Oct-07 12:35 
AnswerRe: It seems that one window sits on the top and doesn't allow other windows to appear on it?!!! Pin
Christian Graus24-Oct-07 12:54
protectorChristian Graus24-Oct-07 12:54 
GeneralRe: It seems that one window sits on the top and doesn't allow other windows to appear on it?!!! Pin
Khoramdin24-Oct-07 17:10
Khoramdin24-Oct-07 17:10 
Question# color Pin
MasterSharp24-Oct-07 11:22
MasterSharp24-Oct-07 11:22 
AnswerRe: # color Pin
Luc Pattyn24-Oct-07 11:36
sitebuilderLuc Pattyn24-Oct-07 11:36 
Hi,

try this:

Color color;
...
int red=color.Red+1;
if (red>255) red=255;
int green=color.Green;
int blue=color.Blue-1;
if (blue<0) blue=0;
color=Color.FromArgb(red, green, blue);


Smile | :)




Luc Pattyn [Forum Guidelines] [My Articles]


this months tips:
- use PRE tags to preserve formatting when showing multi-line code snippets
- before you ask a question here, search CodeProject, then Google


GeneralRe: # color Pin
MasterSharp24-Oct-07 11:38
MasterSharp24-Oct-07 11:38 
GeneralRe: # color Pin
MasterSharp24-Oct-07 11:42
MasterSharp24-Oct-07 11:42 
GeneralRe: # color Pin
Luc Pattyn24-Oct-07 12:38
sitebuilderLuc Pattyn24-Oct-07 12:38 
Questionauto-method [modified] Pin
MasterSharp24-Oct-07 10:55
MasterSharp24-Oct-07 10:55 
AnswerRe: auto-method Pin
il_masacratore24-Oct-07 11:12
il_masacratore24-Oct-07 11:12 
GeneralRe: auto-method Pin
MasterSharp24-Oct-07 11:22
MasterSharp24-Oct-07 11:22 
GeneralRe: auto-method Pin
Christian Graus24-Oct-07 12:28
protectorChristian Graus24-Oct-07 12:28 
QuestionModular Program Pin
murtle324-Oct-07 9:38
murtle324-Oct-07 9:38 
QuestionRe: Modular Program Pin
TJoe24-Oct-07 9:48
TJoe24-Oct-07 9:48 
AnswerRe: Modular Program Pin
murtle324-Oct-07 19:06
murtle324-Oct-07 19:06 
GeneralRe: Modular Program Pin
PandemoniumPasha24-Oct-07 19:30
PandemoniumPasha24-Oct-07 19:30 
GeneralRe: Modular Program Pin
murtle324-Oct-07 19:38
murtle324-Oct-07 19:38 
AnswerRe: Modular Program Pin
PandemoniumPasha24-Oct-07 19:51
PandemoniumPasha24-Oct-07 19:51 
GeneralRe: Modular Program Pin
murtle325-Oct-07 4:02
murtle325-Oct-07 4:02 
AnswerRe: Modular Program Pin
Christian Graus24-Oct-07 12:52
protectorChristian Graus24-Oct-07 12:52 
QuestionHow to remove part of the text in RichTextBox Pin
Ermak8624-Oct-07 9:05
Ermak8624-Oct-07 9:05 
AnswerRe: How to remove part of the text in RichTextBox Pin
TJoe24-Oct-07 9:27
TJoe24-Oct-07 9:27 

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.