Click here to Skip to main content
15,884,176 members
Home / Discussions / C#
   

C#

 
AnswerRe: How To Use Guid Filter in Select StateMent :( :( :( Pin
Richard Deeming28-Aug-14 1:49
mveRichard Deeming28-Aug-14 1:49 
GeneralRe: How To Use Guid Filter in Select StateMent :( :( :( Pin
mhd.sbt30-Aug-14 4:37
mhd.sbt30-Aug-14 4:37 
QuestionProgress Bar makes copying painfully slow, a little help please? Pin
kiasta27-Aug-14 17:26
kiasta27-Aug-14 17:26 
AnswerRe: Progress Bar makes copying painfully slow, a little help please? Pin
Ravi Bhavnani27-Aug-14 17:44
professionalRavi Bhavnani27-Aug-14 17:44 
GeneralRe: Progress Bar makes copying painfully slow, a little help please? Pin
kiasta28-Aug-14 4:20
kiasta28-Aug-14 4:20 
AnswerRe: Progress Bar makes copying painfully slow, a little help please? Pin
Roger50027-Aug-14 18:04
Roger50027-Aug-14 18:04 
GeneralRe: Progress Bar makes copying painfully slow, a little help please? Pin
kiasta28-Aug-14 5:03
kiasta28-Aug-14 5:03 
GeneralRe: Progress Bar makes copying painfully slow, a little help please? Pin
Roger50028-Aug-14 11:51
Roger50028-Aug-14 11:51 
As you said, the progress bar slows down the copy. The progress bar is CPU intensive while the file copy is most likely IO bound. The progress bar slows the copy when the two operations share the same thread. Copying the file in a separate thread will allow more efficient use of multiple processors; both operations run almost independently.
Also, try copying a file several gigabytes in size and watch your UI lock up.
I tend to reuse code a lot. Code a process right the first time and use it many times.
GeneralRe: Progress Bar makes copying painfully slow, a little help please? Pin
kiasta29-Aug-14 8:46
kiasta29-Aug-14 8:46 
AnswerRe: Progress Bar makes copying painfully slow, a little help please? Pin
OriginalGriff27-Aug-14 22:36
mveOriginalGriff27-Aug-14 22:36 
GeneralRe: Progress Bar makes copying painfully slow, a little help please? Pin
kiasta28-Aug-14 5:08
kiasta28-Aug-14 5:08 
QuestionFacing Problems in your Code Pin
Member 1019429727-Aug-14 16:07
Member 1019429727-Aug-14 16:07 
AnswerRe: Facing Problems in your Code Pin
Dave Kreskowiak27-Aug-14 17:27
mveDave Kreskowiak27-Aug-14 17:27 
QuestionRe: Facing Problems in your Code Pin
ZurdoDev28-Aug-14 4:23
professionalZurdoDev28-Aug-14 4:23 
AnswerRe: Facing Problems in your Code Pin
Gerry Schmitz28-Aug-14 5:36
mveGerry Schmitz28-Aug-14 5:36 
QuestionC# 2013 Pin
shawnjots27-Aug-14 13:12
shawnjots27-Aug-14 13:12 
AnswerRe: C# 2013 Pin
Richard MacCutchan27-Aug-14 22:17
mveRichard MacCutchan27-Aug-14 22:17 
AnswerRe: C# 2013 Pin
Sibeesh KV29-Sep-14 19:26
professionalSibeesh KV29-Sep-14 19:26 
Questionget string from via Regex Pin
jojoba2027-Aug-14 7:02
jojoba2027-Aug-14 7:02 
AnswerRe: get string from via Regex Pin
Rob Philpott27-Aug-14 9:13
Rob Philpott27-Aug-14 9:13 
QuestionRe: get string from via Regex Pin
jojoba2027-Aug-14 9:43
jojoba2027-Aug-14 9:43 
AnswerRe: get string from via Regex Pin
Bernhard Hiller27-Aug-14 20:40
Bernhard Hiller27-Aug-14 20:40 
AnswerRe: get string from via Regex Pin
Ravi Bhavnani27-Aug-14 9:36
professionalRavi Bhavnani27-Aug-14 9:36 
QuestionHow to write Context menu helper class Pin
Tejas Vaishnav26-Aug-14 21:09
professionalTejas Vaishnav26-Aug-14 21:09 
AnswerRe: How to write Context menu helper class Pin
Eddy Vluggen26-Aug-14 22:27
professionalEddy Vluggen26-Aug-14 22:27 

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.