Click here to Skip to main content
16,011,436 members
Home / Discussions / C#
   

C#

 
AnswerINVALUABLE!!! Pin
code-frog12-Apr-07 3:20
professionalcode-frog12-Apr-07 3:20 
GeneralRe: INVALUABLE!!! Pin
Mark J. Miller12-Apr-07 3:52
Mark J. Miller12-Apr-07 3:52 
GeneralRe: INVALUABLE!!! Pin
code-frog12-Apr-07 4:28
professionalcode-frog12-Apr-07 4:28 
GeneralRe: INVALUABLE!!! Pin
Mark J. Miller13-Jun-07 4:58
Mark J. Miller13-Jun-07 4:58 
Questionwpf and serialport component ........ Pin
Mir_As11-Apr-07 8:50
Mir_As11-Apr-07 8:50 
AnswerRe: wpf and serialport component ........ Pin
Ed.Poore11-Apr-07 12:18
Ed.Poore11-Apr-07 12:18 
QuestionRe: wpf and serialport component ........ Pin
Mir_As12-Apr-07 2:21
Mir_As12-Apr-07 2:21 
AnswerRe: wpf and serialport component ........ Pin
Thomas Stockwell13-Apr-07 8:14
professionalThomas Stockwell13-Apr-07 8:14 
Have you ever taken a look at the designer form of Window you are constructing. You can see how Visual Studio creates/modifies/adds events to all controls of the form. For example for a button control it would be something like this:

Button b=new Button();
this.b.Text="This is some sample text";
//example event code
this.b.Click += new System.EventHandler(this.button1_Click);
this.Controls.Add(this.button1);

All you would have to do is to find the event details in the Object Browser and then setup the even similar to that above but specific to the serialport.

Regards,
Thomas Stockwell

Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

Visit my homepage Oracle Studios[^]

QuestionHow to read xml in asp.net using c#.net Pin
attalurisubbu11-Apr-07 8:20
attalurisubbu11-Apr-07 8:20 
AnswerRe: How to read xml in asp.net using c#.net Pin
Christian Graus11-Apr-07 11:52
protectorChristian Graus11-Apr-07 11:52 
AnswerRe: How to read xml in asp.net using c#.net Pin
Saikek11-Apr-07 22:07
Saikek11-Apr-07 22:07 
Questionreadonly DataGrid Pin
goldoche11-Apr-07 8:08
goldoche11-Apr-07 8:08 
AnswerRe: readonly DataGrid Pin
mehmetned11-Apr-07 8:12
mehmetned11-Apr-07 8:12 
GeneralRe: readonly DataGrid Pin
goldoche11-Apr-07 8:55
goldoche11-Apr-07 8:55 
AnswerRe: readonly DataGrid Pin
Pualee11-Apr-07 9:50
Pualee11-Apr-07 9:50 
GeneralRe: readonly DataGrid Pin
goldoche11-Apr-07 10:58
goldoche11-Apr-07 10:58 
GeneralRe: readonly DataGrid Pin
Pualee11-Apr-07 11:48
Pualee11-Apr-07 11:48 
GeneralRe: readonly DataGrid Pin
goldoche12-Apr-07 1:35
goldoche12-Apr-07 1:35 
GeneralRe: readonly DataGrid Pin
Pualee12-Apr-07 2:47
Pualee12-Apr-07 2:47 
GeneralRe: readonly DataGrid Pin
Pualee11-Apr-07 11:57
Pualee11-Apr-07 11:57 
QuestionSetting master page values Pin
Brendan Vogt11-Apr-07 8:07
Brendan Vogt11-Apr-07 8:07 
AnswerRe: Setting master page values Pin
blackjack215011-Apr-07 21:56
blackjack215011-Apr-07 21:56 
Questionstring function Pin
sweetcapri11-Apr-07 8:04
sweetcapri11-Apr-07 8:04 
AnswerRe: string function Pin
Colin Angus Mackay11-Apr-07 8:29
Colin Angus Mackay11-Apr-07 8:29 
QuestionExtra namespaces Pin
Brendan Vogt11-Apr-07 8:04
Brendan Vogt11-Apr-07 8:04 

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.