User Rob Prouse - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:51:27Z http://stackoverflow.com/feeds/user/30827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522377#522377 5 Answer by Rob Prouse for What SQL coding standard do you follow? Rob Prouse 2009-02-06T22:01:04Z 2009-02-06T22:01:04Z <p>If you google, there are plenty of coding standards out there. For example,</p> <p><a href="http://www.nyx.net/~bwunder/dbChangeControl/standard.htm" rel="nofollow">Database Coding Standard and Guideline</a></p> <p>and </p> <p><a href="http://blog.sqlauthority.com/2007/06/06/sql-server-database-coding-standards-and-guidelines-complete-list-download/" rel="nofollow">SQL SERVER Database Coding Standards and Guidelines Complete List</a></p> http://stackoverflow.com/questions/521591/setting-culture-language-in-richtextbox-wpf/521607#521607 1 Answer by Rob Prouse for Setting Culture / Language in RichTextBox WPF Rob Prouse 2009-02-06T18:40:53Z 2009-02-06T18:40:53Z <p>Have you tried setting the current thread's culture to the one you want? Most stuff in .NET takes the culture from the thread.</p> <pre><code>Thread.CurrentThread.CurrentCulture = new Culture( "es-PE" ); Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture; </code></pre> http://stackoverflow.com/questions/516788/getting-current-gmt-time-in-c-net/516825#516825 0 Answer by Rob Prouse for Getting current GMT time in C# (.Net) Rob Prouse 2009-02-05T17:01:31Z 2009-02-05T17:01:31Z <p>If your system time is not right, nothing that you get out of the DateTime class will help. Your system can sync the time with time servers though, so if that is turned on, the various DateTime UTC methods/properties will return the correct UTC time.</p> http://stackoverflow.com/questions/513469/login-with-admin-user-to-some-domain-and-copy-files-client-machines-with-c/513507#513507 2 Answer by Rob Prouse for Login with Admin user to some domain and copy files client machines with C# Rob Prouse 2009-02-04T21:44:41Z 2009-02-05T01:23:05Z <p>You can switch privileges when starting the program from itself or from another program. You can do this with two programs, one that runs as the user account and then launches your privileged application. (or launch itself with a different command line to indicate the different run-mode.)</p> <p>To launch a program in C# as a different user, do this,</p> <pre><code>// Create a secure version of the password SecureString pass = new SecureString(); foreach ( char c in _pass.Text ) { pass.AppendChar( c ); } Process process = Process.Start( "PrivilegedProgram.exe", _arguments, _user.Text, pass, _domain.Text ); </code></pre> http://stackoverflow.com/questions/507156/can-i-make-an-apache-running-on-windows-case-sensitive/507256#507256 1 Answer by Rob Prouse for Can I make an Apache running on Windows case-sensitive? Rob Prouse 2009-02-03T14:21:29Z 2009-02-03T14:21:29Z <p>As far as I know you can't, but I will watch this question for other answers.</p> <p>As a workaround, you say that you must develop on Windows. What about installing Linux in a Virtual PC. There are several free VM programs like <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a> and <a href="https://www.microsoft.com/windows/downloads/virtualpc/default.mspx" rel="nofollow">Microsoft Virtual PC</a>. That way, you can match your development environment to your deployment environment.</p> <p>Beyond that, I find that it is best to just make sure you use lowercase for everything, minimizing mistakes.</p> http://stackoverflow.com/questions/505059/where-is-the-best-place-to-download-accurate-lat-long-alt-data/505126#505126 3 Answer by Rob Prouse for Where is the best place to download accurate lat/long/alt data? Rob Prouse 2009-02-02T21:53:40Z 2009-02-02T21:53:40Z <p>You can download the Digital Elevation Model for the US at <a href="http://seamless.usgs.gov/" rel="nofollow">http://seamless.usgs.gov/</a></p> <p>I believe it also has international data, but that is less accurate.</p> http://stackoverflow.com/questions/491890/how-can-i-edit-a-registry-key-with-vb-net-or-vb6/491901#491901 0 Answer by Rob Prouse for How can I edit a registry key with VB.NET or VB6? Rob Prouse 2009-01-29T14:56:49Z 2009-01-29T14:56:49Z <p>You need to use the <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.registry.aspx" rel="nofollow">Registry</a> class in the <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.aspx" rel="nofollow">Microsoft.Win32</a> namespace. Check the docs, it is pretty easy to use.</p> http://stackoverflow.com/questions/491867/net-webbrowser-control-encapsulating-anything-else-but-ie/491889#491889 2 Answer by Rob Prouse for .Net WebBrowser Control encapsulating anything else but IE? Rob Prouse 2009-01-29T14:51:24Z 2009-01-29T14:51:24Z <p>You cannot change which browser SHDocVw encapsulates. Sorry. SHDocVw is part of IE, it does not host IE. <a href="http://msdn.microsoft.com/en-us/library/aa741313(VS.85).aspx" rel="nofollow">See this MSDN article for the IE architecture</a>.</p> http://stackoverflow.com/questions/491555/how-can-i-easily-view-the-contents-of-a-datatable-or-dataview-in-the-immediate-wi/491619#491619 2 Answer by Rob Prouse for How can I easily view the contents of a datatable or dataview in the immediate window Rob Prouse 2009-01-29T13:40:02Z 2009-01-29T13:40:02Z <p>The Visual Studio debugger comes with four standard visualizers. These are the text, HTML, and XML visualizers, all of which work on string objects, and the dataset visualizer, which works for DataSet, DataView, and DataTable objects.</p> <p>To use it, break into your code, mouse over your DataSet, expand the quick watch, view the Tables, expand that, then view Table[0] (for example). You will see something like {Table1} in the quick watch, but notice that there is also a <strong>magnifying glass icon</strong>. Click on that icon and your DataTable will open up in a grid view.</p> http://stackoverflow.com/questions/485024/using-a-dependency-injection-framework-or-write-your-own/485042#485042 14 Answer by Rob Prouse for Using a dependency injection framework or write your own? Rob Prouse 2009-01-27T20:16:33Z 2009-01-27T22:04:22Z <p>IMO, our job is to solve our client's problems, not write dependency injection (or logging, or ORM, etc) frameworks. When a suitable framework exists, in my opinion, you should always use that framework.</p> <p>To add to this, if that framework is open source, then there is no excuse not to use it as you can fix any possible shortcomings.</p> <p>I think that too often we lose site of our objectives. As programmers, we tend to focus on the interesting problems (writing a dependency injection framework for example) and procrastinate on the boring problems (writing yet another CRUD application for a client.) :D</p> http://stackoverflow.com/questions/485039/mysql-insert-where-query/485052#485052 7 Answer by Rob Prouse for MySQL Insert Where query Rob Prouse 2009-01-27T20:18:43Z 2009-01-27T22:00:52Z <p>You use the WHERE clause for UPDATE queries. When you INSERT, you are assuming that the row doesn't exist.</p> <p><strike>In MySQL, if you want to INSERT or UPDATE, you can use the REPLACE query with a WHERE clause. If the WHERE doesn't exist, it INSERTS, otherwise it UPDATES.</strike></p> <p><strong>EDIT</strong></p> <p>I think that Bill Karwin's point is important enough to pull up out of the comments and make it very obvious. Thanks Bill, it has been too long since I have worked with MySQL, I remembered that I had issues with REPLACE, but I forgot what they were. I should have looked it up.</p> <p><em>That's not how MySQL's REPLACE works. It does a DELETE (which may be a no-op if the row does not exist), followed by an INSERT. Think of the consequences vis. triggers and foreign key dependencies. Instead, use INSERT...ON DUPLICATE KEY UPDATE.</em> </p> http://stackoverflow.com/questions/474674/how-do-i-make-a-single-test-project-for-c-and-c/474713#474713 1 Answer by Rob Prouse for How do I make a single test project for C++ and C# Rob Prouse 2009-01-23T21:45:52Z 2009-01-23T21:45:52Z <p>As long as the C++ is fully managed, you can call it from another .NET assembly written in any language.</p> <p>For testing however, I would recommend going with a test framework like <a href="http://nunit.org/index.php" rel="nofollow">NUnit</a> or <a href="http://mbunit.com/" rel="nofollow">MbUnit</a> instead of writing your own in a console application. They will provide you with a much more robust testing environment.</p> http://stackoverflow.com/questions/474679/capture-console-exit-c/474697#474697 0 Answer by Rob Prouse for Capture console exit C# Rob Prouse 2009-01-23T21:40:58Z 2009-01-23T21:40:58Z <p>There is for WinForms apps;</p> <pre><code>Application.ApplicationExit += CleanupBeforeExit; </code></pre> <p>For Console apps, try</p> <pre><code>AppDomain.CurrentDomain.DomainUnload += CleanupBeforeExit; </code></pre> <p>But I am not sure at what point that gets called or if it will work from within the current domain. I suspect not.</p> http://stackoverflow.com/questions/473679/tdd-help-with-writing-testable-class/473712#473712 2 Answer by Rob Prouse for TDD: Help with writing Testable Class Rob Prouse 2009-01-23T17:07:46Z 2009-01-23T17:07:46Z <p>Instead of making the setters public, make them internal and then make your test assembly InternalsVisibleTo in your main project. That way, your tests can see your internal members, but no-one else can.</p> <p>In you main project, put something like this;</p> <pre><code>[assembly: InternalsVisibleTo( "UnitTests" )] </code></pre> <p>Where UnitTests is the name of your test assembly.</p> http://stackoverflow.com/questions/472959/c-how-to-access-an-excel-cell/472981#472981 4 Answer by Rob Prouse for c# How to access an excel cell? Rob Prouse 2009-01-23T14:03:05Z 2009-01-23T17:01:07Z <p><strike>If you are trying to automate Excel, you probably shouldn't be opening a Word document and using the Word automation ;)</strike></p> <p>Check this out, it should get you started,</p> <p><a href="http://www.codeproject.com/KB/office/package.aspx" rel="nofollow">http://www.codeproject.com/KB/office/package.aspx</a></p> <p>And here is some code. It is taken from some of my code and has a lot of stuff deleted, so it doesn't do anything and may not compile or work exactly, but it should get you going. It is oriented toward reading, but should point you in the right direction.</p> <pre><code>Microsoft.Office.Interop.Excel.Worksheet sheet = newWorkbook.ActiveSheet; if ( sheet != null ) { Microsoft.Office.Interop.Excel.Range range = sheet.UsedRange; if ( range != null ) { int nRows = usedRange.Rows.Count; int nCols = usedRange.Columns.Count; foreach ( Microsoft.Office.Interop.Excel.Range row in usedRange.Rows ) { string value = row.Cells[0].FormattedValue as string; } } } </code></pre> <p>You can also do</p> <pre><code>Microsoft.Office.Interop.Excel.Sheets sheets = newWorkbook.ExcelSheets; if ( sheets != null ) { foreach ( Microsoft.Office.Interop.Excel.Worksheet sheet in sheets ) { // Do Stuff } } </code></pre> <p>And if you need to insert rows/columns</p> <pre><code>// Inserts a new row at the beginning of the sheet Microsoft.Office.Interop.Excel.Range a1 = sheet.get_Range( "A1", Type.Missing ); a1.EntireRow.Insert( Microsoft.Office.Interop.Excel.XlInsertShiftDirection.xlShiftDown, Type.Missing ); </code></pre> http://stackoverflow.com/questions/472961/c-which-event-should-i-use-to-display-data-in-a-textbox-when-i-select-an-item-in/472969#472969 0 Answer by Rob Prouse for C# Which Event should I use to display data in a textbox when I select an item in a listbox? Rob Prouse 2009-01-23T13:59:37Z 2009-01-23T13:59:37Z <p>Sorry, don't know the exact name of the event off the top of my head, but is something like <strong>SelectedItemChanged</strong> that you are looking for.</p> http://stackoverflow.com/questions/452019/php-image-include-problem/452047#452047 0 Answer by Rob Prouse for php image include problem Rob Prouse 2009-01-16T21:15:54Z 2009-01-16T21:15:54Z <p>It looks to me that you are using the path on your machine as opposed to the server path and that it is outside of your web root.</p> <p>Move the image to an images directory within your website and reference it with an absolute path.</p> <pre><code>&lt;img src="/images/Harbourheader.gif" /&gt; </code></pre> http://stackoverflow.com/questions/451993/how-can-i-dynamically-update-a-variable-in-plain-html-files-in-on-windows-web-ser/452015#452015 0 Answer by Rob Prouse for How can I dynamically update a variable in plain html files in on windows web server. Rob Prouse 2009-01-16T21:07:22Z 2009-01-16T21:07:22Z <p>Assuming you want to keep them in HTML and not some dynamic language (which sounds like a good idea), I would convert them all to use server side includes, modify all of the HTML files (a one time hit) to include the copyright information and then put that in one include file. Then, each year you only need to update one file and that could be easily automated.</p> http://stackoverflow.com/questions/451967/what-do-the-numbers-reported-by-the-windows-tracert-mean/451989#451989 1 Answer by Rob Prouse for What do the numbers reported by the Windows TraceRt Mean Rob Prouse 2009-01-16T21:01:33Z 2009-01-16T21:01:33Z <p>If I remember right, tracert does three pings (actually not pings to the device, but effectively the same) to each device along the route and the the three times are just three different ping times to each device. For example, if you find a device in the list with one or more timeouts, that device is probably overloaded and causing the problems.</p> http://stackoverflow.com/questions/444857/msbuild-msb4075/444862#444862 2 Answer by Rob Prouse for MSBUILD MSB4075 Rob Prouse 2009-01-14T21:57:50Z 2009-01-14T21:57:50Z <p>It sounds like you converted the solution, but not the project file. Maybe the project file was unloaded when you did the conversion? At any rate, try opening the project file in Visual Studio and let it convert it.</p> http://stackoverflow.com/questions/440855/ideal-button-size/440862#440862 11 Answer by Rob Prouse for Ideal button Size Rob Prouse 2009-01-13T21:30:28Z 2009-01-13T21:30:28Z <p>I vote for buttons that do not get wider as the form gets wider. Personally, I think it is just ugly and makes the buttons harder to use because your eye is no longer drawn to the text in them.</p> <p>Also, with 16:9 and 16:10 ratio monitors becoming popular, those buttons will be abnormally wide ;)</p> http://stackoverflow.com/questions/440277/how-to-asynchronously-fetch-autocomplete-data-for-a-textbox 3 How to Asynchronously fetch AutoComplete data for a TextBox? Rob Prouse 2009-01-13T18:56:14Z 2009-01-13T21:10:32Z <p>Our <strong>WinForms</strong> application does lazy loading of the data for auto complete of a textbox. The pseudocode for this is as follows;</p> <ol> <li>User types in TextBox</li> <li>On typing pause, determine if we need to fetch the auto complete data</li> <li>In worker thread, contact the server and fetch data</li> <li>Invoke back to the UI thread</li> <li>Set <code>textBox.AutoCompleteCustomSource = fetchedAutoCompleteStringCollection;</code></li> <li>Force the textbox to drop down it's autocomplete dropdown.</li> </ol> <p>I am currently having trouble with #6. As a hack, I do the following to simulate a keypress which works, but it does not work in all situations.</p> <pre><code> // This is a hack, but the only way that I have found to get the autocomplete // to drop down once the data is returned. textBox.SelectionStart = textBox.Text.Length; textBox.SelectionLength = 0; SendKeys.Send( " {BACKSPACE}" ); </code></pre> <p>There must be a better way. I can't believe that I am the only person fetching auto complete data asynchronously. How should I be doing this?</p> <p><strong>EDIT:</strong> A Win32 call to cause the Auto Complete to dropdown would be acceptable. I don't mind PInvoking out if I have to.</p> http://stackoverflow.com/questions/440588/how-do-i-get-all-strings-from-a-form-for-localization/440635#440635 1 Answer by Rob Prouse for How do I get all strings from a Form for localization? Rob Prouse 2009-01-13T20:21:05Z 2009-01-13T20:21:05Z <p>I you are doing localization the same way as I am, you just go into the Properties directory of your project and open the <strong>Resources.resx</strong> file in a text editor. In that, the strings are in XML nodes that look like this;</p> <pre><code>&lt;data name="ErrorLaunching" xml:space="preserve"&gt; &lt;value&gt;Error launching Ivara&lt;/value&gt; &lt;comment&gt;MessageBox text in LogonForm&lt;/comment&gt; &lt;/data&gt; </code></pre> <p>Once you get them translated, they go into similarly named files like <strong>Resources.fr.resx</strong> for French.</p> <p>You can also open <strong>Resources.resx</strong> in Visual Studio, select Strings and copy/paste into Excel.</p> <p>Or, by your description, you might be doing localization on a per form basis. In that case, the above applies, except that it is the Resx file for your form that you are interested in.</p> http://stackoverflow.com/questions/440456/why-would-i-use-reflection-in-a-business-app/440466#440466 9 Answer by Rob Prouse for Why would I use Reflection in a business app? Rob Prouse 2009-01-13T19:37:53Z 2009-01-13T20:11:11Z <p>One common scenario is to reflect through assemblies to find, load and use plugins for your application.</p> <p>We also use reflection extensively in the Factory Pattern. Object creation methods can be marked with attributes with are found with reflection and then created by our factory.</p> <p>In fact, any use of attributes uses reflection. If you create your own attributes, you will use reflection to find them on your code.</p> <p>We also use reflection to generate code. We have a client/server application that uses .NET remoting. We mark the calls into our server with our own attributes and then use reflection to find them and generate all of our communications code, an assembly for the server and one for the client. It saves all of the rote work of manually adding in the same logging, timing and remoting code everywhere.</p> http://stackoverflow.com/questions/440269/whats-a-good-alternative-windows-console/440301#440301 2 Answer by Rob Prouse for What's a good alternative Windows console? Rob Prouse 2009-01-13T19:01:05Z 2009-01-13T19:01:05Z <p>You can do most of this with the Windows console. </p> <ol> <li>Open a console window</li> <li>Click on the Icon in the upper left</li> <li>Click Defaults</li> <li>Under Options check QuickEdit Mode and Insert Mode</li> <li>Under Font, select a size and font you like</li> <li>Under Layout, make the window bigger</li> <li>Change the colors if you like.</li> </ol> <p>This will give you everything you asked for.</p> http://stackoverflow.com/questions/439931/why-are-manholes-covers-round/439943#439943 0 Answer by Rob Prouse for Why are manholes covers round? Rob Prouse 2009-01-13T17:32:19Z 2009-01-13T17:32:19Z <p>If they were square, they could be turned diagonally and fall into the hole. They are round so that is not possible.</p> http://stackoverflow.com/questions/439686/implementing-a-tree-in-c-managing-parent-child/439741#439741 1 Answer by Rob Prouse for Implementing a tree in c# managing parent-child Rob Prouse 2009-01-13T16:43:49Z 2009-01-13T16:43:49Z <p>Go with number 1, but make your Children property IEnumerable so that users can't add to the collection.</p> http://stackoverflow.com/questions/436867/sniffing-data-from-a-switch/436919#436919 1 Answer by Rob Prouse for Sniffing data from a switch Rob Prouse 2009-01-12T20:33:09Z 2009-01-12T20:33:09Z <p>Since this is an unmanaged switch, the only way that I can think of is to temporarily put a hub between the switch and one of the devices you want to monitor, then plug a laptop into that hub to do the monitoring. The laptop should now see all traffic between the device and the switch.</p> <p>This is pretty easy since you can do it at the location of one of the devices. You just need a hub, two more lengths of CAT cable and the computer you are using to monitor with.</p> http://stackoverflow.com/questions/436733/disaster-recovery-template-documents/436788#436788 1 Answer by Rob Prouse for Disaster Recovery Template Documents Rob Prouse 2009-01-12T19:56:12Z 2009-01-12T19:56:12Z <p>IBM offers one at <a href="http://publib.boulder.ibm.com/iseries/v5r2/ic2924/index.htm?info/rzaj1/rzaj1sampleplan.htm" rel="nofollow">http://publib.boulder.ibm.com/iseries/v5r2/ic2924/index.htm?info/rzaj1/rzaj1sampleplan.htm</a></p> <p>A google search of "disaster recovery template" will find many others...</p> http://stackoverflow.com/questions/436688/difference-between-php-echo-sessionid-and-sessionid/436706#436706 3 Answer by Rob Prouse for Difference between <?php echo $session_id ?> and <?= $session_id ?> Rob Prouse 2009-01-12T19:36:26Z 2009-01-12T19:36:26Z <p>As far as I know, they are functionally equivalent except the second can be disabled in configurations so isn't as portable.</p> http://stackoverflow.com/questions/522286/weird-constants/522322#522322 Comment by Rob Prouse on Weird constants Rob Prouse 2009-02-06T21:49:16Z 2009-02-06T21:49:16Z I like GRAVITY_DEATH_STAR_I :D http://stackoverflow.com/questions/513469/login-with-admin-user-to-some-domain-and-copy-files-client-machines-with-c/513507#513507 Comment by Rob Prouse on Login with Admin user to some domain and copy files client machines with C# Rob Prouse 2009-02-05T01:24:11Z 2009-02-05T01:24:11Z You're right, I forgot about impersonation. Since we use impersonation in the same program that we allow you to switch users in (from the above code) I should have remembered. http://stackoverflow.com/questions/440812/pdf-download-on-my-web-doesnt-work-on-firefox Comment by Rob Prouse on .pdf download on my web doesnt work on firefox Rob Prouse 2009-01-13T21:13:30Z 2009-01-13T21:13:30Z Once again, please provide more information. What happens in Firefox? Do you have a PDF plugin installed? Is Adobe installed? http://stackoverflow.com/questions/440797/validating-html Comment by Rob Prouse on validating HTML Rob Prouse 2009-01-13T21:12:28Z 2009-01-13T21:12:28Z We will need more information. Edit the question, add which validator you are using, the error it is giving and copy the HTML that is not validating. Make sure you format correctly too ;) http://stackoverflow.com/questions/440456/why-would-i-use-reflection-in-a-business-app/440466#440466 Comment by Rob Prouse on Why would I use Reflection in a business app? Rob Prouse 2009-01-13T21:09:45Z 2009-01-13T21:09:45Z I think that depends on how you define a line-of-business app ;-) If it is an app developed internally, then probably not, but if it is an externally developed app for business customers, then it is highly likely. Our Enterprise app has plugins to interface with other Enterprise apps. http://stackoverflow.com/questions/440588/how-do-i-get-all-strings-from-a-form-for-localization/440654#440654 Comment by Rob Prouse on How do I get all strings from a Form for localization? Rob Prouse 2009-01-13T20:32:28Z 2009-01-13T20:32:28Z I just did this with a simple test project in VS2008 Team System and it worked as expected. http://stackoverflow.com/questions/440588/how-do-i-get-all-strings-from-a-form-for-localization/440654#440654 Comment by Rob Prouse on How do I get all strings from a Form for localization? Rob Prouse 2009-01-13T20:31:14Z 2009-01-13T20:31:14Z This should be a comment. All you should need to do is set the form to Localizable and save it. Then if you look in the designer, in the IntitializeComponent() method, you should see a line like this; resources.ApplyResources( this, &quot;$this&quot; ); If so, the Resx should have all your data in it. http://stackoverflow.com/questions/436867/sniffing-data-from-a-switch Comment by Rob Prouse on Sniffing data from a switch Rob Prouse 2009-01-12T20:37:24Z 2009-01-12T20:37:24Z I assume that this is being closed as not-programming related, but as I have run into this exact problem many times as a programmer, I vote to keep it open. Monitoring network traffic is just another layer of debugging IMHO. http://stackoverflow.com/questions/428494/is-it-possible-to-use-showdialog-without-blocking-all-forms/428517#428517 Comment by Rob Prouse on Is it possible to use ShowDialog without blocking all forms? Rob Prouse 2009-01-09T15:47:23Z 2009-01-09T15:47:23Z All UI does not have to run on the same thread, you just need to be sure that you access a form's UI properties on that form's UI thread. So, if A and B are running in different threads, if A accesses B, it will need to do an Invoke. In our app, all forms run on their own threads. http://stackoverflow.com/questions/428317/open-source-project-suggestion-where-to-go-from-here/428362#428362 Comment by Rob Prouse on Open Source Project Suggestion, where to go from here. Rob Prouse 2009-01-09T15:40:30Z 2009-01-09T15:40:30Z True, I was just mentioning what works for me as an example of the services out there. http://stackoverflow.com/questions/425325/using-c-how-can-i-set-a-url-property-to-an-html-file-in-my-project/425336#425336 Comment by Rob Prouse on Using C#, how can I set a Url property to an HTML file in my project? Rob Prouse 2009-01-08T20:59:41Z 2009-01-08T20:59:41Z And it is more complete, therefore it deserves the recognition ;) http://stackoverflow.com/questions/425242/is-micro-code-generation-considered-harmful/425264#425264 Comment by Rob Prouse on Is Micro Code Generation Considered Harmful? Rob Prouse 2009-01-08T19:29:59Z 2009-01-08T19:29:59Z At least working for state gov, your job is probably secure through this downturn ;) http://stackoverflow.com/questions/425242/is-micro-code-generation-considered-harmful/425264#425264 Comment by Rob Prouse on Is Micro Code Generation Considered Harmful? Rob Prouse 2009-01-08T18:54:53Z 2009-01-08T18:54:53Z Knowing that, it wasn't hard to find. It does look interesting, but what is that weird VB you are generating :P http://stackoverflow.com/questions/425207/how-do-i-install-deploy-build-my-visual-c-application-so-its-available-to-all-u/425351#425351 Comment by Rob Prouse on How do I install/deploy/build my Visual C# application so it's available to all users? Rob Prouse 2009-01-08T18:49:18Z 2009-01-08T18:49:18Z Sure, although you might want to look at the Nullsoft installer. It is pretty easy to use and will give you a better user experience. http://stackoverflow.com/questions/425207/how-do-i-install-deploy-build-my-visual-c-application-so-its-available-to-all-u/425247#425247 Comment by Rob Prouse on How do I install/deploy/build my Visual C# application so it's available to all users? Rob Prouse 2009-01-08T18:38:05Z 2009-01-08T18:38:05Z If you are seeing Project File and Project Folder, you are clicking on the C# project file. What I said was for the setup project. For Click-Once, it is always installed per user.