User foson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:21:58Zhttp://stackoverflow.com/feeds/user/22539http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1330763/when-will-silverlight-4-come-out-what-features-will-it-have2When will Silverlight 4 come out? What features will it have?foson2009-08-25T20:25:57Z2009-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-class5Why doesn't VS 2008 display extension methods in Intellisense for String classfoson2008-12-06T04:04:55Z2009-11-01T09:30:47Z
<p>Since String implements <code>IEnumerable<char></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<char>(...)</code>, <code>.ToList<char>()</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-ihttpasynchandler0Trouble sending file through IHttpAsyncHandlerfoson2009-10-27T18:30:28Z2009-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><%@ WebHandler Language="C#" Class="PreviewPDF" %>
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-sinkholes17.NET time sinkholes?foson2008-10-02T03:01:54Z2009-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-datatable0Maximum size for a byte[] in a .Net DataSet/DataTablefoson2009-09-03T17:52:25Z2009-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#13689120Answer by foson for innerText of XmlNode from a Stringfoson2009-09-02T16:54:06Z2009-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#13684390Answer by foson for How to replace content in template docx document and Open XML SDK 2.0 (Aug 09)?foson2009-09-02T15:35:50Z2009-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#13307670Answer by foson for When is Visual Studio 2010 expected to RTM?foson2009-08-25T20:26:35Z2009-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#13287412Answer by foson for Discussion: Silverlight 4 expectationsfoson2009-08-25T14:40:04Z2009-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#12903061Answer by foson for Is there a tool to remove unused methods in javascript?foson2009-08-17T20:42:47Z2009-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#12236730Answer by foson for How to convert xlsx files into 2003 xls files programatically in C#?foson2009-08-03T17:49:54Z2009-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#11962650Answer by foson for Reading SQL column name from querystring and building secure query from itfoson2009-07-28T19:32:03Z2009-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#11754562Answer by foson for Opaque dictionary key pattern in C#foson2009-07-24T02:11:32Z2009-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<int, int> t = new Tuple<int, int>(a, b);
Console.WriteLine(t.GetHashCode() == (((a << 5) + a) ^ b));
</code></pre>
http://stackoverflow.com/questions/1175334/whats-the-c-equivalent-to-the-with-statement-in-vb/1175342#11753422Answer by foson for What's the C# equivalent to the With statement in VB?foson2009-07-24T01:12:00Z2009-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#11110301Answer by foson for When is .NET 4.0 and Visual Studio 2010 supposed to be released?foson2009-07-10T17:54:23Z2009-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#11097041Answer by foson for Handling forgotten passwords when designing desktop applicationsfoson2009-07-10T13:58:26Z2009-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-strings3Why does .NET create new substrings instead of pointing into existing strings?foson2009-07-04T15:42:30Z2009-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<string> 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#10781090Answer by foson for Fastest function to generate Excel column letters in C# foson2009-07-03T07:06:31Z2009-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<int, string> LetterDict = new Dictionary<int, string>(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 > 64) ? (char)intFirstLetter : ' ';
char SecondLetter = (intSecondLetter > 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#10780420Answer by foson for How do I convert Excel OpenXML shared strings to inline strings?foson2009-07-03T06:47:37Z2009-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#10779811Answer by foson for Sending an email attachment in memory using OpenXMLfoson2009-07-03T06:21:52Z2009-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#10605872Answer by foson for Creating Excel document with OpenXml sdk 2.0foson2009-06-29T21:12:29Z2009-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<SheetData>();
sheetData.Descendants<Row>().Where(r => r.RowIndex == 2U).First().Descendants<Cell>().First().StyleIndex = 1U;
sheetData.Descendants<Row>().Where(r => r.RowIndex == 3U).First().Descendants<Cell>().First().StyleIndex = 2U;
</code></pre>
http://stackoverflow.com/questions/1064208/c-net-charts-libraries-code/1064267#10642672Answer by foson for C# .NET Charts Libraries/Code?foson2009-06-30T15:17:28Z2009-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#10642503Answer by foson for Determine the name of a constant based on the valuefoson2009-06-30T15:13:51Z2009-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#9379710Answer by foson for Does it help to use NGEN ?foson2009-06-02T05:06:37Z2009-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#9110880Answer by foson for How can I determine if a file is binary or text in c#?foson2009-05-26T14:46:13Z2009-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 < 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-application0Determine local culture of a PC without creating an applicationfoson2009-05-14T14:58:30Z2009-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#7485250Answer by foson for Which controls does the EnableViewState affect on a GridView?foson2009-04-14T17:11:09Z2009-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#7484670Answer by foson for .net dynamically refresh app.configfoson2009-04-14T16:55:51Z2009-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#6634002Answer by foson for Single method for multiple types?foson2009-03-19T18:18:23Z2009-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#6635432Answer by foson for LastChildFill Not Working When Trying To Dock ItemsControlfoson2009-03-19T18:51:30Z2009-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#1656734Comment by foson on Why doesn't VS 2008 display extension methods in Intellisense for String classfoson2009-11-13T17:01:35Z2009-11-13T17:01:35ZA more intelligent Intellisense. Excellent.http://stackoverflow.com/questions/1331131/optional-readonly-property-in-vb-net-interface/1331150#1331150Comment by foson on Optional Readonly Property in VB.Net Interfacefoson2009-08-25T21:36:37Z2009-08-25T21:36:37ZI think the question was asking for VB.NET codehttp://stackoverflow.com/questions/806771/how-to-convert-xlsx-files-into-2003-xls-files-programatically-in-c/1223673#1223673Comment by foson on How to convert xlsx files into 2003 xls files programatically in C#?foson2009-08-24T13:48:32Z2009-08-24T13:48:32ZDo you have Office PIAs installed on the server? <a href="http://www.microsoft.com/downloads/details.aspx?familyid=3c9a983a-ac14-4125-8ba0-d36d67e0f4ad&displaylang=en" rel="nofollow">microsoft.com/downloads/…</a>http://stackoverflow.com/questions/155532/strict-xhtml-compliance-in-asp-net-2-0-3-5/155562#155562Comment by foson on Strict XHTML compliance in ASP.NET 2.0/3.5foson2009-08-05T19:28:16Z2009-08-05T19:28:16ZASP.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#536519Comment by foson on XPath + Namespace Driving me crazyfoson2009-06-30T17:19:07Z2009-06-30T17:19:07Zyou 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#942284Comment by foson on Generating a Word Document with C#foson2009-06-30T03:11:01Z2009-06-30T03:11:01ZOpenXml 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-kitsComment by foson on OpenXML SDK Spreadsheet starter kitsfoson2009-06-29T16:03:07Z2009-06-29T16:03:07Zto 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#385851Comment by foson on Does it help to use NGEN ?foson2009-06-04T04:55:17Z2009-06-04T04:55:17ZDoes ASP.NET really use an NGen'ed assembly? http://stackoverflow.com/questions/385841/does-it-help-to-use-ngen/923419#923419Comment by foson on Does it help to use NGEN ?foson2009-06-02T04:56:27Z2009-06-02T04:56:27ZThis 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/…</a> http://stackoverflow.com/questions/824311/c-net-start-outlook/824352#824352Comment by foson on C#.NET start Outlook..?foson2009-05-20T22:01:43Z2009-05-20T22:01:43ZI 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#864524Comment by foson on Determine local culture of a PC without creating an applicationfoson2009-05-18T16:15:32Z2009-05-18T16:15:32ZThanks 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#663407Comment by foson on Single method for multiple types?foson2009-03-19T20:39:43Z2009-03-19T20:39:43ZIntellisense 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#663406Comment by foson on Single method for multiple types?foson2009-03-19T19:03:59Z2009-03-19T19:03:59Zbut FileStream, NetworkStream, MemoryStream inherit from Stream. There is no indication from the question that type1 inherits from type0http://stackoverflow.com/questions/596416/can-visual-studio-compile-project-references-into-a-different-folder-then-the-mai/596521#596521Comment by foson on Can Visual Studio compile project references into a different folder then the main .exefoson2009-02-27T20:50:48Z2009-02-27T20:50:48ZIf 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-collectionComment by foson on How to design a inherited collectionfoson2009-02-27T20:04:08Z2009-02-27T20:04:08ZIs ResultInfo an abstract base class?