User Francis Gilbert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:14:37Zhttp://stackoverflow.com/feeds/user/78944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/919693/microsoftless-c-development-system-for-windows/919779#9197791Answer by Francis Gilbert for Microsoftless C# development system for WindowsFrancis Gilbert2009-05-28T08:26:00Z2009-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#6627300Answer by Francis Gilbert for Recommend an html textarea editor? Francis Gilbert2009-03-19T15:45:27Z2009-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#6626990Answer by Francis Gilbert for c# system.net.FileWebRequest Access denied errorFrancis Gilbert2009-03-19T15:38:33Z2009-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#6620080Answer by Francis Gilbert for jFeed - sucess function not being executed (jQuery plugin)Francis Gilbert2009-03-19T12:24:17Z2009-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#6616003Answer by Francis Gilbert for DropDownList with Firefox and ASP.NET MVCFrancis Gilbert2009-03-19T09:51:04Z2009-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><select id="invoice_county" name="invoice.county">
<option value="Lander">Lander</option>
<option selected="selected" value="Laramie">Laramie</option>
<option value="Larimer">Larimer</option>
</select>
</code></pre>
<p>Saved and refreshed in Firefox, then put:</p>
<pre><code><select id="invoice_county" name="invoice.county">
<option selected="selected" value="Lander">Lander</option>
<option value="Laramie">Laramie</option>
<option value="Larimer">Larimer</option>
</select>
</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#6577290Answer by Francis Gilbert for C#: Using event handlers vs overriding event-firing methodsFrancis Gilbert2009-03-18T10:36:37Z2009-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>