Click here to Skip to main content
15,886,578 members
Home / Discussions / C#
   

C#

 
AnswerRe: linq to list and lamda expresion Pin
N a v a n e e t h9-Feb-13 0:23
N a v a n e e t h9-Feb-13 0:23 
GeneralRe: linq to list and lamda expresion Pin
Richard Deeming11-Feb-13 1:40
mveRichard Deeming11-Feb-13 1:40 
QuestionThreading/GIF animation [Solved] Pin
Amlanjyoti Saikia8-Feb-13 22:58
Amlanjyoti Saikia8-Feb-13 22:58 
AnswerRe: Threading/GIF animation Pin
N a v a n e e t h9-Feb-13 0:17
N a v a n e e t h9-Feb-13 0:17 
GeneralRe: Threading/GIF animation Pin
Amlanjyoti Saikia9-Feb-13 1:24
Amlanjyoti Saikia9-Feb-13 1:24 
AnswerRe: Threading/GIF animation Pin
Eddy Vluggen9-Feb-13 0:17
professionalEddy Vluggen9-Feb-13 0:17 
GeneralRe: Threading/GIF animation Pin
Amlanjyoti Saikia9-Feb-13 1:53
Amlanjyoti Saikia9-Feb-13 1:53 
AnswerRe: Threading/GIF animation [Solved] Pin
Dave Kreskowiak9-Feb-13 3:44
mveDave Kreskowiak9-Feb-13 3:44 
WRONG! You NEVER put any UI on the a seperate thread. What you did was put the UI on a seperate thread and then launched the long running work in yet another thread.

The way you've done it will appear to work fine but your code WILL run into problems every now and then that you can't replicate and will have a nasty time debugging. DO NOT PUT ANY UI IN A BACKGROUND THREAD!

Your long running work gets put on a background thread, such as using a BackgroundWorker, and then that frees up your UI thread to, well, update the UI. BackgroundWorker exposes a couple of events you can use to manage updating the UI without resorting to putting the UI in another thread.

GeneralRe: Threading/GIF animation [Solved] Pin
Amlanjyoti Saikia1-Mar-13 19:20
Amlanjyoti Saikia1-Mar-13 19:20 
GeneralRe: Threading/GIF animation [Solved] Pin
Dave Kreskowiak2-Mar-13 3:56
mveDave Kreskowiak2-Mar-13 3:56 
AnswerRe: Threading/GIF animation [Solved] [Updated Code] Pin
Amlanjyoti Saikia1-Mar-13 19:21
Amlanjyoti Saikia1-Mar-13 19:21 
Questionhow to access the stream of the ip camera via c# using Aforge Pin
Glendonz8-Feb-13 22:56
Glendonz8-Feb-13 22:56 
AnswerRe: how to access the stream of the ip camera via c# using Aforge Pin
OriginalGriff8-Feb-13 23:04
mveOriginalGriff8-Feb-13 23:04 
GeneralRe: how to access the stream of the ip camera via c# using Aforge Pin
Glendonz13-Feb-13 19:31
Glendonz13-Feb-13 19:31 
Questionproperty of network base software? Pin
Edalat_20118-Feb-13 21:00
Edalat_20118-Feb-13 21:00 
AnswerRe: property of network base software? Pin
Richard MacCutchan8-Feb-13 23:01
mveRichard MacCutchan8-Feb-13 23:01 
GeneralRe: property of network base software? Pin
Edalat_20119-Feb-13 3:28
Edalat_20119-Feb-13 3:28 
GeneralRe: property of network base software? Pin
Dave Kreskowiak9-Feb-13 3:38
mveDave Kreskowiak9-Feb-13 3:38 
QuestionHow to import data from OpenOffice to DataTable/DataSet Pin
devchina8-Feb-13 19:43
devchina8-Feb-13 19:43 
AnswerRe: How to import data from OpenOffice to DataTable/DataSet Pin
Richard MacCutchan8-Feb-13 23:00
mveRichard MacCutchan8-Feb-13 23:00 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
devchina8-Feb-13 23:15
devchina8-Feb-13 23:15 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
Richard MacCutchan8-Feb-13 23:42
mveRichard MacCutchan8-Feb-13 23:42 
GeneralRe: How to import data from OpenOffice to DataTable/DataSet Pin
Dave Kreskowiak9-Feb-13 3:36
mveDave Kreskowiak9-Feb-13 3:36 
QuestionShapefile Creations Pin
devchina8-Feb-13 17:52
devchina8-Feb-13 17:52 
AnswerRe: Shapefile Creations Pin
Dave Kreskowiak8-Feb-13 18:29
mveDave Kreskowiak8-Feb-13 18:29 

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.