Click here to Skip to main content
15,910,358 members
Home / Discussions / C#
   

C#

 
QuestionMoving a graphic on a form Pin
har04mich21-Oct-05 11:41
har04mich21-Oct-05 11:41 
AnswerRe: Moving a graphic on a form Pin
Ali Beirami21-Oct-05 12:08
Ali Beirami21-Oct-05 12:08 
AnswerRe: Moving a graphic on a form Pin
S. Senthil Kumar21-Oct-05 20:42
S. Senthil Kumar21-Oct-05 20:42 
GeneralRe: Moving a graphic on a form Pin
Anonymous22-Oct-05 1:04
Anonymous22-Oct-05 1:04 
GeneralRe: Moving a graphic on a form Pin
S. Senthil Kumar22-Oct-05 1:15
S. Senthil Kumar22-Oct-05 1:15 
QuestionFirst Tablet PC Application using C# Pin
celllllllll21-Oct-05 11:25
celllllllll21-Oct-05 11:25 
QuestionCombobox problem Pin
Boggy21-Oct-05 11:02
Boggy21-Oct-05 11:02 
AnswerRe: Combobox problem Pin
Ali Beirami21-Oct-05 12:28
Ali Beirami21-Oct-05 12:28 
Windows Controls are not thread safe.Any
attemp to play with them in external code may result to undesirable results such as yours.

If you can return that string (for example via an event in that activex) to your code this
whould do the job.
<br />
private delegate void AddTextDelegate(String strText); <br />
private void AddText(String strText) <br />
{ <br />
     MyComboBox.Items.Add(strText); <br />
} <br />


and in your event handler:

<br />
Invoke(new AddTextDelegate(AddText), <br />
     new Object[] { strText});<br />


I hope this works.
GeneralRe: Combobox problem Pin
Boggy21-Oct-05 15:35
Boggy21-Oct-05 15:35 
QuestionStreamWriter.WriteLine() doesn't complete on last line! Pin
Lord Kixdemp21-Oct-05 10:34
Lord Kixdemp21-Oct-05 10:34 
AnswerRe: StreamWriter.WriteLine() doesn't complete on last line! Pin
Robert Rohde21-Oct-05 10:49
Robert Rohde21-Oct-05 10:49 
GeneralRe: StreamWriter.WriteLine() doesn't complete on last line! Pin
Lord Kixdemp21-Oct-05 13:13
Lord Kixdemp21-Oct-05 13:13 
GeneralRe: StreamWriter.WriteLine() doesn't complete on last line! Pin
Matt Gerrans21-Oct-05 16:02
Matt Gerrans21-Oct-05 16:02 
GeneralRe: StreamWriter.WriteLine() doesn't complete on last line! Pin
Lord Kixdemp21-Oct-05 17:59
Lord Kixdemp21-Oct-05 17:59 
QuestionHelp me... Pin
KORCARI21-Oct-05 9:56
KORCARI21-Oct-05 9:56 
AnswerRe: Help me... Pin
enjoycrack21-Oct-05 10:26
enjoycrack21-Oct-05 10:26 
AnswerRe: Help me... Pin
André Ziegler21-Oct-05 10:26
André Ziegler21-Oct-05 10:26 
Questioncryptostream.Close() exception Pin
Anonymous21-Oct-05 9:35
Anonymous21-Oct-05 9:35 
Questionflat files in .net Pin
dvsr21-Oct-05 7:57
dvsr21-Oct-05 7:57 
AnswerRe: flat files in .net Pin
Samar Aarkotti21-Oct-05 8:34
Samar Aarkotti21-Oct-05 8:34 
AnswerRe: flat files in .net Pin
Turtle Hand21-Oct-05 9:06
Turtle Hand21-Oct-05 9:06 
QuestionFirst steps with XML Pin
ventomito21-Oct-05 7:05
ventomito21-Oct-05 7:05 
AnswerRe: First steps with XML Pin
Dwayner7921-Oct-05 7:39
Dwayner7921-Oct-05 7:39 
GeneralRe: First steps with XML Pin
Samar Aarkotti21-Oct-05 8:31
Samar Aarkotti21-Oct-05 8:31 
GeneralRe: First steps with XML Pin
ventomito22-Oct-05 4:58
ventomito22-Oct-05 4:58 

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.