User RB - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:09:18Z http://stackoverflow.com/feeds/user/15393 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1756513/vba-code-in-this-example/1756549#1756549 3 Answer by RB for vba code in this example RB 2009-11-18T14:52:32Z 2009-11-18T14:52:32Z <p>6 and 7 are the return codes from the MsgBox method. Basically, when MsgBox is called, it shows a message-box to the user, who clicks either "Yes", "No", or "Cancel". The user's selection is returned from the MsgBox method as a number, where 6 is Yes, and 7 is No.</p> <p>It is considered best-practice not to use these numbers in your code directly, but instead to use Microsoft supplied constants which represent them. Your code could be re-written as:</p> <pre><code>Private Sub CommandButton1_Click() Dim message As Integer message = MsgBox("Click Yes to Proceed, No to stop", vbYesNoCancel, "Login") If message = vbYes Then Range("A1").Value = "You may proceed" ActiveWorkbook.Activate ElseIf message = vbNo Then ActiveWorkbook.Close ElseIf message = vbCancel Then 'Do nothing. End If End Sub </code></pre> http://stackoverflow.com/questions/1544292/when-installing-different-technologies-on-clients-should-i-just-use-installshiel/1544533#1544533 1 Answer by RB for When installing different technologies on clients, should I just use InstallShield? RB 2009-10-09T15:35:12Z 2009-10-09T15:43:15Z <p>I haven't used InstallShield in a few years. At my last job we moved away from it to NSIS mainly because it's binary format made version control difficult, and because a few times the source file simply became corrupted, with no hope for recovery. That might have been related to SourceSafe of course!</p> <p>On top of that though, it was needlessly complicated. Don't get me wrong - we were doing some reasonably complicated installers, with lots of conditional paths, merge modules, and sophisticated UIs, but even for that it was far, far too complex.</p> <p>NSIS has a great plugin system, and you can program it imperatively using the <a href="http://nsis.sourceforge.net/LogicLib" rel="nofollow">LogicLib plugin</a>, have <a href="http://nsis.sourceforge.net/Uninstall%5Fonly%5Finstalled%5Ffiles" rel="nofollow">automatic uninstall files</a> generated, and lots of other things besides.</p> http://stackoverflow.com/questions/1470884/how-to-know-which-processes-is-using-a-file-under-asp-net/1470954#1470954 0 Answer by RB for How to know which processes is using a file under ASP.NET? RB 2009-09-24T10:57:05Z 2009-09-24T10:57:05Z <p>To actually lock access to the resource (the 2nd option you suggest), you could use a Mutex (a Mutual Exclusion).</p> <p>I've not done any of this in .NET, but there seems to be <a href="http://www.developerfusion.com/article/5184/multithreading-in-vbnet/4/" rel="nofollow">good articles</a> on it.</p> http://stackoverflow.com/questions/1470884/how-to-know-which-processes-is-using-a-file-under-asp-net/1470897#1470897 1 Answer by RB for How to know which processes is using a file under ASP.NET? RB 2009-09-24T10:43:58Z 2009-09-24T10:43:58Z <p><a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> will allow you to do this. Simply click "Find" -> "Find Handle or DLL", then enter the name of your file.</p> <p>It will then show you every process with a handle to that file.</p> http://stackoverflow.com/questions/1460106/why-do-developers-support-the-gpl/1460135#1460135 7 Answer by RB for Why do developers support the GPL? RB 2009-09-22T13:34:04Z 2009-09-22T14:09:30Z <p>It is possible to have a revenue stream from GPLed software. The classic example trotted out is Red Hat, who provide support and training for their flavour of Linux, and made $80m profit last year, on revenues of $650m</p> <p>Not all money is made from shrink-wrapped software.</p> <p>Red Hat take advantage of the negligible marginal cost of software to get a wide audience, then charge that audience for access to scarce goods such as developer time for specific problems, training, the Red Hat network, etc.</p> <p>There are other examples of smaller companies making money through open-source software. </p> <ul> <li><a href="http://www.activecollab.com/" rel="nofollow">Active Collab</a> make money by selling hosted versions of their (open-source) software, and is created by one guy (Ilija Studen)</li> <li><a href="http://www.adacore.com" rel="nofollow">AdaCore</a> make money supporting the GNU Ada compiler. They are a small company (around 25 employees)</li> </ul> http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1455000#1455000 2 Answer by RB for Find and Replace in Files - UTF8 RB 2009-09-21T15:08:20Z 2009-09-21T15:12:40Z <p><a href="http://notepad-plus.sourceforge.net/uk/download.php" rel="nofollow">Notepad++</a> supports this feature, and is a great little editor in it's own regard.</p> <p>Edit : Actually, Notepad++ does support replace in files. Click Search -> Find in Files, then select "Replace in files" in the dialog.</p> http://stackoverflow.com/questions/557208/listviews-dragenter-dragover-dragdrop-event-not-raised-allowdroptrue/1238090#1238090 0 Answer by RB for ListView's DragEnter, DragOver, DragDrop event not raised (AllowDrop=True) RB 2009-08-06T10:26:10Z 2009-08-06T10:26:10Z <p>I've had this problem when running Visual Studio 2008 on Windows 7. VS2008 must run with admin privileges on Windows 7, so I'm running it as a different user. I'm pretty sure this prevents drag 'n' drop working as the application runs fine when run as an app, but drag 'n' drop won't work when being run from Visual Studio. </p> http://stackoverflow.com/questions/1037287/cannot-add-item-to-dropdownlist-in-setter-property-in-asp-net 0 Cannot add item to DropDownList in Setter property in ASP .NET RB 2009-06-24T09:20:14Z 2009-06-24T09:22:34Z <p>I'm trying to add an item to a DropDownList in a Setter, and the added item doesn't stay.</p> <p>I have confirmed that Viewstate is correctly enabled as suggested in this question (<a href="http://stackoverflow.com/questions/445222/switched-to-asp-net-3-5-dropdownlist-doesnt-remember-dynamically-added-items">http://stackoverflow.com/questions/445222/switched-to-asp-net-3-5-dropdownlist-doesnt-remember-dynamically-added-items</a>)</p> <p>Here is my code.</p> <pre><code> Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init If ddlCountry.Items.Count &lt; Country.GetList.Length Then ddlCountry.DataSource = Country.GetList() ddlCountry.DataBind() 'At this point, there are correctly 231 items in ddlCountry.' End If End Sub Public WriteOnly Property Country() As String Set(ByVal Value As String) If ddlCountry.Items.FindByValue(Value.Country) Is Nothing Then Dim li As New ListItem(Value.Country, Value.Country) ddlCountry.Items.Insert(0, li) ddlCountry.SelectedIndex = ddlCountry.Items.IndexOf(li) 'At this point, there are correctly 232 items in ddlCountry' Else ddlCountry.SelectedValue = Value.Country End If End Set End Property Private Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender If ddlCountry.Items.FindByText("&lt;-- Please Select--&gt;") Is Nothing Then 'At this point, we are incorrectly' 'back to 231 items - this is the problem.' ddlCountry.Items.Insert(0, New ListItem("&lt;-- Please Select--&gt;", "")) End If End Sub </code></pre> http://stackoverflow.com/questions/423841/how-to-html-encode-em-dash-in-visual-basic-net 0 How to "HTML encode" Em Dash in Visual Basic.NET RB 2009-01-08T10:48:59Z 2009-06-09T11:35:59Z <p>Hi all,</p> <p>I am generating some text to be shown on a web-site, and use <a href="http://msdn.microsoft.com/en-us/library/system.web.httputility.htmlencode.aspx" rel="nofollow">HttpUtility.HtmlEncode</a> to ensure it will look correct. However, this method does not appear to encode the <a href="http://en.wikipedia.org/wiki/Mdash#Em_dash" rel="nofollow">Em Dash</a> (it should convert it to "&mdash;"). </p> <p>I have come up with a solution, but I'm sure there is a better way of doing it - some library function or something.</p> <pre><code>sWebsiteText = _ "&lt;![CDATA[" &amp; _ HttpUtility.HtmlEncode(sSomeText) &amp; _ "]]&gt;" 'This is the bit which seems "hacky"' sWebsiteText = _ sWebsiteText.Replace(HttpUtility.HtmlDecode("&amp;#8211;"), "&amp;#8211;") </code></pre> <p>So my question is - how would you implement the "hacky" part?</p> <p>Many thanks,</p> <p>RB.</p> http://stackoverflow.com/questions/689336/group-features-in-google-earth-to-hide-detail-when-zoomed-out 0 Group features in Google Earth to hide detail when zoomed out. RB 2009-03-27T11:07:45Z 2009-04-14T09:45:48Z <p>Hi all,</p> <p>I'm trying to generate a KML file to display a set of features scattered around the UK. I would like the features to be grouped together at higher zoom levels, ideally displaying as an icon with a count of the number of features, so that users can see clusters of features easily. </p> <p>Essentially I'm trying to do something along <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/release/examples/weather%5Fmap.html" rel="nofollow">these lines</a>, but in Google Earth, not Maps.</p> <p>Can anyone point me in the right direction. I'm a bit of a newbie with KML :-)</p> <p>Cheers,</p> <p>RB.</p> <p>ANSWERS :</p> <p>My own research suggests I can do what I want using <a href="http://code.google.com/apis/kml/documentation/kml%5F21tutorial.html#workingregions" rel="nofollow">Regions</a> to define bounding boxes for certain features.</p> <p>It has also been suggested I should do this using network links, which I'm going to investigate as I think it's a better match for other reasons too.</p> http://stackoverflow.com/questions/349729/find-and-start-a-vpn-connection-in-vb-net 1 Find and start a VPN connection in VB .NET RB 2008-12-08T14:36:07Z 2009-03-25T15:46:11Z <p>Hi all,</p> <p>I am using <a href="http://msdn.microsoft.com/en-us/library/system.net.networkinformation.networkinterface.getallnetworkinterfaces.aspx" rel="nofollow">NetworkInterface.GetAllNetworkInterfaces()</a> to get all the interfaces on a PC. However, this appears to only return "active" interfaces. How can I find "inactive" network interfaces, such as unconnected VPNs, disabled NICs, etc. in .NET. </p> <p>I would like to find them by their name in "Control Panel" -> "Network Connections". So, for example, if I have a VPN called "My Work" I would like to be able to find it using the name "My Work".</p> <p>Using Win32_NetworkAdapterConfiguration does not seem to be an option as it does not return the name shown in "Network Connections" (as far as I can see).</p> <p>Many thanks,</p> <p>RB.</p> http://stackoverflow.com/questions/658454/convert-osgb-36-co-ordinates-to-latitude-longitude 0 Convert OSGB 36 co-ordinates to Latitude/Longitude RB 2009-03-18T14:22:29Z 2009-03-20T22:10:03Z <p>I want to convert British <a href="http://en.wikipedia.org/wiki/British%5Fnational%5Fgrid%5Freference%5Fsystem" rel="nofollow">OSGB 36</a> co-ordinates to <a href="http://en.wikipedia.org/wiki/World%5FGeodetic%5FSystem" rel="nofollow">WGS 84</a> (i.e. "standard" latitude and longitude), in order to plot them into a KML file for Google Earth.</p> <p>What would be the best way to go about this? I'm implementing in VB .NET.</p> <p>I should probably add that my question is not "How do I write a KML file?". My question is "How do I convert between these 2 co-ordinate systems?"!!</p> <p>I was hoping there would be a library that I could use, rather than rolling my own function - it seems like the sort of thing some-one else would have implemented. </p> http://stackoverflow.com/questions/546345/vb-net-option-strict-enums-and-overriding-tostring/546351#546351 1 Answer by RB for vb.net, option strict, enums and overriding ToString RB 2009-02-13T15:28:27Z 2009-02-13T15:36:01Z <p>You can explicitly cast the SelectedValue to an int, or the Country as a string.</p> <pre><code>If CInt(ddl.SelectedValue) = Country.Canada </code></pre> <p>or</p> <pre><code>If ddl.SelectedValue = CStr(Country.Canada) </code></pre> <p>If you take the first option, you might need to explicitly declare your enum as Integer</p> <pre><code>Public Enum Country As Integer </code></pre> <p>The warning occurs because SelectedValue is a string, and Country is an Integer, so an implicit conversion occurs - just like it says!!</p> http://stackoverflow.com/questions/472842/is-it-possible-to-print-a-pdf-to-a-file-so-that-the-file-contains-plain-text-of/472866#472866 2 Answer by RB for Is it possible to "print a PDF to a file" so that the file contains plain text of the content? RB 2009-01-23T13:24:00Z 2009-01-23T13:24:00Z <p>A google search on <a href="http://www.google.co.uk/search?q=pdf2txt&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL_enGB292GB292" rel="nofollow">pdf2txt</a> will yield plenty of responses. I've personally used the command line program found at <a href="http://www.pdf2txt.com" rel="nofollow">http://www.pdf2txt.com</a>, and found it very good. However, if the PDF uses much formatting, it can be hard to parse out the info you want sometimes, as the formatting makes text retrieval much harder.</p> http://stackoverflow.com/questions/472638/how-do-i-import-an-excel-spreadsheet-into-sql-server/472645#472645 6 Answer by RB for How do I import an excel spreadsheet into SQL Server? RB 2009-01-23T11:53:00Z 2009-01-23T11:59:26Z <p>The "Data Transformation Services" wizards are your friend.</p> <p>The instructions here assume SQL Server 2000</p> <ul> <li>Open SQL Server Enterprise Manager</li> <li>Right-click on the appropriate server</li> <li>Select Import Data</li> <li>Run through the wizard. <ul> <li>Click Next on the first screen</li> <li>Choose "Microsoft Excel " as your datasource</li> <li>Enter the path to the XLS file and click next.</li> <li>Enter the connection details for your database and click next.</li> </ul></li> </ul> <p>Depending on what you want to do with the data, you have a few options new. For one-off jobs I generally find it easiest to import all the excel data, then edit it in SQL Server, but if you're going to repeat this action on multiple files, you might want to craft a really sexy import script.</p> <p>If you are going to run it again, you can save the DTS package using the wizard, then edit it in the "Data Transformation Services" section of Enterprise Manager. It's a good way to learn how DTS works.</p> http://stackoverflow.com/questions/425044/how-to-estimate-a-programming-task-if-you-have-no-experience-in-it/425063#425063 38 Answer by RB for How to estimate a programming task if you have no experience in it. RB 2009-01-08T17:05:43Z 2009-01-08T17:05:43Z <p>The best answer you can give is to ask for time to knock up a quick prototype to allow you to give a more accurate estimate. Without <em>some</em> experience with a tool or a problem, any estimate you give is essentially meaningless.</p> <p>As an aside, there is very rarely a problem with giving too long an estimate. Unanticipated problems occur, priorities change, and requirements are "updated". Even if you don't use all the time you asked for, you will have more testing time, or can release "early".</p> <p>I've always been far too optimistic in my estimates, and it can put a lot of stress into your life, especially when you are a young programmer without the experience and self-confidence to tell bosses uncomfortable truths.</p> http://stackoverflow.com/questions/402881/is-the-reset-button-really-required/402892#402892 2 Answer by RB for Is the reset button really required? RB 2008-12-31T12:33:28Z 2008-12-31T12:33:28Z <p>I don't think it's necessary in most web-pages. If you're entering information, and you enter it wrong, then you'll need to go through every wrong text-box and re-enter it. The reset button is, at minimum, one extra button click on top of that.</p> <p>If you don't want to enter information, you just don't click the submit button. </p> <p>The only time I see a reset button being useful is if you have a multi-page workflow, and need to be able to start from scratch. Even then I would suggest re-designing the workflow.</p> http://stackoverflow.com/questions/391316/access-denied-to-all-svn-directories/391328#391328 2 Answer by RB for Access Denied to all SVN Directories RB 2008-12-24T12:08:56Z 2008-12-24T12:08:56Z <p>Download Microsoft's <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> and see what processes have the file-handles open.</p> <p>Once you've downloaded Process Explorer run it (no install required), and </p> <ul> <li>Select Find -> Find Handle or DLL</li> <li>Enter a filename you can't delete.</li> </ul> <p>It will list the processes with handles to that file. Kill the process and you should be ok.</p> <p>Note that this is a general Windows answer, not a TortoiseSVN specific answer. </p> http://stackoverflow.com/questions/391182/2009-programming-predictions/391193#391193 7 Answer by RB for 2009 programming predictions RB 2008-12-24T10:22:37Z 2008-12-24T11:39:07Z <p>The economic downturn will cause companies to focus on open-source software in business, to achieve cost-savings. Because of this, significant investment in OSS.</p> http://stackoverflow.com/questions/388944/how-to-compensate-for-differences-in-environment-between-development-machines-and/388958#388958 1 Answer by RB for How to compensate for differences in environment between development machines and Build servers? RB 2008-12-23T14:21:29Z 2008-12-23T14:21:29Z <p>The "ultimate" solution can be to have the entire tool-chain stored in your source-control, and to store any libraries/binaries you build in source-control as well. Set up correctly, this can ensure you have the ability to rebuild any release, from any point in time, exactly as it was shipped, but that, furthermore, you don't need to do that as every binary you#ve ever generated is source-controlled.</p> <p>However, getting to that point is some serious work.</p> http://stackoverflow.com/questions/381414/efficient-algorithm-to-test-which-sets-a-particular-number-belongs-to/381442#381442 -1 Answer by RB for efficient algorithm to test _which_ sets a particular number belongs to RB 2008-12-19T16:22:48Z 2008-12-19T16:36:35Z <p>I think I would organise them in the same way Mediawiki indexes pages - as a <a href="http://en.wikipedia.org/wiki/Bucket_sort" rel="nofollow">bucket sort</a>. I don't know that it's <em>the</em> most efficient algorithm out there, but it should be fast, and is pretty easy to implement (even I've managed it, and in SQL at that!!).</p> <p>Basically, the algorithm for sorting is </p> <pre><code>For Each SetOfNumbers For Each NumberInSet Put SetOfNumbers into Bin(NumberInSet) </code></pre> <p>Then to query, you can just count the number of items in Bin(MyNumber)</p> <p>This approach will work well when your SetOfNumbers rarely changes, although if they change regularly it's generally not too hard to keep the Bins updated either. It's chief disadvantage is that it trades space, and initial sorting time, for very fast queries.</p> <p>Note that in the algorithm I've expanded the Ranges into SetsOfNumbers - enumerating every number in a given range. </p> http://stackoverflow.com/questions/375262/sql-query-for-finding-representative-rows-in-a-table/375271#375271 2 Answer by RB for SQL query for finding representative rows in a table RB 2008-12-17T17:07:14Z 2008-12-17T17:07:14Z <p>The following query will accomplish that. It pulls out all the rows for which there is not a greater Value.</p> <pre><code>SELECT * FROM payments p WHERE NOT EXISTS ( SELECT * FROM payments p2 WHERE p2.CustomerID = p.CustomerId AND p2.Value &gt; p.Value ) </code></pre> http://stackoverflow.com/questions/375133/how-do-i-extract-part-of-a-string-in-t-sql/375145#375145 1 Answer by RB for How do I extract part of a string in t-sql RB 2008-12-17T16:31:49Z 2008-12-17T16:40:52Z <p>LEFT ('BTA200', 3) will work for the examples you have given, as in :</p> <pre><code>SELECT LEFT(MyField, 3) FROM MyTable </code></pre> <p>To extract the numeric part, you can use this code</p> <pre><code>SELECT RIGHT(MyField, LEN(MyField) - 3) FROM MyTable WHERE MyField LIKE 'BTA%' --Only have this test if your data does not always start with BTA. </code></pre> http://stackoverflow.com/questions/375009/error-in-regex-for-string/375021#375021 0 Answer by RB for Error in Regex for String RB 2008-12-17T15:59:17Z 2008-12-17T15:59:17Z <p>Look into <a href="http://en.wikipedia.org/wiki/Regex#Lazy_quantification" rel="nofollow">Lazy Quantification</a></p> http://stackoverflow.com/questions/374921/how-do-i-follow-a-t-sql-transaction/374933#374933 2 Answer by RB for How Do I Follow A T-SQL Transaction? RB 2008-12-17T15:38:40Z 2008-12-17T15:38:40Z <p>The SQL Profiler will allow you to trace a transaction through, and see exactly what is going on. It is very flexible and allows you to be shown only the events you are interested in, but it won't show it in the tree format I think you're asking about.</p> <p>The profiler is installed as part of the SQL Server Client Tools (along with Enterprise Manager and Query Analyser).</p> http://stackoverflow.com/questions/374797/subversive-cant-commit-files-inside-a-tags-folder/374810#374810 10 Answer by RB for Subversive: can't commit files inside a tags folder RB 2008-12-17T15:00:28Z 2008-12-17T15:00:28Z <p>It's actually fine to say "Yes" to this warning.</p> <p>A common layout for version control is to have 3 root folders:</p> <blockquote> <pre><code>/trunk /tags /branches </code></pre> </blockquote> <p>Once a trunk build has been released, the current contents of trunk are copied into a folder (e.g. "April 2008 version 1.3" or something) in tags. Generally speaking this folder should not then be modified, as it represents a specific build at a specific point in time. However, in your case you have a folder which just happens to be called "tags", and contains trunk code, rather than tagged code, so it is perfectly right to say "Yes" to this warning and continue with the commit. </p> <p>For more info, read the SVN Book, particularly <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.tags.html" rel="nofollow">Tags</a> and <a href="http://svnbook.red-bean.com/en/1.5/svn.tour.importing.html#svn.tour.importing.layout" rel="nofollow">Recommended Repository Layout</a></p> http://stackoverflow.com/questions/356557/vb-net-net-2-0-class-library-configuration/356571#356571 2 Answer by RB for VB .NET (.NET 2.0) Class Library configuration RB 2008-12-10T15:57:33Z 2008-12-10T15:57:33Z <p>If you have an application which uses your library called MyApp, then the connection string defined in MyApp.exe.config will be available to your library. Generally speaking the client program should set the configuration environment, not the library.</p> <pre><code>If GetApplicationSetting("connectionString") Is Nothing Then Throw New Exception("Could not retrieve connection string from .config file") Else Return ConfigurationManager.AppSettings.Item("connectionString") End If </code></pre> <p>Make sure you have the System.Configuration framework loaded to access the ConfigurationManager.</p> <p>EDIT 1: If you are using it in a web-application, then set the connection string in web.config.</p> <p>EDIT 2: If you set the connection string in the ConnectionStrings section of the .exe.config or web.config you can access it using :</p> <pre><code>ConfigurationManager.ConnectionStrings("MyConnectionString") </code></pre> http://stackoverflow.com/questions/356336/problems-storing-numeric-data-in-text-columns-select-between/356349#356349 6 Answer by RB for Problems storing numeric data in text columns - SELECT...BETWEEN RB 2008-12-10T14:55:31Z 2008-12-10T15:09:28Z <p>If you're sure that the values in ID are numeric only, why not just CAST them</p> <pre><code>WHERE CAST(ID as int) BETWEEN iStartValue AND iEndValue </code></pre> <p>EDIT 1: An extension to the casting method which should work is to use a sub-query to pull out all numeric records. Please note - I do not think this method is better than the one suggested above, I include it as it answers the problem!!!</p> <pre><code>SELECT ID FROM ( SELECT ID FROM MyTable WHERE ISNUMERIC(ID) = 1 AND CHARINDEX ('.', ID) = 0 AND CHARINDEX ('-', ID) = 0 ) a WHERE CONVERT(bigint, ID) BETWEEN 0 AND 12000 ORDER BY LENGTH(ID) ASC, ID </code></pre> <p>The check for "-" and "." characters isn't really required. I'm assuming your IDs can't be negative or decimal. </p> http://stackoverflow.com/questions/356023/what-technology-do-you-use-to-build-your-installer/356043#356043 9 Answer by RB for What technology do you use to build your installer? RB 2008-12-10T13:31:34Z 2008-12-10T13:37:57Z <p>I love NSIS - </p> <ul> <li>it's not as absurdly complicated as InstallShield, </li> <li>it's easier to version control as it's text-based, not binary.</li> <li>Writing plugins is done in C so you can write very powerful ones (I extended our encryption library with an NSIS interface quite easily, for example).</li> <li>I find the tutorials and support better for NSIS.</li> <li>I've had InstallShield break, for no clear reason, and had to re-build the project from scratch, because something had gone wrong somewhere. NSIS is just a simple compiler, so it doesn't break randomly.</li> <li>It has a huge number of really useful plugins, for rollback, forms, programming logic, and anything else you're likely to want.</li> </ul> <p>Note that I haven't used InstallShield for several years, so my criticisms may not be valid anymore.</p> <p>One last thing, if you do use NSIS I strongly recommend you investigate the <a href="http://nsis.sourceforge.net/LogicLib" rel="nofollow">LogicLib plugin</a>. It adds constructs like "If...End If", "While/For loops", "Switch" statements, etc.</p> http://stackoverflow.com/questions/355636/how-can-a-value-be-passed-directly-from-a-windows-application-into-a-field-in-an/355677#355677 1 Answer by RB for How can a value be passed directly from a windows application into a field in an open web page? RB 2008-12-10T10:55:53Z 2008-12-10T13:26:50Z <p>This is not going to be an easy problem to solve, but I <em>think</em> it's possible by hosting the web-page in a browser embedded in a .NET application. <a href="http://www.codeproject.com/KB/cs/mshtml_automation.aspx" rel="nofollow">This Code-Project article</a> might help</p> <p>Also <a href="http://blog.monstuff.com/archives/000052.html" rel="nofollow">this article</a> talks a bit about accessing the DOM through a C# application.</p> <p>Have you got any requirements on language? And can you add a bit more detail about exactly what you're trying to achieve?</p> <p>EDIT 1: <a href="http://sourceforge.net/projects/watij/" rel="nofollow">Watij</a> is a web-application testing framework for Java. You can use it to fill in text-boxes, click buttons etc. I think it might fit your needs and, if it doesn't, it's open-source, so you might be able to hack it to work. There is a whole family of Wati* products - Watin for .NET, Watir for Ruby, etc.</p> http://stackoverflow.com/questions/1797484/sql-insert-as-1-query-with-all-fields-or-multiple-queries/1797499#1797499 Comment by RB on SQL: insert as 1 query with all fields, or multiple queries? RB 2009-11-25T15:04:08Z 2009-11-25T15:04:08Z If you had business-logic in your &quot;setters&quot;, then you might prefer to create a record, retrieve it as a business object, and then update the values, to avoid duplicating code. http://stackoverflow.com/questions/1756513/vba-code-in-this-example/1756549#1756549 Comment by RB on vba code in this example RB 2009-11-19T10:34:12Z 2009-11-19T10:34:12Z The constants (vbNo, vbYes, etc) should always be used instead of the equivalent integers (6, 7, etc). Code which uses the integers directly is bad because it is extremely hard to read. Developers should not use the integers directly, but should use the equivalent constant. Hope that answers your question. http://stackoverflow.com/questions/1470884/how-to-know-which-processes-is-using-a-file-under-asp-net/1470897#1470897 Comment by RB on How to know which processes is using a file under ASP.NET? RB 2009-09-24T10:51:09Z 2009-09-24T10:51:09Z Hmm - in that case, I'd probably start adding logging of file opening to my application, to try and trace down which thread is opening it. I'm sure there will be someone along in a sec to tell you a great way using mutexes or something though. http://stackoverflow.com/questions/1460106/why-do-developers-support-the-gpl/1460135#1460135 Comment by RB on Why do developers support the GPL? RB 2009-09-22T15:35:55Z 2009-09-22T15:35:55Z Red Hat have released a large amount of code into the Linux codebase. I don't think a one-man band would be writing an operating system. My point is that large, medium and small companies can all make money through GPL software. http://stackoverflow.com/questions/1460106/why-do-developers-support-the-gpl/1460135#1460135 Comment by RB on Why do developers support the GPL? RB 2009-09-22T13:38:59Z 2009-09-22T13:38:59Z Right, but they still make enough money to pay hundreds of developers, producing thousands of lines of open-source code. http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1455000#1455000 Comment by RB on Find and Replace in Files - UTF8 RB 2009-09-21T15:25:44Z 2009-09-21T15:25:44Z Version 5.4.3 from June 7th, 2009 :-) http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1455000#1455000 Comment by RB on Find and Replace in Files - UTF8 RB 2009-09-21T15:14:26Z 2009-09-21T15:14:26Z Dmitri : It does support replace in files - see my edit to my answer. http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1455000#1455000 Comment by RB on Find and Replace in Files - UTF8 RB 2009-09-21T15:13:52Z 2009-09-21T15:13:52Z Johannes : Dmitri said reg-ex would be nice, but not essential. Good to point out the limitations though. http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1454983#1454983 Comment by RB on Find and Replace in Files - UTF8 RB 2009-09-21T15:10:32Z 2009-09-21T15:10:32Z The rest can be found here : <a href="http://gnuwin32.sourceforge.net/packages.html" rel="nofollow">gnuwin32.sourceforge.net/packages.html</a> http://stackoverflow.com/questions/1454970/find-and-replace-in-files-utf8/1454983#1454983 Comment by RB on Find and Replace in Files - UTF8 RB 2009-09-21T15:09:41Z 2009-09-21T15:09:41Z Sed is available from <a href="http://gnuwin32.sourceforge.net/packages/sed.htm" rel="nofollow">gnuwin32.sourceforge.net/packages/sed.htm</a>, like most of the standard nix utilities. http://stackoverflow.com/questions/1438978/sql-query-to-get-max-value-based-on-different-max-value-given-multiple-records/1438986#1438986 Comment by RB on SQL Query to Get Max Value Based on Different Max Value Given Multiple Records RB 2009-09-17T13:47:15Z 2009-09-17T13:47:15Z Beaten by 52 seconds :-) http://stackoverflow.com/questions/1321517/html-creating-small-vertical-distance-between-text-lines/1321524#1321524 Comment by RB on HTML: creating small vertical distance between text lines RB 2009-08-24T10:15:32Z 2009-08-24T10:15:32Z The recommended approach is to use CSS... http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app Comment by RB on Internet Explorer hanging when debugging ASP.NET app RB 2009-07-13T09:39:14Z 2009-07-13T09:39:14Z Do other browsers work? If they do, it's an IE problem, if they don't it's a web-server problem... http://stackoverflow.com/questions/1037287/cannot-add-item-to-dropdownlist-in-setter-property-in-asp-net/1037293#1037293 Comment by RB on Cannot add item to DropDownList in Setter property in ASP .NET RB 2009-06-24T09:26:25Z 2009-06-24T09:26:25Z That worked - I'd never come across that property. Many thanks! http://stackoverflow.com/questions/689336/group-features-in-google-earth-to-hide-detail-when-zoomed-out/689399#689399 Comment by RB on Group features in Google Earth to hide detail when zoomed out. RB 2009-03-27T11:53:35Z 2009-03-27T11:53:35Z It does. I started doing it as a standalone KML file, but looking into network links I think that's more what I'm trying to achieve. Many thanks. I think I can do what I want standalone using Regions, so I'm looking into those.