User Steve - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T16:38:11Zhttp://stackoverflow.com/feeds/user/15526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81556/launch-infopath-form-with-parameter/82291#822911Answer by Steve for Launch Infopath form with parameterSteve2008-09-17T11:51:08Z2008-09-17T11:51:08Z<p>Play around with System.Diagnostics.ProcessStartInfo which allows you to specify a file you wish to open and also allows you to specify arguments.</p>
<p>You can then use Process.Start(ProcessStartInfo) to kick off the process. The framework will determine which application to run based on the file specified in the ProcessStartInfo.</p>
<p>I don't have Infopath installed so I unfortunately can't try it out. But hopefully it helps you out a little.</p>
http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application/82078#820780Answer by Steve for Are .NET languages really making any kind of dent in consumer desktop applications? Steve2008-09-17T11:12:27Z2008-09-17T11:12:27Z<p>Well there are apps such as
<a href="http://www.gnome.org/projects/tomboy/" rel="nofollow">Tomboy</a> and <a href="http://beagle-project.org/Main_Page" rel="nofollow">Beagle</a> which are available as part of some Linux distros so I'm not sure if they count as high street consumer applications.
Come to think of it I'm not really that aware of any other "non-enterprise" applications written in .NET languages.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81692#81692135Answer by Steve for What's Your Motto As A Developer/Programmer?Steve2008-09-17T10:11:04Z2008-09-17T10:11:04Z<p>Keep it simple.</p>
http://stackoverflow.com/questions/81797/is-it-ethical-legal-to-bring-your-favorite-code-with-you-after-a-job/81861#81861Comment by Steve on Is it ethical/legal to bring your favorite code with you after a job?Steve2008-09-17T11:02:24Z2008-09-17T11:02:24ZI most definitely agree. Most of the time it's not really the code you want, well kind of...
It's the solution to that particular problem, so it's nice to have notes on how to approach the problem without having actual hard answers. You always come up with something smarter the next time round.