Click here to Skip to main content
15,906,463 members
Home / Discussions / C#
   

C#

 
QuestionGetting Selected text in webbrowser control Pin
emran83423-Jan-06 7:34
emran83423-Jan-06 7:34 
AnswerRe: Getting Selected text in webbrowser control Pin
tarasn23-Jan-06 21:35
tarasn23-Jan-06 21:35 
GeneralRe: Getting Selected text in webbrowser control Pin
emran83426-Jan-06 2:29
emran83426-Jan-06 2:29 
GeneralRe: Getting Selected text in webbrowser control Pin
tarasn26-Jan-06 10:41
tarasn26-Jan-06 10:41 
GeneralRe: Getting Selected text in webbrowser control Pin
emran83427-Jan-06 2:13
emran83427-Jan-06 2:13 
GeneralRe: It is Working... with using MSHTML; Pin
emran83428-Jan-06 5:39
emran83428-Jan-06 5:39 
QuestionAutoScroll Pin
Sabry190523-Jan-06 7:31
Sabry190523-Jan-06 7:31 
AnswerRe: AutoScroll Pin
tarasn23-Jan-06 11:38
tarasn23-Jan-06 11:38 
GeneralRe: AutoScroll Pin
Sabry190524-Jan-06 0:07
Sabry190524-Jan-06 0:07 
QuestionC# Stored Procs Pin
niceguyeddie199923-Jan-06 6:09
niceguyeddie199923-Jan-06 6:09 
AnswerRe: C# Stored Procs Pin
Xodiak23-Jan-06 6:21
Xodiak23-Jan-06 6:21 
GeneralRe: C# Stored Procs Pin
niceguyeddie199923-Jan-06 6:24
niceguyeddie199923-Jan-06 6:24 
GeneralRe: C# Stored Procs Pin
Colin Angus Mackay23-Jan-06 7:28
Colin Angus Mackay23-Jan-06 7:28 
GeneralRe: C# Stored Procs Pin
Colin Angus Mackay23-Jan-06 7:10
Colin Angus Mackay23-Jan-06 7:10 
GeneralRe: C# Stored Procs Pin
Xodiak23-Jan-06 9:27
Xodiak23-Jan-06 9:27 
GeneralRe: C# Stored Procs Pin
Dave Kreskowiak23-Jan-06 11:04
mveDave Kreskowiak23-Jan-06 11:04 
GeneralRe: C# Stored Procs Pin
Colin Angus Mackay23-Jan-06 11:09
Colin Angus Mackay23-Jan-06 11:09 
AnswerRe: C# Stored Procs Pin
Guffa23-Jan-06 9:45
Guffa23-Jan-06 9:45 
GeneralRe: C# Stored Procs Pin
niceguyeddie199924-Jan-06 3:13
niceguyeddie199924-Jan-06 3:13 
QuestionCPPP (Confused Performance Profiling Practices)?! Pin
NewtonVer223-Jan-06 6:03
NewtonVer223-Jan-06 6:03 
AnswerRe: CPPP (Confused Performance Profiling Practices)?! Pin
Dave Kreskowiak23-Jan-06 6:17
mveDave Kreskowiak23-Jan-06 6:17 
AnswerRe: CPPP (Confused Performance Profiling Practices)?! Pin
Daniel Grunwald23-Jan-06 7:43
Daniel Grunwald23-Jan-06 7:43 
You're profiling the performance of Console.WriteLine. The console window will have to redraw for new lines, update it's scrolling buffer etc. The console window itself runs in another process (that's why you can see its content even when the application hangs or is suspended by a debugger); multiple processes=multiple threads => random timings. I didn't try to run the code, but I you should get completely different timings each time. Debug/Release won't have a difference since more than 99,9999% of the time is not spent in your code.
Questiondetect if tcp connection dropped/aborted Pin
batmanAgen23-Jan-06 4:49
batmanAgen23-Jan-06 4:49 
AnswerRe: detect if tcp connection dropped/aborted Pin
Dario Solera23-Jan-06 5:51
Dario Solera23-Jan-06 5:51 
AnswerRe: detect if tcp connection dropped/aborted Pin
leppie23-Jan-06 6:27
leppie23-Jan-06 6: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.