Charlie

3,500
reputation
224 views

Registered User

name Charlie
member for 1 year
seen 15 hours ago
website
location US
age 30
Mostly a C++ and C# developer, with about 10 years of experience on the Win32 platform.
Dec
17
revised c# process give controls back to parent process question
fixed a grammatical error
Dec
17
answered c# process give controls back to parent process question
Dec
6
awarded  Mortarboard
Nov
12
accepted What happened to the “Detach All” option in Visual Studio?
Nov
6
comment Using Powershell to recursively rename directories using a lookup file
Very interesting - I didn't know about Import-Csv.
Nov
6
answered What happened to the “Detach All” option in Visual Studio?
Nov
5
comment How to access an indexed property on a COM object from Powershell
Very nice; that's what I get for not reading the docs closely enough. Thanks for the effort in tracking this down.
Nov
3
comment How to access an indexed property on a COM object from Powershell
Right, the enumeration is clearly working fine.
Nov
3
comment How to access an indexed property on a COM object from Powershell
Thanks, this seems to work also. Still hoping someone knows of a more direct way, though.
Nov
3
comment How to access an indexed property on a COM object from Powershell
Cool, this seems like a good workaround. I'm hoping someone will know how to do it "properly", but this will get me going for now.
Nov
3
asked How to access an indexed property on a COM object from Powershell
Oct
24
comment how to detect use of Perforce’s “reopen for edit” from a script
Very interesting - thanks for the info. Even if it doesn't work with my older version, hopefully it may help someone else.
Oct
17
comment Which Typesafe Enum in C++ Are You Using?
Follow-up on the namespace thing: for enums that live inside a class or struct, you can't use a namespace. If the enum doesn't live in a class or struct, I think you're right that using a namespace is cleaner.
Oct
14
comment Firewall start/stop using win32 api for windows XP os
Thanks for the pointer to netsh.exe, it looks very helpful for working with the firewall.
Oct
9
comment Can I insert nodes into a TreeView during AfterLabelEdit without beginning to edit them?
I think your option #3 seems perfectly fine, and isn't an abuse of BeginInvoke as far as I know. You're basically asking the system to run these operations once it finishes handling this message, which is perfectly legitimate.
Sep
20
answered Catching exit(1);
Sep
20
awarded  Yearling
Sep
15
awarded  Good Answer
Aug
31
comment guidelines on usage of size_t and offset_t ?
Interesting addition to the discussion - I wasn't aware of ptrdiff_t, but it sounds useful.
Aug
30
accepted Does a “pure” IDispatch interface require a proxy/stub DLL?
Aug
27
accepted Embedding an external executable inside a c# program
Aug
26
accepted Any reason to have SQL Server 2005 and 2008 installed on same machine?
Aug
5
comment a simple way to generate SQL Server’s “standard” form of an expression?
I like the idea of reusing one table for this, if I end up needing to do the normalization via a temporary table. Thanks for all the good ideas.
Aug
3
comment a simple way to generate SQL Server’s “standard” form of an expression?
Thanks for the ideas, I agree that I probably will have to do something like this. Hopefully an easier solution will come up, though.
Aug
2
answered Does a “pure” IDispatch interface require a proxy/stub DLL?
Aug
1
comment guidelines on usage of size_t and offset_t ?
Sounds like I should be using size_t for the purposes you describe, and not messing with offset_t. Thanks for the info.
Jul
31
comment guidelines on usage of size_t and offset_t ?
Interesting answers - maybe I'm wrong about offset_t being "standard"?
Jul
31
asked guidelines on usage of size_t and offset_t ?
Jul
30
asked a simple way to generate SQL Server’s “standard” form of an expression?
Jul
22
revised Fastest quote-escaping implementation?
added note about possible misuse of vector
Jul
22
comment Fastest quote-escaping implementation?
I figured that might be the issue. Good call then, your implementation is probably better (they're nearly the same conceptually).
Jul
22
comment Fastest quote-escaping implementation?
@Joe: It makes sense to me, because it requires N calls to the stream output function, which probably has a good bit of logic inside it. If you build the output in a temporary buffer, you can (if necessary) get it down to a small constant number of method calls and a pretty tight inner loop, which seems much more efficient. If speed is what really matters here, it won't get much faster than that.
Jul
22
comment Fastest quote-escaping implementation?
I can believe it's probably not the best - can you elaborate as to why and/or suggest a better alternative?
Jul
22
revised Fastest quote-escaping implementation?
oops, have to esacape the escapes
Jul
22
answered Fastest quote-escaping implementation?
Jul
20
answered c# Fastest way to randomly index into an array
Jul
20
asked how did female pronouns become so common as gender-neutral in programming books?
Jul
19
answered private/public class in namespace problem