Arnshea
|
Registered User
|
Fan of languages artificial and natural.
Computer hardware hobbyist. Producer and consumer of software. Current languages: C#, C++, VB Previous languages: C, PERL, Java Other languages: scheme, fortran, cobol, bash, tcsh, dos batch files Favorite OS: Windows Vista x64 Other OS: Debian Linux Mobile Device: AT&T TILT (custom ROM flashed) running Windows Mobile 6.5 Most of my non-work related computing is done on a Qosmio X305-Q705 laptop. Favorite Coffee Cup: One that says RTFM |
|
Nov 11 |
accepted | How to detect whether I need to install VCRedist ? |
|
Aug 28 |
accepted | Database design question: discriminatory column vs foreign key |
|
Aug 28 |
accepted | Managing multiple configuration files in Visual Studio for a C# project |
|
Aug 4 |
accepted | Statistical calculations in SQL Server |
|
Jul 16 |
comment |
Use of var keyword in C# I'd hate to inherit 100k lines of source with no documentation and liberal use of var. Especially if you combine var with less-than-helpful variable names. I could see it being helpful when illustrating a point (or dealing with anonymous types) but in production code? |
|
Jul 12 |
comment |
Why Do You Use Delphi? You can catch exceptions through Debug -> Exceptions; check any exception you want to cause a break. |
|
Jul 7 |
accepted | How to marshal C++/CLI array of struct to unmanaged C++ |
|
Jul 7 |
comment |
Weak events in .NET? You have to keep the reference and remove it from the invocation lists manually. |
|
Jul 6 |
answered | Weak events in .NET? |
|
Jul 6 |
answered | Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC? |
|
Jul 3 |
comment |
Underused features of Windows batch files You can script it with reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 1 /f |
|
Jul 2 |
answered | Mysterious, ghost-like, impossible-to-find TreeNode text |
|
Jul 2 |
comment |
C# Custom Xml Serialization heh, hey i'm a sql junkie too though I've stayed away from the more exotic features of xpath... :) |
|
Jul 2 |
answered | C# Custom Xml Serialization |
|
Jul 2 |
comment |
When have you been put on a new project that was far more challenging than anything you’d worked on before? and oh yeah, i forgot, neural networks. kind of a weird ommission since those are the ones I used most in grad school. Maybe it's the brain blotting out painful memories. |
|
Jul 2 |
comment |
When have you been put on a new project that was far more challenging than anything you’d worked on before? @Kris Yeah it's easy to get lost in the math but for applying it you can usually all-but ignore the math. Most of the work is figuring out how to model your parameters. Then massaging your data into a form the library can use. |
|
Jul 2 |
answered | What are good/bad ways of providing help for an application..? |
|
Jul 2 |
comment |
TSQL Group By with an “OR” ? @Quassnoi, good point, he'd have to handle nulls, so use SQL Servers equivalent of NVL - e.g., UserOR(nvl(hphone, false), nvl(email, false)). Or exclude those in the where clause... |
|
Jul 2 |
comment |
When have you been put on a new project that was far more challenging than anything you’d worked on before? They all sound a lot sexier than they are. If you try not to get too far into the weeds once you get the basic approach you can find open source or commercial libraries that you can pass your data to and get the recommended parameters. |
|
Jul 2 |
answered | When have you been put on a new project that was far more challenging than anything you’d worked on before? |
|
Jul 2 |
comment |
TSQL Group By with an “OR” ? btw, it'd have to be in the select list and in the group by clause. And the function would have to be deterministic but OR is deterministic so.... |
|
Jul 2 |
comment |
TSQL Group By with an “OR” ? You might be able to hack something together with a user defined function, e.g., UserOR(hphone, email) then include that in the GROUP BY |
|
Jul 2 |
answered | TSQL Group By with an “OR” ? |
|
Jul 2 |
comment |
Call A Windows Service from a remote computer the net services suite of commands also usually support remote targets |
|
Jul 2 |
answered | Call A Windows Service from a remote computer |
|
Jul 1 |
revised |
Possible to append a ActiveX control to a page using javascript? added progid and example |
|
Jul 1 |
comment |
Value assignment for reference type in C# Have you considered the Observer/Observable pattern? Instead of multiple classes sharing a reference to A they could instead handle events from A (e.g., OnPropertyChanged). When you deserialized A you could copy it's invocation list to maintain the connection... |
|
Jul 1 |
comment |
C# Outputting the reference of an Object woah, what he said! |
|
Jun 30 |
accepted | C# Outputting the reference of an Object |
|
Jun 30 |
accepted | Continuing Inserts in Oracle when exception is raised |
|
Jun 30 |
answered | XmlSerializer with parameterless constructor with no public properties or fields… Is it possible? |
|
Jun 30 |
answered | Possible to append a ActiveX control to a page using javascript? |
|
Jun 30 |
answered | Continuing Inserts in Oracle when exception is raised |
|
Jun 30 |
comment |
In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me? I got burned by this a while ago and thought it was sheer lunacy too. Fortunately they added a way to specify the rounding that all of us learned in grade-school; MidPointRounding. |
|
Jun 30 |
answered | Value assignment for reference type in C# |
|
Jun 30 |
comment |
C# Outputting the reference of an Object if you're looking for an object identity you might be able to use GetHashCode() |
|
Jun 30 |
comment |
What is dynamic programming? Good answer, would only add a mention about optimal sub-structure (e.g., every subset of any path along the shortest path from A to B is itself the shortest path between the 2 endpoints assuming a distance metric that observes the triangle inequality). |
|
Jun 30 |
answered | C# Outputting the reference of an Object |
|
Jun 30 |
accepted | Typed Datasets: a Good choice or Bad - Why one should use or not use Typed datasets in their applications ? |
|
Jun 26 |
comment |
How to access inherited controls in the winforms designer You can't modify the base control while designing the derived control. Not easily anyway. If you made the "empty spaces" public (e.g., EmptyPanel1, EmptyPanel2, ...) then provided your own TypeEditor for them you can at least allow them to set the controls visually. Creating a type editor is a bit of work though. |
|
Jun 25 |
answered | How to access inherited controls in the winforms designer |
|
Jun 19 |
revised |
How can a program be detected as running? edited tags |
|
Jun 19 |
answered | How can a program be detected as running? |
|
Jun 18 |
answered | Outcome of a small C program |
|
Jun 18 |
revised |
How to Display an image next to the cursor when dragging? added WinForms tag |
|
Jun 18 |
answered | How Proxy gets created for SAO when client and server share same interface in Remoting |
|
Jun 18 |
answered | Managing multiple configuration files in Visual Studio for a C# project |
|
Jun 18 |
answered | Ignore NAnt warning |
|
Jun 18 |
answered | Interactive chart with timeline for WinForms .NET |
|
Jun 18 |
answered | Trace Filtering |
