User Rob Prouse - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T17:51:27Zhttp://stackoverflow.com/feeds/user/30827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522377#5223775Answer by Rob Prouse for What SQL coding standard do you follow?Rob Prouse2009-02-06T22:01:04Z2009-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#5216071Answer by Rob Prouse for Setting Culture / Language in RichTextBox WPFRob Prouse2009-02-06T18:40:53Z2009-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#5168250Answer by Rob Prouse for Getting current GMT time in C# (.Net)Rob Prouse2009-02-05T17:01:31Z2009-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#5135072Answer by Rob Prouse for Login with Admin user to some domain and copy files client machines with C#Rob Prouse2009-02-04T21:44:41Z2009-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#5072561Answer by Rob Prouse for Can I make an Apache running on Windows case-sensitive?Rob Prouse2009-02-03T14:21:29Z2009-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#5051263Answer by Rob Prouse for Where is the best place to download accurate lat/long/alt data?Rob Prouse2009-02-02T21:53:40Z2009-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#4919010Answer by Rob Prouse for How can I edit a registry key with VB.NET or VB6?Rob Prouse2009-01-29T14:56:49Z2009-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#4918892Answer by Rob Prouse for .Net WebBrowser Control encapsulating anything else but IE?Rob Prouse2009-01-29T14:51:24Z2009-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#4916192Answer by Rob Prouse for How can I easily view the contents of a datatable or dataview in the immediate windowRob Prouse2009-01-29T13:40:02Z2009-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#48504214Answer by Rob Prouse for Using a dependency injection framework or write your own?Rob Prouse2009-01-27T20:16:33Z2009-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#4850527Answer by Rob Prouse for MySQL Insert Where queryRob Prouse2009-01-27T20:18:43Z2009-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#4747131Answer by Rob Prouse for How do I make a single test project for C++ and C#Rob Prouse2009-01-23T21:45:52Z2009-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#4746970Answer by Rob Prouse for Capture console exit C#Rob Prouse2009-01-23T21:40:58Z2009-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#4737122Answer by Rob Prouse for TDD: Help with writing Testable ClassRob Prouse2009-01-23T17:07:46Z2009-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#4729814Answer by Rob Prouse for c# How to access an excel cell?Rob Prouse2009-01-23T14:03:05Z2009-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#4729690Answer 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 Prouse2009-01-23T13:59:37Z2009-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#4520470Answer by Rob Prouse for php image include problemRob Prouse2009-01-16T21:15:54Z2009-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><img src="/images/Harbourheader.gif" />
</code></pre>
http://stackoverflow.com/questions/451993/how-can-i-dynamically-update-a-variable-in-plain-html-files-in-on-windows-web-ser/452015#4520150Answer by Rob Prouse for How can I dynamically update a variable in plain html files in on windows web server.Rob Prouse2009-01-16T21:07:22Z2009-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#4519891Answer by Rob Prouse for What do the numbers reported by the Windows TraceRt MeanRob Prouse2009-01-16T21:01:33Z2009-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#4448622Answer by Rob Prouse for MSBUILD MSB4075Rob Prouse2009-01-14T21:57:50Z2009-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#44086211Answer by Rob Prouse for Ideal button SizeRob Prouse2009-01-13T21:30:28Z2009-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-textbox3How to Asynchronously fetch AutoComplete data for a TextBox?Rob Prouse2009-01-13T18:56:14Z2009-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#4406351Answer by Rob Prouse for How do I get all strings from a Form for localization?Rob Prouse2009-01-13T20:21:05Z2009-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><data name="ErrorLaunching" xml:space="preserve">
<value>Error launching Ivara</value>
<comment>MessageBox text in LogonForm</comment>
</data>
</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#4404669Answer by Rob Prouse for Why would I use Reflection in a business app?Rob Prouse2009-01-13T19:37:53Z2009-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#4403012Answer by Rob Prouse for What's a good alternative Windows console?Rob Prouse2009-01-13T19:01:05Z2009-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#4399430Answer by Rob Prouse for Why are manholes covers round?Rob Prouse2009-01-13T17:32:19Z2009-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#4397411Answer by Rob Prouse for Implementing a tree in c# managing parent-childRob Prouse2009-01-13T16:43:49Z2009-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#4369191Answer by Rob Prouse for Sniffing data from a switchRob Prouse2009-01-12T20:33:09Z2009-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#4367881Answer by Rob Prouse for Disaster Recovery Template DocumentsRob Prouse2009-01-12T19:56:12Z2009-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#4367063Answer by Rob Prouse for Difference between <?php echo $session_id ?> and <?= $session_id ?>Rob Prouse2009-01-12T19:36:26Z2009-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#522322Comment by Rob Prouse on Weird constantsRob Prouse2009-02-06T21:49:16Z2009-02-06T21:49:16ZI like GRAVITY_DEATH_STAR_I :Dhttp://stackoverflow.com/questions/513469/login-with-admin-user-to-some-domain-and-copy-files-client-machines-with-c/513507#513507Comment by Rob Prouse on Login with Admin user to some domain and copy files client machines with C#Rob Prouse2009-02-05T01:24:11Z2009-02-05T01:24:11ZYou'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-firefoxComment by Rob Prouse on .pdf download on my web doesnt work on firefoxRob Prouse2009-01-13T21:13:30Z2009-01-13T21:13:30ZOnce 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-htmlComment by Rob Prouse on validating HTMLRob Prouse2009-01-13T21:12:28Z2009-01-13T21:12:28ZWe 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#440466Comment by Rob Prouse on Why would I use Reflection in a business app?Rob Prouse2009-01-13T21:09:45Z2009-01-13T21:09:45ZI 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#440654Comment by Rob Prouse on How do I get all strings from a Form for localization?Rob Prouse2009-01-13T20:32:28Z2009-01-13T20:32:28ZI 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#440654Comment by Rob Prouse on How do I get all strings from a Form for localization?Rob Prouse2009-01-13T20:31:14Z2009-01-13T20:31:14ZThis 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, "$this" ); If so, the Resx should have all your data in it.http://stackoverflow.com/questions/436867/sniffing-data-from-a-switchComment by Rob Prouse on Sniffing data from a switchRob Prouse2009-01-12T20:37:24Z2009-01-12T20:37:24ZI 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#428517Comment by Rob Prouse on Is it possible to use ShowDialog without blocking all forms?Rob Prouse2009-01-09T15:47:23Z2009-01-09T15:47:23ZAll 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#428362Comment by Rob Prouse on Open Source Project Suggestion, where to go from here.Rob Prouse2009-01-09T15:40:30Z2009-01-09T15:40:30ZTrue, 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#425336Comment by Rob Prouse on Using C#, how can I set a Url property to an HTML file in my project?Rob Prouse2009-01-08T20:59:41Z2009-01-08T20:59:41ZAnd it is more complete, therefore it deserves the recognition ;)http://stackoverflow.com/questions/425242/is-micro-code-generation-considered-harmful/425264#425264Comment by Rob Prouse on Is Micro Code Generation Considered Harmful?Rob Prouse2009-01-08T19:29:59Z2009-01-08T19:29:59ZAt 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#425264Comment by Rob Prouse on Is Micro Code Generation Considered Harmful?Rob Prouse2009-01-08T18:54:53Z2009-01-08T18:54:53ZKnowing that, it wasn't hard to find. It does look interesting, but what is that weird VB you are generating :Phttp://stackoverflow.com/questions/425207/how-do-i-install-deploy-build-my-visual-c-application-so-its-available-to-all-u/425351#425351Comment by Rob Prouse on How do I install/deploy/build my Visual C# application so it's available to all users?Rob Prouse2009-01-08T18:49:18Z2009-01-08T18:49:18ZSure, 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#425247Comment by Rob Prouse on How do I install/deploy/build my Visual C# application so it's available to all users?Rob Prouse2009-01-08T18:38:05Z2009-01-08T18:38:05ZIf 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.