2,061 reputation
1922
bio website
location Georgia
age 30
visits member for 3 years, 3 months
seen 10 mins ago
stats profile views 2,174

3m
comment My method doesn't end
You have an infinite loop which never returns false.
5m
comment Visual Studio 2010 Setup Dual Runtime DLLs
You are aware that the Setup Project feature within Visual Studdio was so bad ( it has a ton of bugs ) that they simply dropped it in the current version of Visual Studio. I suggest you look at alternatives because your ability to customize the install will be nearly nill.
7m
comment understanding COM exception
@StuckOnSimpleThings - Update your question with that information. What version of Office are you using. What line exactly throws this exception?
6h
comment function runs on scanner emulator, but not scanner itself (C#, SQL)
Even if you do your idea you have to resolve your connection issue.
6h
comment Remove a user from all Active Directory Groups with C#
I suppose thats possible but you would still have to access the server to get the information which is where the real performance cost is. You might be able to get better performance out of Powershell script. This eliminates the overhead of the .NET framework, which can still be ran from the service, if you wanted.
1d
comment get the format of a string date in c#
@user2089066 - Its not clear what your problem is exactly. What was lost exactly?
1d
reviewed Approve suggested edit on JsonReader Exception in Android while parsing large josn data
1d
reviewed Reject suggested edit on Carrierwave malfunctioning process
1d
reviewed Approve suggested edit on Remove URL Prefix from String
1d
comment check the files MD5 that included in zip files
@user1973003 - If you are not a programmer your unlikely to be able to do this by yourself. You do understand checking the md5 of a compressed file is sort of pointless, considering, most archive programs already display some sort of checksum hash. Checking the md5 of a compressed file will tell you nothing about the intrigity of the file itself, since its a hash of the compressed stream, not the actual file you compressed.
1d
comment Migrating client from wse 3.0 framwork 3.5 to WCF framework 4.0
It should be possible. What have achieved so far in the migration process? Related question: stackoverflow.com/questions/10589561/…
1d
revised How to fix this Base 64 array issue
added 27 characters in body
1d
comment Remove a user from all Active Directory Groups with C#
I don't see anyway to make it "faster" its only going to be as fast as it takes to retrieve the information from the domain server.
1d
comment function runs on scanner emulator, but not scanner itself (C#, SQL)
Look at the server information that is the reason the actual device cannot connect. The emulator works because its on your local machine and thus the server information is valid.
1d
revised Unobscured event gives NullReferenceException
edited tags
1d
comment Per-String function (IDK how it's called)
What logical reason can there be for not using a if else if else conditional statement?
1d
comment multiple simultaneous key press c#
@RoberHarvey - Makes sense, of course logic would point out, bytes are bytes so both shouldn't work. We are just going off the author's word the other one worked, would make more sense, if it didn't.
1d
comment How do I delete a directory recursively
@piter - You have everything you need to implement what you want with the code provided.
1d
comment multiple simultaneous key press c#
@RobertHarvey - That doesn't make sense because both combinations have 6 keys.
1d
reviewed Approve suggested edit on How to build a keyworded tuple?