User Francis Gilbert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:14:37Z http://stackoverflow.com/feeds/user/78944 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919693/microsoftless-c-development-system-for-windows/919779#919779 1 Answer by Francis Gilbert for Microsoftless C# development system for Windows Francis Gilbert 2009-05-28T08:26:00Z 2009-05-28T08:26:00Z <p>You could use Eclipse, Mono and a C# plugin. For the more complex stuff you could use the command line for compiling.</p> http://stackoverflow.com/questions/662696/recommend-an-html-textarea-editor/662730#662730 0 Answer by Francis Gilbert for Recommend an html textarea editor? Francis Gilbert 2009-03-19T15:45:27Z 2009-03-19T15:45:27Z <p>I've used FCK Editor: <a href="http://www.fckeditor.net/" rel="nofollow">http://www.fckeditor.net/</a> which is quite good.</p> http://stackoverflow.com/questions/662594/c-system-net-filewebrequest-access-denied-error/662699#662699 0 Answer by Francis Gilbert for c# system.net.FileWebRequest Access denied error Francis Gilbert 2009-03-19T15:38:33Z 2009-03-19T15:38:33Z <p>It looks like the file you are trying to get is on your network rather than through an http call which is what FileWebRequest is for.</p> <p>Try:</p> <pre><code>FileInfo fileInfo = new FileInfo(filePath); long fileBytes = fileInfo.Length; long fileKBytes = fileInfo.Length / 1024; </code></pre> <p>The filepath being your \IP\c$\sampleFile.txt. Make sure it is accessible by your machine to read.</p> http://stackoverflow.com/questions/661990/jfeed-sucess-function-not-being-executed-jquery-plugin/662008#662008 0 Answer by Francis Gilbert for jFeed - sucess function not being executed (jQuery plugin) Francis Gilbert 2009-03-19T12:24:17Z 2009-03-19T12:24:17Z <p>I had a similar problem. Try hard coding the URL into the url: and see if that works rather than setting a feed variable.</p> <p>You have an extra } at the end of your segment, is that just an extra part of your code?</p> http://stackoverflow.com/questions/660376/dropdownlist-with-firefox-and-asp-net-mvc/661600#661600 3 Answer by Francis Gilbert for DropDownList with Firefox and ASP.NET MVC Francis Gilbert 2009-03-19T09:51:04Z 2009-03-19T09:51:04Z <p>Hi. Firefox has a weird bug/feature that means if you just refresh the page, it will select the option already selected regardless of whether the selected attribute is on another option. For example, if I put in:</p> <pre><code>&lt;select id="invoice_county" name="invoice.county"&gt; &lt;option value="Lander"&gt;Lander&lt;/option&gt; &lt;option selected="selected" value="Laramie"&gt;Laramie&lt;/option&gt; &lt;option value="Larimer"&gt;Larimer&lt;/option&gt; &lt;/select&gt; </code></pre> <p>Saved and refreshed in Firefox, then put:</p> <pre><code>&lt;select id="invoice_county" name="invoice.county"&gt; &lt;option selected="selected" value="Lander"&gt;Lander&lt;/option&gt; &lt;option value="Laramie"&gt;Laramie&lt;/option&gt; &lt;option value="Larimer"&gt;Larimer&lt;/option&gt; &lt;/select&gt; </code></pre> <p>instead and just refreshed after saving, it would keep "Laramie" selected. To stop this, try Ctrl-F5 rather than just F5 or refresh.</p> http://stackoverflow.com/questions/657685/c-using-event-handlers-vs-overriding-event-firing-methods/657729#657729 0 Answer by Francis Gilbert for C#: Using event handlers vs overriding event-firing methods Francis Gilbert 2009-03-18T10:36:37Z 2009-03-18T10:36:37Z <p>For a button click, I'd keep it as a method for reading. But I guess it is a personal preference thing. I'd be interested to see what the concensus is.</p>