User Larsenal - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:38:32Z http://stackoverflow.com/feeds/user/337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925384/c-compilation-without-visual-studio/1925393#1925393 7 Answer by Larsenal for C# Compilation without visual studio Larsenal 2009-12-17T23:46:48Z 2009-12-17T23:46:48Z <p>The command line compiler is <strong>csc.exe</strong>.</p> <p>MSDN has <a href="http://msdn.microsoft.com/en-us/library/ms379563%28VS.80%29.aspx" rel="nofollow">an article</a> that might help get you started.</p> http://stackoverflow.com/questions/281826/what-is-the-adoption-rate-for-office-2007 2 What is the adoption rate for Office 2007? Larsenal 2008-11-11T18:55:45Z 2009-12-14T16:27:48Z <p>This IS a programming-related question.</p> <p>The actual numbers should guide how we build our app.</p> http://stackoverflow.com/questions/350453/how-to-set-selected-row-in-asp-net-gridview-based-on-datakey 0 How to set selected row in ASP.NET GridView based on DataKey? Larsenal 2008-12-08T18:50:34Z 2009-12-10T16:25:40Z <p>I want something similar to the following pseudocode:</p> <pre><code>myGridView.SelectedIndex = myGridView.DataKeys.IndexOf("mySpecificKey"); </code></pre> <p>I've done some Intellisense exploring, but I haven't found an obvious way to do this. I would want to set SelectedIndex to -1 if DataKey was not found.</p> http://stackoverflow.com/questions/762031/is-sitecore-slow-and-buggy 5 Is SiteCore slow and buggy? Larsenal 2009-04-17T20:16:45Z 2009-12-08T16:13:10Z <p>I've seen plenty of negative comments regarding performance and general bugginess. However, to be fair, most of these look like they were within the v5.3 timeframe. Have they fixed all of those issues in v6.0? Is it an excellent product?</p> <p>Some examples of the complaints:</p> <p>Maybe it’s just a case of user error, but this guy says, “some pages take as much as 20s to render…” <a href="http://stackoverflow.com/questions/355783/one-large-xslt-over-smaller-more-granular-ones">Source</a></p> <p>Here, in the comments, one fellow remaks, “Sitecore backend is incredible slow. Sitecore developement is really pain, it takes from 2 minutes to start sitecore and many many seconds to do small backend operations. They claim to have a quick client, but that is a BIG LIE. All developers in my company really hate sitecore for being so slow.” <a href="http://sitecore.alexiasoft.nl/2006/09/27/be-friendly-to-the-sitecore-editors/" rel="nofollow">Source</a></p> <p>Another search yielded, “Sitecore’s users listed three issues as number one: licensing, the server as a resource hog, and the site’s slow responsiveness.” <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=7&amp;url=https%3A%2F%2Fconfluence.spu.edu%2Fdownload%2Fattachments%2F9830456%2FAdminWrapUpSummary.doc&amp;ei=meDoSd6dBJCOtgPd3Z3rAQ&amp;usg=AFQjCNHNhs8TU3QuKZ3p-7FiT4L4g5bMdg&amp;sig2=bhh1xEw9zRreOwukuqtl0g" rel="nofollow">Source</a></p> http://stackoverflow.com/questions/1834802/get-pagename-aspx-from-page-object/1834841#1834841 0 Answer by Larsenal for Get PageName.aspx from Page object Larsenal 2009-12-02T18:25:24Z 2009-12-02T18:25:24Z <pre><code>public string GetCurrentPageName() { string sPath = Request.Url.AbsolutePath; System.IO.FileInfo oInfo = new System.IO.FileInfo(sPath); string sRet = oInfo.Name; return sRet; } </code></pre> <p><em>(Adapted from <a href="http://www.aspcode.net/Get-current-page-name.aspx" rel="nofollow">http://www.aspcode.net/Get-current-page-name.aspx</a>)</em></p> http://stackoverflow.com/questions/1822921/best-way-to-keep-track-of-current-online-users/1822944#1822944 0 Answer by Larsenal for Best way to keep track of current online users Larsenal 2009-11-30T22:43:01Z 2009-11-30T22:43:01Z <p>For every user action that you can record, you need to consider them "online" for a certain window of time. Depending on the site, you may set that to 5 minutes. The actual web request should take less than a second. You have to make <em>some</em> assumption about how long they might stay on that page and do nothing but be considered online.</p> <p>This approach requires that you keep track of the time of each users last activity.</p> http://stackoverflow.com/questions/158741/what-is-an-appropriate-use-for-asp-nets-multiview-control 8 What is an appropriate use for ASP.NET's MultiView control? Larsenal 2008-10-01T17:29:27Z 2009-11-29T13:57:36Z <p>What are some scenarios where MultiView would be a good choice? The MultiView control along with its View controls simply seem to extend the notion of Panels.</p> <p>Both Panels and MultiViews seem prone to abuse. If your UI concerns and biz logic concerns are properly separated, why lump views together in a single ASPX?</p> http://stackoverflow.com/questions/1760097/does-ie9-keep-the-compatibility-view-button 0 Does IE9 keep the "Compatibility View" button? Larsenal 2009-11-19T00:23:37Z 2009-11-24T17:10:40Z <p>Hopefully the title says it all.</p> <p>Why is this a programming question? If IE9 were to take a different approach to "compatibility" it would be relevant especially to maintaining legacy sites.</p> http://stackoverflow.com/questions/1511780/does-a-silverlight-line-need-width-and-height-defined 0 Does a Silverlight <Line> need Width and Height defined? Larsenal 2009-10-02T21:05:39Z 2009-11-22T06:00:03Z <p>It seems that a won't be visible unless a height and width is specified. Is this true?</p> <p>This seems rather tedious. Couldn't the bounds of the line imply the correct width and height?</p> <pre><code> &lt;Canvas Height="200" Width="200" HorizontalAlignment="Left" Background="Beige"&gt; &lt;!-- This is visible --&gt; &lt;Line X1="20" Y1="40" X2="70" Y2="90" Stroke="Black" StrokeThickness="4" Height="100" Width="100" /&gt; &lt;!-- This is not visible --&gt; &lt;Line X1="10" Y1="10" X2="50" Y2="50" Stroke="Black" StrokeThickness="4"/&gt; &lt;/Canvas&gt; </code></pre> <p>(I'm using Silverlight 3.)</p> http://stackoverflow.com/questions/1760108/what-does-silverligtht-4-0-trusted-mode-mean-on-a-mac 0 What does Silverligtht 4.0 Trusted Mode mean on a Mac? Larsenal 2009-11-19T00:26:15Z 2009-11-21T14:47:54Z <p>Are there any special considerations we will need to take into account for Mac scenarios? Furthermore, with features such as COM interop which aren't applicable on a Mac, how do you give visibility of these capabilities to your code?</p> <pre><code>if (Silverlight.Environment.SupportsCOMInterop) { // do stuff } </code></pre> <p>More generally, could your code determine whether it's running on a Mac or Windows?</p> http://stackoverflow.com/questions/1766902/remove-all-columns-with-no-data-from-datatable 0 Remove all columns with no data from DataTable Larsenal 2009-11-19T22:05:22Z 2009-11-19T22:43:54Z <p>If all the items for a particular column are empty, I want to remove that column from the DataTable. What's the most elegant way to do this operation on all columns in the DataTable?</p> http://stackoverflow.com/questions/285524/how-to-prevent-html-encoding-for-embedded-expressions-in-xml-literals-vb-net 1 How to prevent HTML encoding for embedded expressions in XML Literals (VB.NET)? Larsenal 2008-11-12T21:56:40Z 2009-11-19T04:16:52Z <p>With the following code:</p> <pre><code>Dim x As System.Xml.Linq.XElement = _ &lt;div&gt; &lt;%= message.ToString() %&gt; &lt;/div&gt; Dim m = x.ToString() </code></pre> <p>...if message is HTML, then the &lt; and > characters get converted to &amp;lt; and &amp;rt;. </p> <p>How can I force it to skip this encoding?</p> http://stackoverflow.com/questions/1726291/potential-impact-of-resetting-coldfusion-admin-password 4 Potential impact of resetting ColdFusion admin password Larsenal 2009-11-13T00:05:01Z 2009-11-13T00:37:06Z <p>It seems there is <a href="http://devnulled.com/content/2004/02/retrieving-and-resetting-coldfusion-administrator-passwords/" rel="nofollow">a way to reset the Admin password for a ColdFusion installation</a>. What are the potential pitfalls to be aware of before doing so?</p> http://stackoverflow.com/questions/1718987/how-do-you-launch-a-winform-app-from-within-an-asp-net-page/1719117#1719117 3 Answer by Larsenal for How do you launch a winform app from within an asp.net page? Larsenal 2009-11-12T00:41:43Z 2009-11-12T00:58:31Z <p>If you have the ability to install the WinForm app up front, look at <strong><a href="http://msdn.microsoft.com/en-us/library/aa767914%28VS.85%29.aspx" rel="nofollow">Application Protocol registration</a></strong>. It's described well by Mozilla <strong><a href="http://kb.mozillazine.org/Register%5Fprotocol" rel="nofollow">here</a></strong>.</p> <p>That would allow you to add a URL in your ASP.NET application along the lines of:</p> <pre><code>thing:SomethingThatThingUnderstands </code></pre> <p>Here's an example (from the page I linked to) of a URL link that would open OneNote:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Test of onenote: application protocol&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Open the &lt;a href="onenote://C:\Program Files\Microsoft Office\Templates\1033\ONENOTE\12\Stationery\BLANK.ONE"&gt; Notebook.&lt;/a&gt;&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1716447/creating-a-asp-net-application-converting-text-to-speech/1716495#1716495 0 Answer by Larsenal for Creating a ASP.NET application converting text to speech Larsenal 2009-11-11T16:44:06Z 2009-11-11T17:47:37Z <p>With the SpeechSynthesizer, you can output to a WAV file. You could then have a secondary process compress or convert to another format if needed. All this could be done on the server and then sent up through the browser.</p> <p><a href="http://www.codeproject.com/KB/dotnet/Speech%5FSample.aspx" rel="nofollow">This CodeProject article</a> is a good introduction to .NET Speech Synthesis.</p> <p>If you want to see how it performs with a LOT of text.... Add a reference to System.Speech and then use the following as a starting point:</p> <pre><code>using System; using System.Speech.Synthesis; namespace SpeakToMe { class Program { static void Main(string[] args) { SpeechSynthesizer synth = new SpeechSynthesizer(); synth.SetOutputToWaveFile("c:\\test.wav"); synth.Speak("Hello, world."); synth.SetOutputToDefaultAudioDevice(); Console.ReadLine(); } } } </code></pre> <p>A quick test on a file of 44,700 words (238KB) on my relatively fast machine...</p> <ul> <li>Completed in 55 seconds</li> <li>Generated a 626 MB WAV file</li> </ul> http://stackoverflow.com/questions/1669427/adding-visible-elements-to-a-custom-panel-in-silverlight-3 1 Adding visible elements to a custom Panel in Silverlight 3 Larsenal 2009-11-03T18:56:20Z 2009-11-03T19:11:31Z <p>As I understand it, a Panel isn't meant to have any visible "chrome." The StackPanel, Grid and Canvas don't have any visible elements (with the exception of the gridlines, which they say are only for debugging layout.)</p> <p>In my example, I am going to create a Custom Panel that uses Attached Properties to lay out its children controls. However, I want my Custom Panel to present a visible "grid" of sorts in the background. The look of the grid (sizing and positioning) will depend on the size and position of the child elements.</p> <p>What are some of the ways to achieve this? Being very new to Silverlight and XAML in general, my first guess was to create a Custom Control which includes my custom panel for layout.</p> <p>I think I'll be able to figure out the specific code, but I need to be pointed in the right direction in terms of what building blocks are appropriate for this scenario.</p> http://stackoverflow.com/questions/1664549/why-doesnt-silverlight-support-cursors-sizeall 1 Why doesn't Silverlight support Cursors.SizeAll? Larsenal 2009-11-03T00:24:32Z 2009-11-03T08:21:20Z <p><strong>Cursors.SizeAll</strong> is one of a few Windows cursors that are apparently off-limits for Silverlight. What is the reason for this?</p> <p>I read <a href="http://social.msdn.microsoft.com/Forums/zh-TW/1511/thread/b9cabd98-4c8f-4cd3-b1ca-4f49dd586369" rel="nofollow">somewhere</a> (not English) that it was done to reduce the size of the runtime. Is that true?</p> http://stackoverflow.com/questions/1653528/what-do-we-know-about-windows-8 -1 What do we know about Windows 8? [closed] Larsenal 2009-10-31T05:34:48Z 2009-10-31T05:40:31Z <p>Those who have been running Win7 since the early builds (myself included) are eager to know what's coming next. While we may for the time being have little more than hearsay and hints, let's collect our collective SO knowledge on the next consumer version of Windows.</p> http://stackoverflow.com/questions/1634248/scheduling-employees-what-data-structure-to-use/1634272#1634272 2 Answer by Larsenal for Scheduling Employees - what data structure to use? Larsenal 2009-10-27T23:23:24Z 2009-10-27T23:23:24Z <p>A quick answer first:</p> <ul> <li>EmployeeID</li> <li>Date</li> <li>ShiftType</li> </ul> <p>That said, the best database design largely depends on what you're going to do with the data. If <em>all</em> you need to do is store the records and display them in a table similar to you example, your approach (while not elegant) would work.</p> <p>However, if you're going to retrieve the data or run reports, you're going to want something a little more structured than a string where each character represents the type of shift assignment.</p> http://stackoverflow.com/questions/1633116/anyone-know-of-a-good-word-count-algorithm-in-c/1633217#1633217 0 Answer by Larsenal for AnyOne Know of a Good Word Count Algorithm in C# Larsenal 2009-10-27T19:44:27Z 2009-10-27T19:44:27Z <p>As @astander suggests, you can do a String.Split as follows:</p> <pre><code>string[] a = s.Split( new char[] { ' ', ',', ';', '.', '!', '"', '(', ')', '?' }, StringSplitOptions.RemoveEmptyEntries); </code></pre> <p>By passing in an array of chars, you can split on multiple word breaks. Removing empty entries will keep you from counting non-word words.</p> http://stackoverflow.com/questions/1596442/linq-to-sql-convert-c-to-vb-net-help/1596455#1596455 4 Answer by Larsenal for Linq to Sql - Convert C# to VB.NET help Larsenal 2009-10-20T18:26:49Z 2009-10-20T22:25:33Z <p>Your "arrow" syntax in C#:</p> <pre><code>.Sum(v =&gt; v) </code></pre> <p>Can be converted to the following in VB.NET:</p> <pre><code>.Sum(Function(v) v) </code></pre> <p>The "arrow" syntax is a lambda expression. For more info on Lambda Expressions in VB.NET, check out <a href="http://msdn.microsoft.com/en-us/library/bb531253.aspx" rel="nofollow">this MSDN entry</a>.</p> http://stackoverflow.com/questions/1569514/prevent-cascadingdropdown-from-making-initial-ajax-call 0 Prevent CascadingDropDown from making initial AJAX call Larsenal 2009-10-14T23:10:32Z 2009-10-19T11:49:53Z <p>I'm going to pre-populate my drop down lists on the server side. I only want the cascading drop-down to fire if the parent control changes.</p> http://stackoverflow.com/questions/1469058/prevent-outlook-from-mangling-urls-sent-from-my-application 0 Prevent Outlook from mangling URLs sent from my application Larsenal 2009-09-23T23:35:28Z 2009-10-16T00:00:01Z <p>I have the following URL being sent in an email from my app:<br /></p> <pre><code>http://www.example.com/Account/VerifyLink.aspx?u=9SyQRr&amp;t=d3d3LnRlc3QuY29t </code></pre> <p>However, if this email is received and then forwarded in Outlook, the URL becomes</p> <pre><code>http://www.example.com/Account/VerifyLink.aspx?u=9SyQRr&amp;amp;t=d3d3LnRlc3QuY29t </code></pre> <p>Why does Outlook change the <strong>&amp;</strong> to <strong>&amp;amp;</strong>? And how can I prevent it from doing so? It's breaking my URL.</p> <p><em>For all the aggressive downvoters out there who think this isn't programming related...</em> I'm writing a program which relies on URLs being transmitted correctly through email. If Outlook mangles my URLs, then my program doesn't work.</p> http://stackoverflow.com/questions/1561617/edited-why-does-object-tostring-exist/1561631#1561631 1 Answer by Larsenal for EDITED: Why does object.ToString() exist? Larsenal 2009-10-13T17:10:00Z 2009-10-13T17:10:00Z <p>A "stringable" representation is useful in so many scenarios, the library designers probably thought ToString() was more straightforward.</p> http://stackoverflow.com/questions/1560737/the-fate-of-an-asp-net-control/1560771#1560771 0 Answer by Larsenal for The fate of an ASP.NET control Larsenal 2009-10-13T14:56:14Z 2009-10-13T14:56:14Z <p>Unless you have ambitions to sell more controls like this, I'd give it away for free. Assuming it's quality work, the benefits of peer recognition probably outweigh the net benefit of selling it.</p> http://stackoverflow.com/questions/1533974/reading-lotto-numbers/1533987#1533987 5 Answer by Larsenal for Reading Lotto Numbers Larsenal 2009-10-07T20:27:47Z 2009-10-07T20:27:47Z <p>Short answer: Yes.</p> <p>You'll have to provide more details if you want an answer with any more details.</p> http://stackoverflow.com/questions/1533683/how-to-take-a-user-input-of-an-array-in-c/1533734#1533734 1 Answer by Larsenal for How to take a user input of an array in c#?? Larsenal 2009-10-07T19:39:22Z 2009-10-07T19:47:49Z <p>Console.Read returns an <em>integer</em> corresponding to the key code. When you type the <em>character</em> "1" into the console, that doesn't translate to an integer 1 being returned from Console.Read().</p> <p>You can also get rid of a bunch of your variables used for indexing:</p> <pre><code> int[] a = new int[5]; int i = 1; Console.WriteLine("***************Taking User Input****************"); while (i &lt;= a.Length) { Console.Write(i + ". "); a[i-1] = Convert.ToInt32(Console.ReadLine()); if (a[i-1] == 0) break; // escape while loop if user inputs "0" i++; } </code></pre> http://stackoverflow.com/questions/1533491/disable-all-validator-controls-on-a-page 0 Disable all Validator controls on a page Larsenal 2009-10-07T18:55:22Z 2009-10-07T19:22:28Z <p>During the early stages of a dev cycle, it's a bit annoying to have all the validation controls enforcing their rules if we just want to move quickly from form to form.</p> <p>What is the simplest way to disable all the validator controls on a page?</p> http://stackoverflow.com/questions/1528724/converting-a-listint-to-a-comma-seperated-list/1528782#1528782 1 Answer by Larsenal for Converting a List<int> to a comma seperated list Larsenal 2009-10-07T00:01:17Z 2009-10-07T16:11:27Z <p>My "clever" entry:</p> <pre><code> List&lt;int&gt; list = new List&lt;int&gt; { 1, 2, 3 }; StringBuilder sb = new StringBuilder(); var y = list.Skip(1).Aggregate(sb.Append(x.ToString()), (sb1, x) =&gt; sb1.AppendFormat(",{0}",x)); // A lot of mess to remove initial comma Console.WriteLine(y.ToString().Substring(1,y.Length - 1)); </code></pre> <p>Just haven't figured how to conditionally add the comma.</p> http://stackoverflow.com/questions/1528709/set-operation-on-a-property-return-ilist-is-not-working/1528721#1528721 1 Answer by Larsenal for set operation on a property return IList is not working Larsenal 2009-10-06T23:44:03Z 2009-10-06T23:44:03Z <p>You can instantiate and assign a List just fine with a minor tweak:</p> <pre><code>private IList&lt;int&gt; _categoryIDs; // use IList instead of List public IList&lt;int&gt; CategoryIDs { get { return _categoryIDs; } set { _categoryIDs = value; } } </code></pre> http://stackoverflow.com/questions/1834802/get-pagename-aspx-from-page-object/1834841#1834841 Comment by Larsenal on Get PageName.aspx from Page object Larsenal 2009-12-02T19:56:21Z 2009-12-02T19:56:21Z You can't rely on getting it from the page object. Especially with URL routing becoming common, the page URL (PageName.aspx) may not always map to a page class named PageName. Like it or not, the correct way to get the &quot;page name&quot; used in the URL is to use the Request object. One of the properties of System.Web.UI.Page is Context. You say you don't want to worry about Context. However, a Page object is always going to have access to Context through that property. I think you need to help us understand why you're so adamant about using something other than Context. http://stackoverflow.com/questions/1822921/best-way-to-keep-track-of-current-online-users/1822933#1822933 Comment by Larsenal on Best way to keep track of current online users Larsenal 2009-11-30T22:43:11Z 2009-11-30T22:43:11Z I did write the same thing! http://stackoverflow.com/questions/1766902/remove-all-columns-with-no-data-from-datatable/1766950#1766950 Comment by Larsenal on Remove all columns with no data from DataTable Larsenal 2009-11-19T22:31:27Z 2009-11-19T22:31:27Z Maybe ;-). I've actually implemented it myself already. Just don't want to mark it correct yet since it doesn't completely answer the initial question. http://stackoverflow.com/questions/1766902/remove-all-columns-with-no-data-from-datatable/1766950#1766950 Comment by Larsenal on Remove all columns with no data from DataTable Larsenal 2009-11-19T22:23:02Z 2009-11-19T22:23:02Z Nice. Adjust code to check all the column names and you get the green checkmark. http://stackoverflow.com/questions/1725639/understanding-asp-net-instances-and-threading Comment by Larsenal on Understanding ASP.Net instances and threading Larsenal 2009-11-12T21:51:18Z 2009-11-12T21:51:18Z I'm not questioning the validity of your question at all... but I'm curious to know why you're interested in this. http://stackoverflow.com/questions/1718987/how-do-you-launch-a-winform-app-from-within-an-asp-net-page Comment by Larsenal on How do you launch a winform app from within an asp.net page? Larsenal 2009-11-12T19:27:55Z 2009-11-12T19:27:55Z The reason you won't find many examples is straightforward. There's no easy, conventional way to do it. The approach I mentioned may work, but there is a fair amount of hassle. A lot of folks probably just change their business process so that they don't rely on being able to launch a winform app from an asp.net page. http://stackoverflow.com/questions/1718987/how-do-you-launch-a-winform-app-from-within-an-asp-net-page Comment by Larsenal on How do you launch a winform app from within an asp.net page? Larsenal 2009-11-12T02:18:14Z 2009-11-12T02:18:14Z If you don't need to pass any parameters and truly only need to open an app, the App Protocol registration I describe below may be a little heavy handed. But if you can deal with the security preconditions it would probably work. http://stackoverflow.com/questions/1718987/how-do-you-launch-a-winform-app-from-within-an-asp-net-page/1719117#1719117 Comment by Larsenal on How do you launch a winform app from within an asp.net page? Larsenal 2009-11-12T00:58:21Z 2009-11-12T00:58:21Z Nope. AFAIK, it's a Windows thing... rather than a browser thing. I've changed the link to go to a better page. http://stackoverflow.com/questions/1718987/how-do-you-launch-a-winform-app-from-within-an-asp-net-page Comment by Larsenal on How do you launch a winform app from within an asp.net page? Larsenal 2009-11-12T00:38:08Z 2009-11-12T00:38:08Z Are you thinking of something similar to how a web page can magically launch iTunes? http://stackoverflow.com/questions/1716447/creating-a-asp-net-application-converting-text-to-speech/1716749#1716749 Comment by Larsenal on Creating a ASP.NET application converting text to speech Larsenal 2009-11-11T19:22:26Z 2009-11-11T19:22:26Z The test wasn't a WCF service. It just gives you <i>some</i> idea of how fast the library can convert a large amount of text. You REALLY don't want to try to transfer 600MB back from a WCF service. I'd look into compressing the WAV into MP3 using some of your sample data sets to see whether returning a byte array over WCF makes sense. http://stackoverflow.com/questions/1716447/creating-a-asp-net-application-converting-text-to-speech/1716749#1716749 Comment by Larsenal on Creating a ASP.NET application converting text to speech Larsenal 2009-11-11T17:48:01Z 2009-11-11T17:48:01Z Check my answer for results of a quick test with 44k words. http://stackoverflow.com/questions/1716447/creating-a-asp-net-application-converting-text-to-speech/1716749#1716749 Comment by Larsenal on Creating a ASP.NET application converting text to speech Larsenal 2009-11-11T17:38:19Z 2009-11-11T17:38:19Z Good point about the security. My sample was provided so that OP could test System.Speech with what he describes as a LOT of text. http://stackoverflow.com/questions/1716447/creating-a-asp-net-application-converting-text-to-speech/1716495#1716495 Comment by Larsenal on Creating a ASP.NET application converting text to speech Larsenal 2009-11-11T17:04:14Z 2009-11-11T17:04:14Z To save space, you could have a secondary process that converts to MP3. If the file is meant to be heard only one time by the user, you'd probably want to purge files on a recurring basis (every night, for example). If the user needed to come back to the same conversion, you'd want some way of first checking whether you still had the MP3 and if not, rebuilding it. As far as it's ability to convert large amounts of text... try it. The CP article is a great starting point. http://stackoverflow.com/questions/1676753/sqldataadapter-vs-sqldatareader/1676809#1676809 Comment by Larsenal on SqlDataAdapter vs SqlDataReader Larsenal 2009-11-04T21:40:07Z 2009-11-04T21:40:07Z +1 The term &quot;DataSet&quot; will help the OP in searching for more details on these distinctions. http://stackoverflow.com/questions/1664549/why-doesnt-silverlight-support-cursors-sizeall/1665933#1665933 Comment by Larsenal on Why doesn't Silverlight support Cursors.SizeAll? Larsenal 2009-11-04T17:09:25Z 2009-11-04T17:09:25Z Maybe so. But if it's a cross-platform thing, I shouldn't hold my breath for them adding it back in. If it's a runtime size issue, they may add it in the future.