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

C#

 
GeneralRe: C# connection between two SQLExpress servers on one machine Pin
Member 1103943928-Aug-14 20:28
Member 1103943928-Aug-14 20:28 
GeneralRe: C# connection between two SQLExpress servers on one machine Pin
Paul Conrad29-Aug-14 18:47
professionalPaul Conrad29-Aug-14 18:47 
AnswerRe: C# connection between two SQLExpress servers on one machine Pin
PIEBALDconsult2-Sep-14 8:24
mvePIEBALDconsult2-Sep-14 8:24 
QuestionUsing Process.Start on Excel Pin
mjackson1128-Aug-14 8:35
mjackson1128-Aug-14 8:35 
AnswerRe: Using Process.Start on Excel Pin
Richard Deeming28-Aug-14 9:59
mveRichard Deeming28-Aug-14 9:59 
GeneralRe: Using Process.Start on Excel Pin
mjackson1128-Aug-14 10:15
mjackson1128-Aug-14 10:15 
GeneralRe: Using Process.Start on Excel Pin
Richard Deeming29-Aug-14 1:41
mveRichard Deeming29-Aug-14 1:41 
GeneralRe: Using Process.Start on Excel Pin
mjackson1129-Aug-14 1:55
mjackson1129-Aug-14 1:55 
AnswerRe: Using Process.Start on Excel Pin
Bernhard Hiller28-Aug-14 21:15
Bernhard Hiller28-Aug-14 21:15 
QuestionInterop.Excel.Range query Pin
Dini Ngewu28-Aug-14 0:55
Dini Ngewu28-Aug-14 0:55 
AnswerRe: Interop.Excel.Range query Pin
Dini Ngewu28-Aug-14 0:59
Dini Ngewu28-Aug-14 0:59 
QuestionUnable to connect to the remote server when calling web services from code in 4.5 framework. Pin
Member 1101964328-Aug-14 0:48
Member 1101964328-Aug-14 0:48 
AnswerRe: Unable to connect to the remote server when calling web services from code in 4.5 framework. Pin
Gerry Schmitz28-Aug-14 5:28
mveGerry Schmitz28-Aug-14 5:28 
QuestionHow To Use Guid Filter in Select StateMent :( :( :( Pin
mhd.sbt27-Aug-14 19:42
mhd.sbt27-Aug-14 19:42 
AnswerRe: How To Use Guid Filter in Select StateMent :( :( :( Pin
V.28-Aug-14 1:48
professionalV.28-Aug-14 1:48 
GeneralRe: How To Use Guid Filter in Select StateMent :( :( :( Pin
mhd.sbt28-Aug-14 7:54
mhd.sbt28-Aug-14 7:54 
GeneralRe: How To Use Guid Filter in Select StateMent :( :( :( Pin
V.28-Aug-14 19:18
professionalV.28-Aug-14 19:18 
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.

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.