Click here to Skip to main content
15,911,711 members
Home / Discussions / C#
   

C#

 
GeneralRe: setup customer background color Pin
Giorgi Dalakishvili24-Nov-08 7:21
mentorGiorgi Dalakishvili24-Nov-08 7:21 
QuestionHow to generate the application line when using XMLSerializer to generate an Excel 2003 XML file Pin
TxPomeroy24-Nov-08 5:47
TxPomeroy24-Nov-08 5:47 
AnswerRe: How to generate the application line when using XMLSerializer to generate an Excel 2003 XML file Pin
leppie24-Nov-08 19:55
leppie24-Nov-08 19:55 
QuestionCombo box updates - but in 2 clicks Pin
spd6924-Nov-08 5:44
spd6924-Nov-08 5:44 
AnswerRe: Combo box updates - but in 2 clicks Pin
spd6924-Nov-08 13:57
spd6924-Nov-08 13:57 
QuestionDouble Post I know, Threading Question yet again Pin
EliottA24-Nov-08 5:40
EliottA24-Nov-08 5:40 
AnswerRe: Double Post I know, Threading Question yet again Pin
Giorgi Dalakishvili24-Nov-08 5:46
mentorGiorgi Dalakishvili24-Nov-08 5:46 
AnswerRe: Double Post I know, Threading Question yet again Pin
Russell Jones24-Nov-08 6:24
Russell Jones24-Nov-08 6:24 
In any public methods of your user interface add code that looks a bit like this:

        <br />
public void setText(string someText)<br />
        {<br />
            if (InvokeRequired)<br />
            {<br />
                Invoke((MethodInvoker)delegate() { setText(someText); });<br />
                return;<br />
            }<br />
            MyLabel.Text = someText;<br />
        }<br />

Basically the method invokes itself if needed otherwise it just gets on with it. If the method has been invoked then the invoke will not be required and the method just continues

Russ
Questionthe problem related to the position of tab button Pin
Seraph_summer24-Nov-08 5:17
Seraph_summer24-Nov-08 5:17 
AnswerRe: the problem related to the position of tab button Pin
Pr@teek B@h!24-Nov-08 5:33
Pr@teek B@h!24-Nov-08 5:33 
QuestionSQL Select Value to String Pin
hobbsieoz24-Nov-08 4:58
hobbsieoz24-Nov-08 4:58 
GeneralRe: SQL Select Value to String Pin
selcuks24-Nov-08 5:02
selcuks24-Nov-08 5:02 
GeneralRe: SQL Select Value to String Pin
hobbsieoz24-Nov-08 21:14
hobbsieoz24-Nov-08 21:14 
GeneralRe: SQL Select Value to String Pin
hobbsieoz25-Nov-08 4:40
hobbsieoz25-Nov-08 4:40 
Questionthe simple question, but I don't know Pin
Seraph_summer24-Nov-08 4:53
Seraph_summer24-Nov-08 4:53 
GeneralRe: the simple question, but I don't know Pin
selcuks24-Nov-08 5:09
selcuks24-Nov-08 5:09 
AnswerRe: the simple question, but I don't know Pin
Christian Graus24-Nov-08 9:01
protectorChristian Graus24-Nov-08 9:01 
QuestionConvert utf16 to utf8 Pin
Charith Jayasundara24-Nov-08 4:52
Charith Jayasundara24-Nov-08 4:52 
AnswerRe: Convert utf16 to utf8 Pin
Guffa24-Nov-08 5:02
Guffa24-Nov-08 5:02 
GeneralRe: Convert utf16 to utf8 Pin
Charith Jayasundara24-Nov-08 8:45
Charith Jayasundara24-Nov-08 8:45 
GeneralRe: Convert utf16 to utf8 Pin
Giorgi Dalakishvili24-Nov-08 9:05
mentorGiorgi Dalakishvili24-Nov-08 9:05 
GeneralRe: Convert utf16 to utf8 Pin
Guffa24-Nov-08 9:08
Guffa24-Nov-08 9:08 
GeneralRe: Convert utf16 to utf8 Pin
Charith Jayasundara24-Nov-08 9:41
Charith Jayasundara24-Nov-08 9:41 
GeneralRe: Convert utf16 to utf8 Pin
Charith Jayasundara24-Nov-08 10:13
Charith Jayasundara24-Nov-08 10:13 
Questionhelp in designing a project Pin
Maverickcool24-Nov-08 4:33
Maverickcool24-Nov-08 4:33 

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.