DougN

1,237
Reputation
154 views

Registered User

Name DougN
Member for 1 year
Seen yesterday
Website
Location
Age
1d
comment Shutdown exception handling for Win32/C++
Interesting idea. I've had some issues with STL objects at startup so shutdown makes sense...
1d
comment Shutdown exception handling for Win32/C++
That's exactly what I'm after :)
Nov
25
asked Shutdown exception handling for Win32/C++
Nov
19
accepted Encapsulating WndProc Problem.
Nov
19
answered Encapsulating WndProc Problem.
Nov
18
comment How to read the Windows Event Log without an EventMessageFile?
Does that mean an app (the Windows Event Log Viewer for instance) running on a Win2003 machine can't read the events from a Vista machine that uses a new provider?
Nov
18
revised ERROR_BAD_INHERITANCE_ACL from SetNamedSecurityInfo?
added 2957 characters in body
Nov
18
asked Win32 DrawText line height
Nov
16
comment can realloc move pointer if new size smaller?
You need to double check your docs. See: msdn.microsoft.com/en-us/library/… The CRT grabs a single OS heap to use internally. It then sub-allocates that heap (meaning it doesn't use the Win32 heap calls to do allocations within that heap)
Nov
15
answered can realloc move pointer if new size smaller?
Nov
14
comment Programmatically detect Windows cluster configuration?
Thanks. I need it for Win32, but that is a starting point for me to at least look at.
Nov
14
revised Programmatically detect Windows cluster configuration?
added 63 characters in body; edited body
Nov
13
asked Programmatically detect Windows cluster configuration?
Oct
29
accepted Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
Oct
29
answered Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
Oct
29
asked wget, self-signed certs and a custom HTTPS server
Oct
24
comment What is $Secure:$SDS:$DATA on Windows?
My app does change permissions on some files that it creates (it's a service, so it adds permissions so other users can access them -- mostly log files, and only a limited number of them). I don't find that file on my machines, but one customer has one that is continually growing, and is now 1GB.
Oct
23
asked Calculating % memory used on Linux
Oct
20
asked What is $Secure:$SDS:$DATA on Windows?
Oct
15
awarded  Nice Question
Oct
6
awarded  Popular Question
Sep
23
accepted Recursive directory deletion with WIN32
Sep
23
answered Recursive directory deletion with WIN32
Sep
18
comment Pattern for synching object lists among computers (in C++)?
Latency will likely be an issue, so I don't think the proxy pattern works. And because there will be so many objects (10K maybe?) and possibly even 100 clients, the Publish/Subscribe seems like it would add a ton of overhead with so many individual updates being fired out. I'm more looking for something where a client can show up and say, 'what's changed since I was last here' and get a bulk list of data returned.
Sep
18
comment Pattern for synching object lists among computers (in C++)?
It would only grab a single copy of the object if the object's update counter was newer than the client's stored update counter.
Sep
18
asked Pattern for synching object lists among computers (in C++)?
Sep
16
awarded  Yearling
Sep
7
answered Best way to decouple (for parallel processing) a web application’s non-immediate processes?
Sep
3
awarded  Popular Question
Jul
29
awarded  Popular Question
Jul
24
answered Mysterious oneliner template code, any one ?
Jul
17
comment Alternative to BackgroundWorker that accepts more than one argument?
+McAden If the library designers handled two arguments, why not three, four, etc? The solution was to handle one, and that one can be an object of arbitrary complexity.
Jul
15
comment Worst UI You’ve Ever Used
I doubt it's made up. If you installed Kazaa a few years back (maybe now too?) you'd end up with something pretty close.
Jul
1
answered Log management&analysis Open Source product
Jun
29
answered How to pass variable number of arguments to printf/sprintf
Jun
24
comment Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
Hmmm. In IE I unchecked "Do not save encrypted pages to disk". It looks like .jpg, .gif, .js and .css files are getting saved, but no .PDF or .html. Very odd... (although it's right in THIS case, it seems hard to believe IE could guess an image wouldn't contain private info)
Jun
24
revised Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
added 62 characters in body; edited title; added 49 characters in body
Jun
24
comment Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
Good call Jeff. It's actually the 32-bit IE on 64-bit Vista (some of the pages contain flash, and there isn't a 64-bit flash player yet). Will edit the question...
Jun
24
asked Can’t display PDF from HTTPS in IE 8 (on 64-bit Vista)
Jun
21
answered Open a new browser window from embeded Internet Explorer
Jun
8
comment Stuck on C++ template - deriving from std::map
aaaahhh, that's a deadly bug. thanks for pointing it out!
Jun
8
comment Stuck on C++ template - deriving from std::map
I'm really just doing this so I can call a method when the map is constructed and destructed. If I can do this, I can go through and replace std::map with my new CleanableMap and not have to change anything else. So no new data members. And even though it wasn't meant to be derived from, what if I was deriving from some other templated class and got this same error? :)
Jun
8
asked Stuck on C++ template - deriving from std::map
Jun
4
comment Finding the Recycle Bin on a local NTFS drive
Please point me towards a better (shorter) implementation. I haven't found one anywhere.
Jun
3
accepted Finding the Recycle Bin on a local NTFS drive
Jun
3
answered Finding the Recycle Bin on a local NTFS drive
Jun
2
comment C++/C object->isOnStack()
I think he wants to know if the object pointed to by a pointer is on the stack, not the actual pointer itself. In that case I don't think calling convention would matter since objects are rarely (if ever?) passed in registers -- only the pointer would be.
Jun
2
comment Finding the Recycle Bin on a local NTFS drive
I'm starting to think this might be the only way -- cycle through all directories in the root and check each one using Raymond's method of comparing the directory GUID to the Recycle Bin GUID. You'd think there'd be a more direct way...
Jun
2
revised Finding the Recycle Bin on a local NTFS drive
added 326 characters in body
Jun
2
comment Finding the Recycle Bin on a local NTFS drive
Oh, and the second post forces you to go through all directories looking for one that would match the recycle bin's GUID. Isn't there a way to get the recycle bin a per-drive basis?