Click here to Skip to main content
15,887,363 members
Home / Discussions / C#
   

C#

 
GeneralRe: datagridview size Pin
Dan Neely3-Aug-09 4:21
Dan Neely3-Aug-09 4:21 
QuestionImage Gallarey using asp.net C# Pin
mynameatif3-Aug-09 0:05
mynameatif3-Aug-09 0:05 
QuestionError: Connection request timed out Pin
Reddy Prakash2-Aug-09 23:55
Reddy Prakash2-Aug-09 23:55 
AnswerRe: Error: Connection request timed out Pin
Robin_Roy3-Aug-09 0:22
Robin_Roy3-Aug-09 0:22 
GeneralRe: Error: Connection request timed out Pin
Reddy Prakash3-Aug-09 0:38
Reddy Prakash3-Aug-09 0:38 
QuestionVoice over internet protocol.. Pin
rosae6192-Aug-09 23:51
rosae6192-Aug-09 23:51 
AnswerRe: Voice over internet protocol.. Pin
stancrm2-Aug-09 23:52
stancrm2-Aug-09 23:52 
Questionhow to change back color of RichTextbox when it is disabled Pin
mutpan2-Aug-09 23:43
mutpan2-Aug-09 23:43 
I would like to change the background color of the richtext box when it is disabled. Eventhough i am assigning the backcolor to the desired color, it is not changed. The background color always comes as gray when it is disabled.

public new bool Enabled
        {
            get
            {
                return base.Enabled;
            }
            set
            {
                if (value != base.Enabled)
                {
                    base.Enabled = value;                    
                                    
                    base.BackColor = (value == false) ? Color.Yellow : Color.White;
                    base.ForeColor = (value == false) ? Color.Black : Color.Blue;

                  }
            }
        }


Can anyone suggest me how to change the background color of the Richtextbox when it is disabled?

Thanks in advance,
Mutpan
AnswerRe: how to change back color of RichTextbox when it is disabled Pin
Henry Minute3-Aug-09 1:12
Henry Minute3-Aug-09 1:12 
GeneralRe: how to change back color of RichTextbox when it is disabled Pin
Baeltazor3-Aug-09 15:54
Baeltazor3-Aug-09 15:54 
AnswerRe: how to change back color of RichTextbox when it is disabled Pin
allothernamesaretaken16-Feb-10 19:21
allothernamesaretaken16-Feb-10 19:21 
QuestionHow to convert string to asci and asci to hex Pin
pallaka2-Aug-09 23:04
pallaka2-Aug-09 23:04 
AnswerRe: How to convert string to asci and asci to hex Pin
riced2-Aug-09 23:12
riced2-Aug-09 23:12 
GeneralRe: How to convert string to asci and asci to hex Pin
pallaka2-Aug-09 23:20
pallaka2-Aug-09 23:20 
GeneralRe: How to convert string to asci and asci to hex Pin
riced2-Aug-09 23:36
riced2-Aug-09 23:36 
AnswerRe: How to convert string to asci and asci to hex Pin
gwithey2-Aug-09 23:19
gwithey2-Aug-09 23:19 
GeneralRe: How to convert Hexa to Ascii and Ascii to hexa Pin
pallaka2-Aug-09 23:43
pallaka2-Aug-09 23:43 
GeneralRe: How to convert Hexa to Ascii and Ascii to hexa Pin
gwithey2-Aug-09 23:54
gwithey2-Aug-09 23:54 
GeneralRe: How to convert Hexa to Ascii and Ascii to hexa Pin
pallaka2-Aug-09 23:58
pallaka2-Aug-09 23:58 
GeneralRe: How to convert Hexa to Ascii and Ascii to hexa Pin
gwithey3-Aug-09 0:10
gwithey3-Aug-09 0:10 
AnswerRe: How to convert string to asci and asci to hex Pin
Luc Pattyn2-Aug-09 23:58
sitebuilderLuc Pattyn2-Aug-09 23:58 
QuestionDissable left click (Only on a trackBar) Pin
gwithey2-Aug-09 23:02
gwithey2-Aug-09 23:02 
AnswerRe: Dissable left click (Only on a trackBar) Pin
codemunkeh3-Aug-09 18:28
codemunkeh3-Aug-09 18:28 
QuestionProblem with ReadExisting in serial communication...i am sending data in hexa decimal but i am reciving it in asci..... Pin
pallaka2-Aug-09 22:09
pallaka2-Aug-09 22:09 
AnswerRe: Problem with ReadExisting in serial communication...i am sending data in hexa decimal but i am reciving it in asci..... Pin
stancrm2-Aug-09 22:18
stancrm2-Aug-09 22:18 

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.