Click here to Skip to main content
15,914,374 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to change color of my custom words in RichTextBox ? Pin
Giorgi Dalakishvili7-May-07 23:56
mentorGiorgi Dalakishvili7-May-07 23:56 
AnswerRe: how to change color of my custom words in RichTextBox ? Pin
andre_swnpl8-May-07 0:22
andre_swnpl8-May-07 0:22 
QuestionDataTable to Excel, row limit Pin
swjam7-May-07 23:42
swjam7-May-07 23:42 
AnswerRe: DataTable to Excel, row limit Pin
gauthee7-May-07 23:52
gauthee7-May-07 23:52 
GeneralRe: DataTable to Excel, row limit Pin
swjam7-May-07 23:56
swjam7-May-07 23:56 
GeneralRe: DataTable to Excel, row limit Pin
gauthee8-May-07 0:25
gauthee8-May-07 0:25 
QuestionCheck if open is already open Pin
soneliso7-May-07 23:22
soneliso7-May-07 23:22 
AnswerRe: Check if open is already open Pin
fang_eric7-May-07 23:34
fang_eric7-May-07 23:34 
GeneralRe: Check if open is already open Pin
Giorgi Dalakishvili7-May-07 23:39
mentorGiorgi Dalakishvili7-May-07 23:39 
GeneralRe: Check if open is already open Pin
fang_eric7-May-07 23:45
fang_eric7-May-07 23:45 
GeneralRe: Check if open is already open Pin
soneliso8-May-07 0:17
soneliso8-May-07 0:17 
GeneralRe: Check if open is already open Pin
soneliso7-May-07 23:49
soneliso7-May-07 23:49 
GeneralRe: Check if open is already open Pin
Nouman Bhatti8-May-07 0:31
Nouman Bhatti8-May-07 0:31 
AnswerRe: Check if open is already open Pin
Aron Mišerda8-May-07 1:46
Aron Mišerda8-May-07 1:46 
AnswerRe: Check if open is already open Pin
AFSEKI8-May-07 23:23
AFSEKI8-May-07 23:23 
Questionneed help with string onchange event handler Pin
neodeaths7-May-07 22:59
neodeaths7-May-07 22:59 
AnswerRe: need help with string onchange event handler Pin
Bijesh7-May-07 23:15
Bijesh7-May-07 23:15 
GeneralRe: need help with string onchange event handler Pin
neodeaths7-May-07 23:29
neodeaths7-May-07 23:29 
GeneralRe: need help with string onchange event handler Pin
Bijesh8-May-07 0:30
Bijesh8-May-07 0:30 
you should be able to figure that out. but this should get you started (warning this is uncompiled, untested:

public delegate void MyStringChangedDelegate(string newVal);<br />
public event MyStringChangedDelegate MyStringChanged;<br />
<br />
<br />
string myString;		<br />
public String MyString<br />
		{<br />
			get<br />
			{<br />
				return myString;<br />
			}<br />
			set<br />
			{<br />
				myString = value;<br />
                                if(MyStringChanged!=null)<br />
                                      MyStringChanged(value);<br />
		        }<br />
		}

Questionon closing event of old form new form should be visible and after verification both form sh'd close Pin
fgfdhghgfd7-May-07 22:44
fgfdhghgfd7-May-07 22:44 
AnswerRe: on closing event of old form new form should be visible and after verification both form sh'd close Pin
Giorgi Dalakishvili7-May-07 22:49
mentorGiorgi Dalakishvili7-May-07 22:49 
AnswerRe: on closing event of old form new form should be visible and after verification both form sh'd close Pin
Christian Graus7-May-07 22:56
protectorChristian Graus7-May-07 22:56 
Question.NET remoting: inter-client communication Pin
ChrisKiki7-May-07 22:38
ChrisKiki7-May-07 22:38 
QuestionCommunication windows app with windows service Pin
Diego F.7-May-07 22:31
Diego F.7-May-07 22:31 
QuestionFiltering dataset Pin
Muammar©7-May-07 22:24
Muammar©7-May-07 22:24 

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.