User foson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:21:58Z http://stackoverflow.com/feeds/user/22539 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1330763/when-will-silverlight-4-come-out-what-features-will-it-have 2 When will Silverlight 4 come out? What features will it have? foson 2009-08-25T20:25:57Z 2009-11-25T20:52:48Z <p>When will Silverlight 4 come out? </p> <p>Mary Joe Foley at ZDNet speculates (from a <a href="http://content.zdnet.com/2346-12558%5F22-322680.html" rel="nofollow">slideshow</a>) that VS2010 will be released in the April 2010 timeframe. Will Silverlight 4 make it to RTW by then?</p> <p>What features will it have? Will Silverlight RIA be part of the SDK, or a seperate "Stable/Preview" library like parts of the Silverlight Control Toolkit? </p> http://stackoverflow.com/questions/345883/why-doesnt-vs-2008-display-extension-methods-in-intellisense-for-string-class 5 Why doesn't VS 2008 display extension methods in Intellisense for String class foson 2008-12-06T04:04:55Z 2009-11-01T09:30:47Z <p>Since String implements <code>IEnumerable&lt;char&gt;</code>, I was expecting to see the Enumerable extension methods in Intellisense, for example, when typing the period in</p> <pre><code>String s = "asdf"; s. </code></pre> <p>I was expecting to see <code>.Select&lt;char&gt;(...)</code>, <code>.ToList&lt;char&gt;()</code>, etc. I was then suprised to see that the extension methods <strong>do</strong> in fact work on the string class, they just don't show up in Intellisense. Does anyone know why this is? This may be related to <a href="http://stackoverflow.com/questions/295287/how-can-i-prevent-a-public-class-that-provides-extension-methods-from-appearing">this</a> question.</p> http://stackoverflow.com/questions/1632782/trouble-sending-file-through-ihttpasynchandler 0 Trouble sending file through IHttpAsyncHandler foson 2009-10-27T18:30:28Z 2009-10-27T19:53:28Z <p>I'm using a IHttpHandler to call a webservice and return the resulting byte[] to the client as a downloaded file attachment. This works fine, but when I tried changing the IHttpHandler to a IHttpAsyncHandler, the file download dialog shows, but the file does not start/finish downloading. What am I doing wrong?</p> <pre><code>&lt;%@ WebHandler Language="C#" Class="PreviewPDF" %&gt; using System; using System.Web; public class PreviewPDF : IHttpAsyncHandler { public void ProcessRequest(HttpContext context) { } public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) { string data = "some data"; using (WebService.RequestService service = new WebService.RequestService()) { AsyncCallback callback = new AsyncCallback(EndProcessRequest); return service.BeginGetFile(data, callback, context); } } public void EndProcessRequest(IAsyncResult result) { HttpContext context = result.AsyncState as HttpContext; byte[] wsoutput; using (WebService.RequestService service = new WebService.RequestService()) { wsoutput = service.EndGetFile(result); } context.Response.ContentType = "application/octet-stream"; context.Response.ContentEncoding = System.Text.Encoding.Unicode; context.Response.AddHeader("Content-Disposition", "attachment; filename=attachment.pdf"); using (System.IO.MemoryStream ms = new System.IO.MemoryStream(wsoutput)) { ms.WriteTo(context.Response.OutputStream); } context.Response.Flush(); } public bool IsReusable { get { return false; } } } </code></pre> http://stackoverflow.com/questions/160711/net-time-sinkholes 17 .NET time sinkholes? foson 2008-10-02T03:01:54Z 2009-09-24T00:23:00Z <p>What .NET issue have you run into that wasted hours and hours of your time, was nearly impossible to debug, and could have been easily avoided if you had known just one quirk of the framework?</p> http://stackoverflow.com/questions/1374934/maximum-size-for-a-byte-in-a-net-dataset-datatable 0 Maximum size for a byte[] in a .Net DataSet/DataTable foson 2009-09-03T17:52:25Z 2009-09-03T17:57:47Z <p>Is there any maximum size for a cell of data in a DataTable (like a byte[]), or can you grow it until the system runs out of memory?</p> http://stackoverflow.com/questions/1368887/innertext-of-xmlnode-from-a-string/1368912#1368912 0 Answer by foson for innerText of XmlNode from a String foson 2009-09-02T16:54:06Z 2009-09-02T16:54:06Z <p>You can create an XmlDocument from a string using xmldoc.LoadXml(xmlTags)</p> http://stackoverflow.com/questions/1361588/how-to-replace-content-in-template-docx-document-and-open-xml-sdk-2-0-aug-09/1368439#1368439 0 Answer by foson for How to replace content in template docx document and Open XML SDK 2.0 (Aug 09)? foson 2009-09-02T15:35:50Z 2009-09-02T15:35:50Z <p>I think you are looking for either bookmarks, or content controls (on the Ribbon's Developer tab, code example <a href="http://blogs.msdn.com/brian%5Fjones/archive/2008/12/08/the-easy-way-to-assemble-multiple-word-documents.aspx" rel="nofollow">here</a>)<br /> I've used Named Ranges in Excel for the same purpose.</p> http://stackoverflow.com/questions/984576/when-is-visual-studio-2010-expected-to-rtm/1330767#1330767 0 Answer by foson for When is Visual Studio 2010 expected to RTM? foson 2009-08-25T20:26:35Z 2009-08-25T20:26:35Z <p>Mary Joe Foley at ZDNet speculates (from a <a href="http://content.zdnet.com/2346-12558%5F22-322680.html" rel="nofollow">slideshow</a>) that VS2010 will be released in the April 2010 timeframe.</p> http://stackoverflow.com/questions/1012522/discussion-silverlight-4-expectations/1328741#1328741 2 Answer by foson for Discussion: Silverlight 4 expectations foson 2009-08-25T14:40:04Z 2009-08-25T14:40:04Z <p>For Visual Studio:</p> <p>Better debugging, especially of data binding. No more "AE_G_PARSE_ERROR" or "Error at line (0,0)".</p> http://stackoverflow.com/questions/1167663/is-there-a-tool-to-remove-unused-methods-in-javascript/1290306#1290306 1 Answer by foson for Is there a tool to remove unused methods in javascript? foson 2009-08-17T20:42:47Z 2009-08-17T20:42:47Z <p>Check out <a href="http://siliconforks.com/jscoverage/" rel="nofollow">JSCoverage</a> . Generates code coverage statistics that show which lines of a program have been executed (and which have been missed). </p> http://stackoverflow.com/questions/806771/how-to-convert-xlsx-files-into-2003-xls-files-programatically-in-c/1223673#1223673 0 Answer by foson for How to convert xlsx files into 2003 xls files programatically in C#? foson 2009-08-03T17:49:54Z 2009-08-03T17:49:54Z <p>Try this code:</p> <pre><code> try { Microsoft.Office.Interop.Word.ApplicationClass oWord = new ApplicationClass(); object oMissing = Type.Missing; object fileName = @"c:\test.docx"; Document oDoc = oWord.Application.Documents.Open(ref fileName, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); object fileName2 = @"c:\test2.doc"; object fileFormat = WdSaveFormat.wdFormatDocument97; oDoc.SaveAs(ref fileName2, ref fileFormat, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); oDoc.Close(ref oMissing, ref oMissing, ref oMissing); oWord = null; Console.WriteLine("Done"); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } Console.Read(); </code></pre> http://stackoverflow.com/questions/1196217/reading-sql-column-name-from-querystring-and-building-secure-query-from-it/1196265#1196265 0 Answer by foson for Reading SQL column name from querystring and building secure query from it foson 2009-07-28T19:32:03Z 2009-07-28T19:32:03Z <p>Use a SQL stored procedure instead of an ad-hoc SQL statement.</p> http://stackoverflow.com/questions/1165967/opaque-dictionary-key-pattern-in-c/1175456#1175456 2 Answer by foson for Opaque dictionary key pattern in C# foson 2009-07-24T02:11:32Z 2009-07-24T02:11:32Z <p>From what I can tell, you can use a generic Tuple class, and you have no need of the inner anonymous class. A Tuple class could be useful elsewhere in your solution (which is why .NET 4.0 will have built-in generic Tuple classes). Equals can compare the values of First and Second, while GetHashCode would combine the hashcodes of the Tuple's members. </p> <pre><code> //4.0 Beta1 GetHashCode implementation int a = 5; int b = 10; Tuple&lt;int, int&gt; t = new Tuple&lt;int, int&gt;(a, b); Console.WriteLine(t.GetHashCode() == (((a &lt;&lt; 5) + a) ^ b)); </code></pre> http://stackoverflow.com/questions/1175334/whats-the-c-equivalent-to-the-with-statement-in-vb/1175342#1175342 2 Answer by foson for What's the C# equivalent to the With statement in VB? foson 2009-07-24T01:12:00Z 2009-07-24T01:12:00Z <p>The closest thing in C# 3.0, is that you can use a constructor to initialize properties:</p> <pre><code>Stuff.Elements.Foo foo = new Stuff.Elements.Foo() {Name = "Bob Dylan", Age = 68, Location = "On Tour", IsCool = true} </code></pre> http://stackoverflow.com/questions/440156/when-is-net-4-0-and-visual-studio-2010-supposed-to-be-released/1111030#1111030 1 Answer by foson for When is .NET 4.0 and Visual Studio 2010 supposed to be released? foson 2009-07-10T17:54:23Z 2009-07-10T17:54:23Z <p>The MVC team and Channel9 10-4 videos talk about a Beta 2 release, so factor that into your estimate.</p> http://stackoverflow.com/questions/1109675/handling-forgotten-passwords-when-designing-desktop-applications/1109704#1109704 1 Answer by foson for Handling forgotten passwords when designing desktop applications foson 2009-07-10T13:58:26Z 2009-07-10T13:58:26Z <p>How about just allowing a password hint, like Windows does?</p> <p>P.S. You should never email a password, maybe just a one-use password or a link to reset the password.</p> http://stackoverflow.com/questions/1082442/why-does-net-create-new-substrings-instead-of-pointing-into-existing-strings 3 Why does .NET create new substrings instead of pointing into existing strings? foson 2009-07-04T15:42:30Z 2009-07-06T14:44:39Z <p>From a brief look using Reflector, it looks like <code>String.Substring()</code> allocates memory for each substring. Am I correct that this is the case? I thought that wouldn't be necessary since strings are immutable. </p> <p>My underlying goal was to create a <code>IEnumerable&lt;string&gt; Split(this String, Char)</code> extension method that allocates no additional memory. </p> http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c/1078109#1078109 0 Answer by foson for Fastest function to generate Excel column letters in C# foson 2009-07-03T07:06:31Z 2009-07-03T07:52:40Z <p>Caching really does cut the runtime of 10,000,000 random calls to 1/3 its value though:</p> <pre><code> static Dictionary&lt;int, string&gt; LetterDict = new Dictionary&lt;int, string&gt;(676); public static string LetterWithCaching(int index) { int intCol = index - 1; if (LetterDict.ContainsKey(intCol)) return LetterDict[intCol]; int intFirstLetter = ((intCol) / 676) + 64; int intSecondLetter = ((intCol % 676) / 26) + 64; int intThirdLetter = (intCol % 26) + 65; char FirstLetter = (intFirstLetter &gt; 64) ? (char)intFirstLetter : ' '; char SecondLetter = (intSecondLetter &gt; 64) ? (char)intSecondLetter : ' '; char ThirdLetter = (char)intThirdLetter; String s = string.Concat(FirstLetter, SecondLetter, ThirdLetter).Trim(); LetterDict.Add(intCol, s); return s; } </code></pre> <p>I think caching in the worst-case (hit every value) couldn't take up more than 250kb (17576 possible values * (sizeof(int)=4 + sizeof(char)*3 + string overhead=2) </p> http://stackoverflow.com/questions/443772/how-do-i-convert-excel-openxml-shared-strings-to-inline-strings/1078042#1078042 0 Answer by foson for How do I convert Excel OpenXML shared strings to inline strings? foson 2009-07-03T06:47:37Z 2009-07-03T06:47:37Z <p>It should be pretty easy to do so (just iterate through though each page/row/shared string cell looking up its value in the table and then changing its value and type), but why would you want to (unless you were doing some XSLT or something)? By inlining everything, you probably increase file size. Just make sure any cell you modify you change to inline string. </p> http://stackoverflow.com/questions/1044047/sending-an-email-attachment-in-memory-using-openxml/1077981#1077981 1 Answer by foson for Sending an email attachment in memory using OpenXML foson 2009-07-03T06:21:52Z 2009-07-03T06:21:52Z <p>For your "content unreadable" problem, make sure to Save() your Workbooks and Worksheets and enclose your SpreadsheetDocument in a using statement to ensure all packages and zipped streams are flushed, closed and so on.</p> <pre><code>System.IO.MemoryStream stream = new System.IO.MemoryStream(); using (SpreadsheetDocument package = SpreadsheetDocument.Create(stream, SpreadsheetDocumentType.Workbook))) { AddParts(package); //Save if AddParts hasn't done it } System.Net.Mail.Attachment file = ... </code></pre> http://stackoverflow.com/questions/1012547/creating-excel-document-with-openxml-sdk-2-0/1060587#1060587 2 Answer by foson for Creating Excel document with OpenXml sdk 2.0 foson 2009-06-29T21:12:29Z 2009-07-03T05:42:04Z <p>Note: OpenXML 2.0 SDK is currently in CTP and is not licensed for production use until Office2010. </p> <p>My general methodoloy to deal with OpenXML SDK is to create a blank document and a document with just the features you'd like to learn how to implement (like background color) and use the SDK's OpenXmlDiff to see what changes need to be made to implement the feature. </p> <p>If you are creating a document from scratch, you can use DocumentReflector to generate the code for the default Stylesheet object and then add the styles you need.</p> <p>Starting with the default:</p> <pre><code>new Stylesheet( new Fonts( new Font( new FontSize() { Val = 10D }, new Color() { Theme = (UInt32Value)1U }, new FontName() { Val = "Arial" }, new FontFamilyNumbering() { Val = 2 }) ) { Count = (UInt32Value)1U }, new Fills( new Fill( new PatternFill() { PatternType = PatternValues.None }), new Fill( new PatternFill() { PatternType = PatternValues.Gray125 }) ) { Count = (UInt32Value)2U }, new Borders(... ... ... new CellFormats( new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U }) { Count = (UInt32Value)1U }, ... </code></pre> <p>I've added a new Font of size 12 and a new Fill with red background (Indexed value 64), and added new CellFormats that reference the index of the new Font and Fill. (Make sure to update the Counts too)</p> <pre><code>new Stylesheet( new Fonts( new Font( new FontSize() { Val = 10D }, new Color() { Theme = (UInt32Value)1U }, new FontName() { Val = "Arial" }, new FontFamilyNumbering() { Val = 2 }), new Font( new FontSize() { Val = 12D }, new Color() { Theme = (UInt32Value)1U }, new FontName() { Val = "Arial" }, new FontFamilyNumbering() { Val = 2 }) ) { Count = (UInt32Value)2U }, new Fills( new Fill( new PatternFill() { PatternType = PatternValues.None }), new Fill( new PatternFill() { PatternType = PatternValues.Gray125 }), new Fill( new PatternFill() { PatternType = PatternValues.Solid, ForegroundColor = new ForegroundColor() { Rgb = "FFFF0000" }, BackgroundColor = new BackgroundColor() { Indexed = 64 } }) ) { Count = (UInt32Value)3U }, new Borders( new Border( new LeftBorder(), new RightBorder(), new TopBorder(), new BottomBorder(), new DiagonalBorder()) ) { Count = (UInt32Value)1U }, new CellStyleFormats( new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U } ) { Count = (UInt32Value)1U }, new CellFormats( new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U }, new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U }, new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)2U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U } ) { Count = (UInt32Value)3U }, new CellStyles( new CellStyle() { Name = "Normal", FormatId = (UInt32Value)0U, BuiltinId = (UInt32Value)0U } ) { Count = (UInt32Value)1U }, new DifferentialFormats() { Count = (UInt32Value)0U }, new TableStyles() { Count = (UInt32Value)0U, DefaultTableStyle = "TableStyleMedium9", DefaultPivotStyle = "PivotStyleLight16" }); </code></pre> <p>Then, in code, I apply the CellStyle index to the cells I want to format: (There was already data in cells A2 and A3. Cell A2 gets the larger size, A3 gets red background)</p> <pre><code>SheetData sheetData = worksheetPart.Worksheet.GetFirstChild&lt;SheetData&gt;(); sheetData.Descendants&lt;Row&gt;().Where(r =&gt; r.RowIndex == 2U).First().Descendants&lt;Cell&gt;().First().StyleIndex = 1U; sheetData.Descendants&lt;Row&gt;().Where(r =&gt; r.RowIndex == 3U).First().Descendants&lt;Cell&gt;().First().StyleIndex = 2U; </code></pre> http://stackoverflow.com/questions/1064208/c-net-charts-libraries-code/1064267#1064267 2 Answer by foson for C# .NET Charts Libraries/Code? foson 2009-06-30T15:17:28Z 2009-06-30T15:17:28Z <p>I've worked with the <a href="http://go.microsoft.com/fwlink/?LinkId=127912" rel="nofollow">Office Open XML Library</a> (<a href="http://msdn.microsoft.com/en-us/office/bb265236.aspx" rel="nofollow">portal</a>), which allows you to create Excel files without Office interop. Its a little hard to learn, since you have to learn the underlying document format, and Version 2.0 is still in CTP until Office14 comes out, but its a fast (performant) and free solution.</p> http://stackoverflow.com/questions/1064213/determine-the-name-of-a-constant-based-on-the-value/1064250#1064250 3 Answer by foson for Determine the name of a constant based on the value foson 2009-06-30T15:13:51Z 2009-06-30T15:13:51Z <p>You may be interested in Enums instead, which can be programmatically converted from name to value and vice versa.</p> http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/937971#937971 0 Answer by foson for Does it help to use NGEN ? foson 2009-06-02T05:06:37Z 2009-06-04T16:03:06Z <p>NGen isn't the way to go for ASP.NET -- the creation of the .dlls in the bin folder isn't the final step -- they are compiled again with the web/maching.config settings applied into your <code>C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files</code> folder. Instead of NGen, to decrease initial load-time, use the Publish Website Tool or aspnet_compiler.exe</p> http://stackoverflow.com/questions/910873/how-can-i-determine-if-a-file-is-binary-or-text-in-c/911088#911088 0 Answer by foson for How can I determine if a file is binary or text in c#? foson 2009-05-26T14:46:13Z 2009-05-26T14:46:13Z <p><a href="http://codesnipers.com/?q=node/68" rel="nofollow">http://codesnipers.com/?q=node/68</a> describes how to detect UTF-16 vs. UTF-8 using a Byte Order Mark (which may appear in your file). It also suggests looping through some bytes to see if they conform to the UTF-8 multi-byte sequence pattern (below) to determine if your file is a text file. </p> <ul> <li>0xxxxxxx ASCII &lt; 0x80 (128) </li> <li>110xxxxx 10xxxxxx 2-byte >= 0x80 </li> <li>1110xxxx 10xxxxxx 10xxxxxx 3-byte >= 0x400 </li> <li>11110xxx 10xxxxxx 10xxxxxx 10xxxxxx 4-byte >= 0x10000</li> </ul> http://stackoverflow.com/questions/863826/determine-local-culture-of-a-pc-without-creating-an-application 0 Determine local culture of a PC without creating an application foson 2009-05-14T14:58:30Z 2009-05-14T17:00:22Z <p>Hi,</p> <p>Is there any way to determine the local culture of a PC (such as en-US) without running an application? I tried looking in Control Panel | Regional Settings (running WinXP), but I don't know how the choices there map to the PC's culture.</p> <p>I'm looking for a solution that doesn't require creating an .exe, such as running a command from the command prompt (not PowerShell), or a VbScript or JS file (as long as we are getting the real culture and not IE settings.)</p> <p>Thanks</p> http://stackoverflow.com/questions/748496/which-controls-does-the-enableviewstate-affect-on-a-gridview/748525#748525 0 Answer by foson for Which controls does the EnableViewState affect on a GridView? foson 2009-04-14T17:11:09Z 2009-04-14T17:11:09Z <p>From <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.aspx" rel="nofollow">MSDN</a>:</p> <p>The GridView control is re-created on postback based on the information that is stored in ViewState. If the GridView control includes a TemplateField or a CommandField with the CausesValidation property set to true, then the EnableViewState property must also be set to true to ensure that concurrent data operations, such as updates and deletes, apply to the appropriate row.</p> <p>Paging and column sorting info will be stored in control state and won't be affected by the change.</p> http://stackoverflow.com/questions/272097/net-dynamically-refresh-app-config/748467#748467 0 Answer by foson for .net dynamically refresh app.config foson 2009-04-14T16:55:51Z 2009-04-14T16:55:51Z <p>Just a note, in WinForms, you can make programmatic changes to your app.config before your application loads (before <code>Application.Start(new Form1())</code>), as long as you use <code>System.Xml</code> instead of <code>System.Configuration.ConfigurationManager</code></p> <pre><code>string configFile = Application.ExecutablePath + ".config"; //c:\path\exename.exe.config XmlDocument xdoc = new XmlDocument(); xdoc.Load(configFile); XmlNode node = xdoc.SelectSingleNode("/configuration/appSettings/add[@key='nodeToChange']/@value"); node.Value = "new value"; File.WriteAllText(setFile, xdoc.InnerXml); </code></pre> http://stackoverflow.com/questions/663382/single-method-for-multiple-types/663400#663400 2 Answer by foson for Single method for multiple types? foson 2009-03-19T18:18:23Z 2009-03-19T19:31:28Z <p>Casting usually creates a new object, which is unnecessary in this case</p> <p>The more OOP way to do this would be through a base class or an interface.</p> <pre><code>class Type1 : IOperatableType {} class Type2 : IOperatableType {} class Type3 : IOperatableType {} void Operate ( IOperatableType a ) </code></pre> <p>or</p> <pre><code>class Type1 : Type0 {} class Type2 : Type0 {} class Type3 : Type0 {} void Operate ( Type0 a ) </code></pre> <p>The calling method (Operate in this case) depends on using its parameters' methods or properties. If these properties/methods are defined across all types (type1, type2, type3), consider using an interface that defines common fuctionality. If the implementation of the properties and methods are the same, save yourself from repeated code and consider inheriting from a base class. </p> <p>Also, when trying to understand your code, developers are more likely to first look at a class diagram, which allows them to see the relationship between classes, or at least the class definition (which will show the base types and implemented interfaces) rather than looking into (implicit/explicit) operators to see which class is castable to which other class.</p> http://stackoverflow.com/questions/663310/lastchildfill-not-working-when-trying-to-dock-itemscontrol/663543#663543 2 Answer by foson for LastChildFill Not Working When Trying To Dock ItemsControl foson 2009-03-19T18:51:30Z 2009-03-19T18:51:30Z <p>If you remove the Canvas completely, you will not have this problem. Once you introduce a canvas, you need to set size and position of elements in the Canvas (like the DockPanel). </p> http://stackoverflow.com/questions/345883/why-doesnt-vs-2008-display-extension-methods-in-intellisense-for-string-class/1656734#1656734 Comment by foson on Why doesn't VS 2008 display extension methods in Intellisense for String class foson 2009-11-13T17:01:35Z 2009-11-13T17:01:35Z A more intelligent Intellisense. Excellent. http://stackoverflow.com/questions/1331131/optional-readonly-property-in-vb-net-interface/1331150#1331150 Comment by foson on Optional Readonly Property in VB.Net Interface foson 2009-08-25T21:36:37Z 2009-08-25T21:36:37Z I think the question was asking for VB.NET code http://stackoverflow.com/questions/806771/how-to-convert-xlsx-files-into-2003-xls-files-programatically-in-c/1223673#1223673 Comment by foson on How to convert xlsx files into 2003 xls files programatically in C#? foson 2009-08-24T13:48:32Z 2009-08-24T13:48:32Z Do you have Office PIAs installed on the server? <a href="http://www.microsoft.com/downloads/details.aspx?familyid=3c9a983a-ac14-4125-8ba0-d36d67e0f4ad&amp;displaylang=en" rel="nofollow">microsoft.com/downloads/&hellip;</a> http://stackoverflow.com/questions/155532/strict-xhtml-compliance-in-asp-net-2-0-3-5/155562#155562 Comment by foson on Strict XHTML compliance in ASP.NET 2.0/3.5 foson 2009-08-05T19:28:16Z 2009-08-05T19:28:16Z ASP.NET MVC 1.0 was released 2009-03-17. Work is currently on a 2.0 version. http://stackoverflow.com/questions/536441/xpath-namespace-driving-me-crazy/536519#536519 Comment by foson on XPath + Namespace Driving me crazy foson 2009-06-30T17:19:07Z 2009-06-30T17:19:07Z you dont need to create a new XmlDocument to get a XmlNameTable. you can use nsMgr = new XmlNamespaceManager(new NameTable()); http://stackoverflow.com/questions/932414/generating-a-word-document-with-c/942284#942284 Comment by foson on Generating a Word Document with C# foson 2009-06-30T03:11:01Z 2009-06-30T03:11:01Z OpenXml SDK 2.0 is still in CTP and licensing is for testing purposes only (prop until Office 14 comes out) http://stackoverflow.com/questions/824056/openxml-sdk-spreadsheet-starter-kits Comment by foson on OpenXML SDK Spreadsheet starter kits foson 2009-06-29T16:03:07Z 2009-06-29T16:03:07Z to me, excel-2007 implies Microsoft Office interop. Since the OpenXML standard does not rely on Excel at all, I think SpreadsheetML is a better tag. http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/385851#385851 Comment by foson on Does it help to use NGEN ? foson 2009-06-04T04:55:17Z 2009-06-04T04:55:17Z Does ASP.NET really use an NGen'ed assembly? http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/923419#923419 Comment by foson on Does it help to use NGEN ? foson 2009-06-02T04:56:27Z 2009-06-02T04:56:27Z This was only the case for .NET framework 1.0/1.1 In 2.0 and on, native images can be shared across the app domains. See the different versions of <a href="http://msdn.microsoft.com/en-us/library/6t9t5wcf.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/824311/c-net-start-outlook/824352#824352 Comment by foson on C#.NET start Outlook..? foson 2009-05-20T22:01:43Z 2009-05-20T22:01:43Z I am told that when using Office interop, never use the XXXClass classes. I think you mean var outlook = new Microsoft.Office.Interop.Outlook.Application(); http://stackoverflow.com/questions/863826/determine-local-culture-of-a-pc-without-creating-an-application/864524#864524 Comment by foson on Determine local culture of a PC without creating an application foson 2009-05-18T16:15:32Z 2009-05-18T16:15:32Z Thanks Y: On XP, I can look at the 'Locale' value under HKCU\Control Panel\International\. It is a Hex representation of the culture's LCID. http://stackoverflow.com/questions/663382/single-method-for-multiple-types/663407#663407 Comment by foson on Single method for multiple types? foson 2009-03-19T20:39:43Z 2009-03-19T20:39:43Z Intellisense won't help you out here. As you type the method Operate(), Intellisense will only tell you that it takes a type0. You won't be able to tell that you could put in a type1 unless you open up the definition of type1. http://stackoverflow.com/questions/663382/single-method-for-multiple-types/663406#663406 Comment by foson on Single method for multiple types? foson 2009-03-19T19:03:59Z 2009-03-19T19:03:59Z but FileStream, NetworkStream, MemoryStream inherit from Stream. There is no indication from the question that type1 inherits from type0 http://stackoverflow.com/questions/596416/can-visual-studio-compile-project-references-into-a-different-folder-then-the-mai/596521#596521 Comment by foson on Can Visual Studio compile project references into a different folder then the main .exe foson 2009-02-27T20:50:48Z 2009-02-27T20:50:48Z If these are project references, I'd agree with you, but if these are just precompiled dlls, you may as well copy them from their source in the postbuild. Also, if you were creating an msi, you wouldn't want the dlls to be part of the primary output, which I believe they would be if CopyLocal=true. http://stackoverflow.com/questions/596316/how-to-design-a-inherited-collection Comment by foson on How to design a inherited collection foson 2009-02-27T20:04:08Z 2009-02-27T20:04:08Z Is ResultInfo an abstract base class?