34,493 reputation
961102
bio website sixlettervariable.blogspot.co…
location North Carolina
age 29
visits member for 4 years, 9 months
seen 8 hours ago
stats profile views 4,604

Too much work these days. Time to go back to school.


12h
comment Special characters in regex
That's a bizarre Regex. It duplicates . and , multiple times, and I'm not sure if those characters were intended to be allowed. Also A-z gets some unintended characters, or maybe intended characters...nobody can know without a comment.
13h
answered Regex to match a hyphen in a string 0 or 1 times
15h
revised Rename files name in a folder
removed extraneous Directory.ToString and changed to DirectoryName
16h
comment Regular expressions : how to find
Obviously a problem with tmprect.
Jun
14
comment Cast List<object> to unknown T[] using reflection
Are they actually all int's? Are they something which you could convert to an int? Why do you not know the actual types at this point in the code? Reflection should be rarely needed, so the answers to all of these will help answer your question.
Jun
12
comment TimeSpan between two DateTimes
I really don't follow this at all. span.Hours doesn't work for what reason?
Jun
12
revised Confused by squaring macro SQR in c
edited tags
Jun
12
comment Confused by squaring macro SQR in c
This is the C-preprocessor. You could achieve the same behavior if you used the C-preprocessor with any language.
Jun
12
comment Google Translate V2 cannot hanlde large text translations from C#
@sm.abdullah: good catch.
Jun
12
reviewed Approve suggested edit on Google Translate V2 cannot hanlde large text translations from C#
Jun
12
comment _beginthread/ex C3861 - identifier not found
The error seems self explanatory, and is unrelated to this question. You can ask a new question to get that bit solved.
Jun
12
comment Do I need to use multiple using statements?
Related/dupes: stackoverflow.com/questions/3544758/… stackoverflow.com/questions/2284938/… stackoverflow.com/questions/16861329/…
Jun
12
revised Do I need to use multiple using statements?
edited tags
Jun
12
answered _beginthread/ex C3861 - identifier not found
Jun
12
revised How to display ObserveableCollection<T> in ListBox
less scrolly, more looky
Jun
12
comment How to display ObserveableCollection<T> in ListBox
Why bind to the selected item for the edit button? If you intend for it to edit the current item, just use CommandParameter="{Binding}" which is a shortcut for the current item being templated (-ish).
Jun
12
comment How to display ObserveableCollection<T> in ListBox
You only change the RelativeSource of the bindings which need it as @dowhilefor has pointed out. As a good rule of thumb, if you play with DataContext you're likely doing something wrong.
Jun
12
revised How do I handle excess characters read from cin?
No idea...best effort attempt at making the question and code legible.
Jun
12
comment How to display ObserveableCollection<T> in ListBox
Why have you changed their data context?
Jun
12
revised Capture mouse clicks on text boxes in a Win32 game
Refactored text and title