Click here to Skip to main content
15,888,286 members
Home / Discussions / C#
   

C#

 
GeneralRe: multiplication Pin
abhishek9111199-Feb-13 19:21
abhishek9111199-Feb-13 19:21 
GeneralRe: multiplication Pin
Jibesh9-Feb-13 19:23
professionalJibesh9-Feb-13 19:23 
AnswerRe: multiplication Pin
Dave Kreskowiak9-Feb-13 8:25
mveDave Kreskowiak9-Feb-13 8:25 
AnswerRe: multiplication Pin
PIEBALDconsult9-Feb-13 10:26
mvePIEBALDconsult9-Feb-13 10:26 
QuestionHow to change a cs file in an existing project? (to combine different projects) Pin
gibsray9-Feb-13 5:50
gibsray9-Feb-13 5:50 
AnswerRe: How to change a cs file in an existing project? (to combine different projects) Pin
Dave Kreskowiak9-Feb-13 6:22
mveDave Kreskowiak9-Feb-13 6:22 
Questionhow to cache data with dictionary in Pin
mhd.sbt9-Feb-13 4:34
mhd.sbt9-Feb-13 4:34 
GeneralRe: how to cache data with dictionary in Pin
PIEBALDconsult9-Feb-13 5:36
mvePIEBALDconsult9-Feb-13 5:36 
GeneralRe: how to cache data with dictionary in Pin
Eddy Vluggen9-Feb-13 8:25
professionalEddy Vluggen9-Feb-13 8:25 
AnswerRe: how to cache data with dictionary in Pin
Dave Kreskowiak9-Feb-13 6:25
mveDave Kreskowiak9-Feb-13 6:25 
GeneralRe: how to cache data with dictionary in Pin
mhd.sbt14-Feb-13 23:40
mhd.sbt14-Feb-13 23:40 
GeneralRe: how to cache data with dictionary in Pin
Dave Kreskowiak15-Feb-13 1:58
mveDave Kreskowiak15-Feb-13 1:58 
AnswerRe: how to cache data with dictionary in Pin
Abhinav S9-Feb-13 21:06
Abhinav S9-Feb-13 21:06 
QuestionHow to add three columns in shpae file using c# Pin
devchina8-Feb-13 23:49
devchina8-Feb-13 23:49 
AnswerRe: How to add three columns in shpae file using c# Pin
Richard MacCutchan9-Feb-13 0:10
mveRichard MacCutchan9-Feb-13 0:10 
GeneralRe: How to add three columns in shpae file using c# Pin
devchina9-Feb-13 0:49
devchina9-Feb-13 0:49 
GeneralRe: How to add three columns in shpae file using c# Pin
Richard MacCutchan9-Feb-13 0:52
mveRichard MacCutchan9-Feb-13 0:52 
AnswerRe: How to add three columns in shpae file using c# Pin
Eddy Vluggen9-Feb-13 0:18
professionalEddy Vluggen9-Feb-13 0:18 
Questionlinq to list and lamda expresion Pin
mhd.sbt8-Feb-13 23:44
mhd.sbt8-Feb-13 23:44 
AnswerRe: linq to list and lamda expresion Pin
Eddy Vluggen9-Feb-13 0:14
professionalEddy Vluggen9-Feb-13 0:14 
GeneralRe: linq to list and lamda expresion Pin
mhd.sbt9-Feb-13 1:23
mhd.sbt9-Feb-13 1:23 
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 
Amlanjyoti Saikia wrote:
LengthyOperationThread.Join();
When this code gets executed, main thread will be blocked until the worker thread finishes execution. Which means none of the UI messages will be processed and that might be the reason why you don't see GIF file animating.

I'd offload the work of creating report to to the WaitForm and do a ShowDialog() instead of Show() for displaying the WaitForm. You can modify WaitForm's constructor so that you can pass necessary information required for report generation. This should fix both of your problems.

Smile | :)
Best wishes,
Navaneeth

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.