Click here to Skip to main content
15,890,282 members
Home / Discussions / C#
   

C#

 
GeneralRe: manage a textbox from another form Pin
Anonymous17-May-05 21:11
Anonymous17-May-05 21:11 
GeneralRe: manage a textbox from another form Pin
MoustafaS18-May-05 2:16
MoustafaS18-May-05 2:16 
Generalfsdffsfsa Pin
Ken Fredrikson17-May-05 11:17
Ken Fredrikson17-May-05 11:17 
GeneralRe: fsdffsfsa Pin
Luis Alonso Ramos17-May-05 19:34
Luis Alonso Ramos17-May-05 19:34 
GeneralRe: fsdffsfsa Pin
MoustafaS18-May-05 2:18
MoustafaS18-May-05 2:18 
GeneralC# debugging Pin
methodincharge17-May-05 10:34
methodincharge17-May-05 10:34 
GeneralRe: C# debugging Pin
Judah Gabriel Himango17-May-05 11:01
sponsorJudah Gabriel Himango17-May-05 11:01 
GeneralRe: C# debugging Pin
Tom Larsen17-May-05 12:23
Tom Larsen17-May-05 12:23 
You are running into the classic problem with these client-server systems. The Client and the Server are operating in different application domains that occationally overlap and communicate with each other. Trying to debug these types of systems requires a level of understand that goes beyond what is normally done in "regular execution". Objects are not automatically available to either domain. Paths as well as context sensitive information are not the same in either domain. So on and so forth.

It is almost always easier to debug the Client application domain. The development tools are often available as well as the process so you can just attach the debugger and go. The Server application domain is often unavailable especially when on another machine that might not even be on the same network. It is also often a very bad idea to stop the server application domain in mid processing since whatever resource is still waiting for it to complete, like IIS. Defer processing or delay too many of these and your server can start acting weird.

One trick I always like to do especially if IIS is available is to report right to the HttpContext which can be inspected by "Trace.axd". Another trick I've learned to use is to have extensive log files that are coded into the server portion.
GeneralRe: C# debugging Pin
leppie17-May-05 13:54
leppie17-May-05 13:54 
GeneralRe: C# debugging Pin
Tom Larsen18-May-05 4:43
Tom Larsen18-May-05 4:43 
QuestionHelp... ...please? Pin
Anthony Mushrow17-May-05 9:31
professionalAnthony Mushrow17-May-05 9:31 
AnswerRe: Help... ...please? Pin
Judah Gabriel Himango17-May-05 9:53
sponsorJudah Gabriel Himango17-May-05 9:53 
GeneralError Pin
StephenMcAllister17-May-05 8:58
StephenMcAllister17-May-05 8:58 
GeneralRe: Error Pin
Roger Stewart17-May-05 9:08
professionalRoger Stewart17-May-05 9:08 
GeneralRe: Error Pin
StephenMcAllister17-May-05 9:23
StephenMcAllister17-May-05 9:23 
GeneralRe: Error Pin
Tom Larsen17-May-05 12:27
Tom Larsen17-May-05 12:27 
GeneralAdding Icons Pin
Member 156189417-May-05 6:39
Member 156189417-May-05 6:39 
GeneralRe: Adding Icons Pin
Marc Clifton17-May-05 7:44
mvaMarc Clifton17-May-05 7:44 
GeneralRe: Adding Icons Pin
Dave Kreskowiak17-May-05 9:57
mveDave Kreskowiak17-May-05 9:57 
Questionwhere do i wrong with registry key? Pin
Sasuko17-May-05 6:18
Sasuko17-May-05 6:18 
AnswerRe: where do i wrong with registry key? Pin
leppie17-May-05 6:24
leppie17-May-05 6:24 
GeneralRe: where do i wrong with registry key? Pin
Sasuko17-May-05 6:29
Sasuko17-May-05 6:29 
GeneralRe: where do i wrong with registry key? Pin
Sasuko17-May-05 6:36
Sasuko17-May-05 6:36 
AnswerRe: where do i wrong with registry key? Pin
OMalleyW17-May-05 6:28
OMalleyW17-May-05 6:28 
GeneralConvert byte array to bits Pin
Asad Hussain17-May-05 6:04
Asad Hussain17-May-05 6:04 

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.