1800 INFORMATION

25,325
Reputation
2756 views

Registered User

Name 1800 INFORMATION
Member for 1 year
Seen Nov 13 at 2:21
Website
Location Auckland, New Zealand
Age 34
Multitudinis imperitæ non formido judicia; meis tamen, rogo, parcant opusculis——in quibus fuit propositi semper, a jocis ad seria, a seriis vicissim ad jocos transire.
Nov
26
accepted On Design Patterns: When to use the Singleton?
Nov
23
awarded  Nice Answer
Nov
22
awarded  Nice Answer
Nov
20
accepted How to import a tlb and a namespace in c++ at runtime when some condition meets ?
Nov
20
accepted Why is /clr incompatible with /mt and /mtd in Visual Studio?
Nov
15
awarded  Nice Answer
Oct
31
accepted How does a program ask for administrator privileges?
Oct
29
accepted How to securely store database connection details
Oct
29
awarded  Nice Answer
Oct
27
accepted New Data Breakpoint disabled in Visual Studio 2008 mixed project
Oct
26
accepted Time complexity of the program
Oct
21
awarded  Popular Question
Oct
20
answered New Data Breakpoint disabled in Visual Studio 2008 mixed project
Oct
16
comment Can’t seem to discard changes in Git
I would say, leave them both off IF you are using git svn. I added some more detail.
Oct
16
revised Can’t seem to discard changes in Git
added 1535 characters in body; added 226 characters in body
Oct
15
accepted std::string and format string
Oct
15
answered Can’t seem to discard changes in Git
Oct
15
answered std::string and format string
Oct
15
comment Hidden features of x86 assembly language?
There is no one "assembly language" - it depends on the assembler, and the target platform
Oct
14
answered Using Subversion, how can you tell if all the files in a particular hard-drive folder have been checked-in and comitted to the repsitory?
Oct
13
accepted Explicit Linking DLL and Program Hangs
Oct
12
answered convert 24bit RGB to ARGB16
Oct
12
awarded  Nice Answer
Oct
12
revised visual c++: covert integer to string
added 98 characters in body
Oct
12
answered I found this Reboot Vista.vbs script. Can you help with it ?
Oct
9
comment Is using const_cast for read-only access to a const object allowed?
Oh right, sorry I got some conflicting advice on the interwebs
Oct
9
answered slow exporting from access to excel
Oct
9
answered Is this thread-safe?
Oct
9
answered Is using const_cast for read-only access to a const object allowed?
Oct
8
answered How to speed up LIKE operation in SQL (Postgres preferably)
Oct
8
answered Are .NET Applications naturally memory intensive?
Oct
8
comment Code Golf: Beehive
I'm waiting for the first 250 line C# answer - those are always funny in a "golf" question
Oct
8
awarded  Enlightened
Oct
8
awarded  Nice Answer
Oct
8
comment Absolute COM Confusion - C# interop with early-binding
The declaration for "non-local" is basically to not specify "local" for the interface, which you didn't do, so don't worry about that
Oct
7
revised Absolute COM Confusion - C# interop with early-binding
added 184 characters in body
Oct
7
comment Absolute COM Confusion - C# interop with early-binding
I think you need to make sure your proxy/stub dll is properly registered. If you are using ATL, and you create the project using the wizard, it can create one for you, or "merge" the proxy/stub into your project. I'm a bit hazy on the exact details of how to do it in the absense of ATL - this article might help you though: msdn.microsoft.com/en-us/library/…
Oct
7
accepted Absolute COM Confusion - C# interop with early-binding
Oct
7
answered What errors / exceptions trigger Windows Error Reporting?
Oct
7
comment What are MMC extension snap-ins?
I think probably the extent of my answer was the "did you read this" bit - hope you figure it out though. From the looks of things, an primary snapin is the kind you normally add - it is the kind you "add" to mmc manually, while an extension snapin works automagically by adding new features to other snapins.
Oct
7
answered What are MMC extension snap-ins?
Oct
7
answered Explicit Linking DLL and Program Hangs
Oct
7
comment Absolute COM Confusion - C# interop with early-binding
There is no doubt about that - you will need to ensure that all accesses are protected
Oct
6
comment Absolute COM Confusion - C# interop with early-binding
I've added some more detail
Oct
6
revised Absolute COM Confusion - C# interop with early-binding
added 1387 characters in body
Oct
6
answered Absolute COM Confusion - C# interop with early-binding
Oct
6
comment Templates and headers question
Here's the world's tiniest violin: #=={=}
Oct
6
accepted Creating your own HRESULT?
Oct
6
comment Store an int in a char array?
That's true, I guess, but unions are not the only way to solve this problem, and there are solutions that do not invoke UB so it is probably best to favour those.
Oct
6
comment Store an int in a char array?
Your comment about the LSB and MSB only holds true for little endian architectures.