Stu

3,162
Reputation
129 views

Registered User

Name Stu
Member for 1 year
Seen yesterday
Website
Location US
Age 35
Programming for 25 years. Feeling old. Main expertise: SQL, C#.
Nov
17
accepted Can SQL table have multiple columns with primary key?
Nov
17
answered Can SQL table have multiple columns with primary key?
Nov
17
comment Get video dimension in C#
What kind of video? What format? Where is it? Are you merely asking to find the bitrate of an arbitrary video file?
Nov
17
revised VBA to C# Value Statement
Add tag.
Nov
10
comment What is the command-line for rar and unrar?
As a general rule, don't shell out to other applications (ESPECIALLY ones that don't come with Windows) unless you really, really have to. See Blaenk's answer.
Nov
10
revised What is the command-line for rar and unrar?
Spelling
Nov
10
comment how to programatically identify a file as a .NET assembly?
DON'T DO STUFF LIKE THIS. It is not guaranteed to work in any way, shape or form in the future.
Nov
5
revised Architecture and patterns for developing a custom GUI designer via C# & WinForms.
added 1 characters in body
Nov
5
comment Class Design: Serialize Within Domain Object or Helper Class
Objects to be serialized need to know what to serialize (and in what actual format), not where to put it or how; that's in the serializer. The trick is to stay agnostic in between. That's where things like SerializationInfo come in as a vehicle.
Nov
5
answered Class Design: Serialize Within Domain Object or Helper Class
Nov
5
answered tsql to know if the server has integration,reporting,analysis,notification services
Nov
4
revised vb.net: Get to resources of a referenced project
typos
Nov
4
comment .NET graphics Ghosting
As a random aside, instead of: control.GetType.ToString = "Glass.GlassButton" use TypeOf control Is Glass.GlassButton
Nov
3
revised Parameters in SSRS
typo
Oct
7
answered Possible syntax for multi-type catch blocks in C#?
Oct
7
comment “Undo” feature in Visual Studio 2008 stops working
Have you tried disabling Resharper? Which version?
Oct
7
comment Check if an object has focus
JavaScript in C#?
Oct
7
comment How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ?
This wouldn't have anything to do with crazyengineers.com/forum/… now would it?
Aug
6
awarded  Yearling
Jul
13
accepted What is the best way to store byte array in SQL database using NHibernate?
Jul
8
answered ASP code to execute Stored Proc
Jul
8
answered What is the best way to store byte array in SQL database using NHibernate?
Jul
8
awarded  Disciplined
Jun
24
accepted How can I change a Windows user’s regional settings/date format?
Jun
22
answered Singleton Design
Jun
19
answered How to change the default visual studio configurations?
Jun
19
comment Ignore Code Analysis for SqlMetal generated files
Are the SqlMetal classes actually marked as being generated? See msdn.microsoft.com/en-us/library/…
Jun
19
comment Are Singletons really that bad?
3 people recommending the same book in under 5 minutes must be a record. And a hint :-)
Jun
19
answered Are Singletons really that bad?
Jun
19
comment C# Can I show an expandable tree like view in a datagrid?
...or try the free Express edition.
Jun
19
awarded  Commentator
Jun
19
comment Time-series and correlation strategies
How are the time-value pairs stored?
Jun
19
comment How can I change a Windows user’s regional settings/date format?
I understand. I've added registry keys to my answer below.
Jun
19
revised How can I change a Windows user’s regional settings/date format?
Add registry
Jun
18
revised Help with Correlated Queries in SQL
Added sas tag
Jun
18
answered How can I change a Windows user’s regional settings/date format?
Jun
17
comment C# - Export ListView to CSV
Please specify framework. Is this WinForms?
Jun
17
answered how to merge two BST’s efficiently?
Jun
17
answered PDO Stored Procedure return value
Jun
15
accepted LINQ: Distinct values
Jun
15
answered LINQ: Distinct values
Jun
15
answered Tool to export result set from SQL to Insert statements?
Jun
15
answered Is it possible to temporarily duplicate and modify rows on the fly in an SQL SELECT query?
Jun
15
answered C# Class/Object visualisation software
Jun
10
answered Browser Cache API for non IE browsers
Jun
10
answered Run-time error ‘70’: Permission denied
Jun
10
comment Generation of a .cpp file
What does the cpp need to do? What is the .cfg file like? Why are you doing this?
Jun
9
comment Is fully qualified naming vs the using directive simply a matter of opinion?
I strongly disagree. Reading from left-to-right, I should know by the time I hit '=' what the variable is and what it is called. I prefer to accomplish both by giving the variable a meaningful name and making it as short as possible. Also, consistently using var makes it easy to swoop through code and picking out the variable declarations at a glance.
Jun
9
comment What are my options for C++ DLL to call a C# DLL?
Is there any way you can use managed C++ and avoid COM altogether?
Jun
9
answered Is fully qualified naming vs the using directive simply a matter of opinion?