Scott Langham

6,558
Reputation
439 views

Registered User

Name Scott Langham
Member for 1 year
Seen yesterday
Website
Location UK
Age 32
3h
accepted Are “passive” objects considered a good design practice?
Nov
24
accepted C# /ASP.NET Asynchronous Thread Execution
Nov
23
answered C# /ASP.NET Asynchronous Thread Execution
Nov
22
comment store a string in an int
why do you want it in a array of ints? wouldn't an array of char be more straightforward?
Nov
17
comment How to instantiate a variable to call a method.
Please give us an example of what you mean with a switch, and we'll tell you if there's an alternative without the switch.
Nov
17
answered Multiple dispatch in C++
Nov
13
answered Are “passive” objects considered a good design practice?
Nov
11
revised C# How to remove and cleanup all events
added 4 characters in body
Nov
11
asked C# How to remove and cleanup all events
Nov
8
revised Are bought in thirdparty libraries cost/time effective?
deleted 6 characters in body; edited tags
Nov
8
comment What strategies and tools are useful for finding memory leaks in .net?
Ok, the new version 5.1, is a heck of a lot better. It's better at helping you find the cause of the leak (although - there are still a couple of problems with it that ANTS have told me they'll fix in the next version). Still doesn't do unmanaged code though, but if you're not bothered about unmanaged code, this is now a pretty good tool.
Nov
8
accepted How do I deal with quote characters when using cmd.exe
Nov
8
revised Your personal, successful coding practices.
deleted 89 characters in body
Nov
7
answered How do you version service pack or hot fix?
Nov
7
answered Interview question: f(f(n)) == -n
Oct
20
comment What happens when GetTickCount() wraps?
Or have you tried the simpler equivalent: TICKS_DIFF(prev,cur) ((cur)-(prev)) It works even with wrap around.
Oct
19
accepted Preferred way to build gui components tree
Oct
8
awarded  Popular Question
Sep
29
accepted TreeNode Right Click Option
Sep
25
answered TFS Re-run merge
Sep
25
asked TFS Re-run merge
Sep
24
comment Does c/c++ have a delay function?
are you on windows / unix / something else?
Sep
23
comment Is there a way of making C# binding work statically?
True. This kind of language feature might come in handy though even if you're not using WinForms.
Sep
23
revised Is there a way of making C# binding work statically?
edited title
Sep
23
asked Is there a way of making C# binding work statically?
Sep
23
asked CreateObject(”WXZ.Agent.1”, “RemoteServerName”) Permission denied. How can a username and password be supplied?
Sep
21
comment c# - ref modifier for …reference types
See also: stackoverflow.com/questions/186891/…
Sep
20
awarded  Nice Answer
Sep
20
comment TreeNode Right Click Option
Nice work. I'm happy that you solved it.
Sep
18
answered TreeNode Right Click Option
Sep
17
awarded  Yearling
Sep
10
comment How to find plain character code of a key press?
well, i've ended up looking for WM_KEYDOWN instead and converting from virtual keys to the characters I want. seems to kinda work.
Sep
10
asked How to find plain character code of a key press?
Sep
2
revised How to export image field to file?
added 162 characters in body
Sep
2
asked How to export image field to file?
Aug
30
answered Passing object references needlessly through a middleman
Aug
30
answered Cross thread reading of a variable
Aug
28
comment How to send email via exchange server without using smtp?
Thanks, I'll try and find out.
Aug
28
comment How to send email via exchange server without using smtp?
Thanks for the help. I'm afraid I get the same exception.
Aug
28
asked How to send email via exchange server without using smtp?
Aug
15
awarded  Populist
Aug
5
comment What are common UI misconceptions and annoyances?
Well, yes. But.. my parents and other people have trouble dealing with 'Save As', so they are not going to be able to deal with any source control system as they exist today. Some kind of document control is required, but this stuff needs to be baked into the OS to avoid these kind of headaches.
Aug
5
answered What are common UI misconceptions and annoyances?
Aug
4
comment How do I conserve program functionality and code after moving all controls into a tab control?
Please tell us why it doesn't work. Do you get an error message, if so what is it. Or what do you/don't you see that you expect or got before?
Aug
4
comment Underused features of Windows batch files
I've found it best to use "exit /B" instead of "goto :eof" to return from a subroutine, "goto :eof" has the problem that you may return an error code when you want to swallow it. For example if you use "if exist someFile echo it's here", this will set the errorlevel if someFile doesn't exist, but that's not wrong, and isn't an error code that you'd want to return (which is what "goto :eof" would do).
Jul
28
asked How to see windows messages of a dialog shown with a second thread?
Jul
23
comment An unbounded set of hashes based on bounded sets of hashes based on paths
Is this homework? Have you had a go at it. What have you tried so far?
Jul
23
answered where to put break in switch/case statement with blocks
Jul
21
awarded  Popular Question
Jul
21
accepted Should I store my system’s notifications in a db or filesystem?