User Steve - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:38:11Z http://stackoverflow.com/feeds/user/15526 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81556/launch-infopath-form-with-parameter/82291#82291 1 Answer by Steve for Launch Infopath form with parameter Steve 2008-09-17T11:51:08Z 2008-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#82078 0 Answer by Steve for Are .NET languages really making any kind of dent in consumer desktop applications? Steve 2008-09-17T11:12:27Z 2008-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#81692 135 Answer by Steve for What's Your Motto As A Developer/Programmer? Steve 2008-09-17T10:11:04Z 2008-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#81861 Comment by Steve on Is it ethical/legal to bring your favorite code with you after a job? Steve 2008-09-17T11:02:24Z 2008-09-17T11:02:24Z I 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.