User SLaks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:42:34Z http://stackoverflow.com/feeds/user/34397 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885661/jquery-filter-child-divs/1885674#1885674 1 Answer by SLaks for jquery - filter child divs? SLaks 2009-12-11T03:49:26Z 2009-12-11T03:49:26Z <p>Try this: (Untested)</p> <pre><code>&lt;a href="#" class="dairy"&gt;Dairy&lt;/a&gt; &lt;a href="#" class="meat"&gt;Meat&lt;/a&gt; &lt;a href="#" class="vegetable"&gt;Vegetable&lt;/a&gt; $('a').click(function(e){ var myId = $(this).attr('class'); $('#primary-div div.child:not(.' + myId + ')').hide(); $('#primary-div div.child.' + myId).show(); return false; }); </code></pre> http://stackoverflow.com/questions/1885658/why-wont-entity-framework-allow-me-to-do-a-findby/1885666#1885666 2 Answer by SLaks for Why won't entity framework allow me to do a .FindBy....() SLaks 2009-12-11T03:47:07Z 2009-12-11T03:47:07Z <p>You can use LINQ with the <code>Orders</code> property, like this:</p> <pre><code>var order = Customer.First().Orders.FirstOrDefault(o =&gt; o.OrderId == someId); </code></pre> <p>This will return null if there was no matching <code>Order</code>.</p> http://stackoverflow.com/questions/1885604/what-fontfamily-fonts-can-i-use-in-a-listbox/1885621#1885621 1 Answer by SLaks for What FontFamily Fonts can I use in a ListBox? SLaks 2009-12-11T03:28:44Z 2009-12-11T03:42:46Z <p>Try <code>Courier New</code>.</p> <p>Courier is a raster font, and raster fonts are not supported by WPF.</p> <p>Courier New is a TrueType font, so it should work fine.</p> <p>The easiest way to check for a specific font is to look in the Font dropdown in Word.<br> Raster fonts such as Courier will have a pixelated printer icon; TrueType fonts will have a TT or an <em>O</em>.</p> <p><strong>EDIT</strong>:</p> <p>In answer to your comment, WPF can use any font installed on the <em>end-user</em>'s system.<br> <a href="http://www.ampsoft.net/webdesign-l/windows-fonts-by-version.html" rel="nofollow">Here</a> is a list of fonts included with each version of Windows. These fonts will always be available. If you want to use a different font, you'll have to distribute it with your app. (And check the font's license terms)</p> http://stackoverflow.com/questions/1885630/whats-the-difference-between-varchar-and-char/1885637#1885637 4 Answer by SLaks for What's the difference between VARCHAR and CHAR? SLaks 2009-12-11T03:35:11Z 2009-12-11T03:35:11Z <p>A <code>CHAR(x)</code> column can only have <em>exactly</em> <code>x</code> characters.<br> A <code>VARCHAR(x)</code> column can have <em>up to</em> <code>x</code> characters.</p> <p>Since your MD5 hashes will always be the same size, you should probably use a <code>CHAR</code>.</p> <p>However, you shouldn't be using MD5 in the first place; it has known weaknesses.<br> Use SHA2 instead.<br> If you're hashing passwords, you should use bcrypt.</p> http://stackoverflow.com/questions/1885603/difference-between-javascript-function-declarations/1885617#1885617 4 Answer by SLaks for Difference between JavaScript function declarations? SLaks 2009-12-11T03:27:25Z 2009-12-11T03:27:25Z <p>In the first snippet, you're trying to invoke a variable before the variable is defined.</p> <p>You'd get the same problem from the following code:</p> <pre><code>test.toString(); var test = new Date; </code></pre> <p>In the second snippet, you're declaring the function without assigning it to a variable, and this results in a global declaration that is usable in earlier code.</p> http://stackoverflow.com/questions/1885219/possible-to-print-list-items-hidden-by-jquery-slideup-function/1885579#1885579 1 Answer by SLaks for Possible to print list items hidden by Jquery "slideup" function SLaks 2009-12-11T03:12:01Z 2009-12-11T03:12:01Z <p>You need to add <code>!important</code> to force the CSS rule to override the <code>style</code> property, like this: (Untested)</p> <pre><code>&lt;style type="text/css"&gt; @media print { .accordionContainer ul li { display: block !important; } } &lt;/style&gt; </code></pre> http://stackoverflow.com/questions/1885178/return-multiple-columns-in-linq-to-sql/1885190#1885190 1 Answer by SLaks for Return Multiple Columns in Linq to Sql? SLaks 2009-12-11T01:03:14Z 2009-12-11T02:56:45Z <p>Are you trying to return the data from a method?</p> <p>If so, you should just end the query with <code>select A</code>, which will produce the same type that <code>A</code> is.</p> <p>If not, you can use the anonymous type the same way you use a regular type.</p> <p>For example:</p> <pre><code>var results = from ... select new { A.Product, A.Qty }; foreach(var thing in results) { Console.WriteLine("{0}: {1}", thing.Product, Thing.Qty); } </code></pre> <p><strong>EDIT</strong>: To make it into a list, call ToList, like this:</p> <pre><code>var resultsList = results.ToList(); </code></pre> http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser/1885374#1885374 4 Answer by SLaks for How to send web page to users browser SLaks 2009-12-11T01:56:23Z 2009-12-11T02:31:09Z <p><strike>It sounds like you're trying to write adware.</p> <p>You will not find help here.</strike></p> <p>Please edit your question to reflect your actual intent. </p> http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser/1885459#1885459 0 Answer by SLaks for How to send web page to users browser SLaks 2009-12-11T02:26:20Z 2009-12-11T02:26:20Z <p>In response to your comment:</p> <p>You will need to write a desktop program that runs in the background and periodically checks the server for updates. </p> http://stackoverflow.com/questions/1885391/how-do-i-write-a-regular-expression-to-match-any-non-empty-content-of-an-xml-elem/1885403#1885403 2 Answer by SLaks for How do I write a Regular Expression to match any non-empty content of an XML element that has no children elements? SLaks 2009-12-11T02:04:56Z 2009-12-11T02:04:56Z <p>In general, <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">you <strong>must not</strong> parse XML using regular expressions</a>.</p> <p>Instead, use the <code>System.Xml</code> namespace.</p> http://stackoverflow.com/questions/1885378/multiple-jquery-uiprogress-bars/1885387#1885387 1 Answer by SLaks for Multiple jQuery UIProgress bars SLaks 2009-12-11T02:00:02Z 2009-12-11T02:00:02Z <p>If you have multuiple elements which have a class of <code>progressbar</code>, the line <code>$('.progressbar').progressbar()</code> should make all of them into separate progress bars.</p> <p>If you give each progressbar element a different ID, you can manipulate them individually.</p> <p>For example:</p> <pre><code>$('#bar1').progressbar({value: 37}); $('#bar2').progressbar({value: 54}); $('#bar3').progressbar({value: 99}); </code></pre> http://stackoverflow.com/questions/1885371/web-config-explanation-of-profile-properties/1885380#1885380 1 Answer by SLaks for web.config explanation of profile properties SLaks 2009-12-11T01:57:44Z 2009-12-11T01:57:44Z <p>The <code>`1</code> is a different notation used for generic types.</p> <p>The <code>1</code> indicates the number of generic type parameters.</p> http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser/1885240#1885240 0 Answer by SLaks for How to send web page to users browser SLaks 2009-12-11T01:14:22Z 2009-12-11T01:14:22Z <p>If you're trying to reload your page at an interval, you can add a meta refresh tag, like this:</p> <pre><code>&lt;head&gt; &lt;title&gt;My Web Page&lt;/title&gt; &lt;meta http-equiv="refresh" content="600"&gt; &lt;/head&gt; </code></pre> <p>(Content is measured in seconds; this example reloads every ten minutes)</p> <p>If you aren't, please tell us what you're trying to do.</p> http://stackoverflow.com/questions/1883884/fancy-way-to-load-contents-of-a-csv-file-into-a-dictionarystring-string-in-c/1883921#1883921 2 Answer by SLaks for fancy way to load contents of a CSV file into a dictionary<string,string> in C# SLaks 2009-12-10T20:50:14Z 2009-12-10T20:50:14Z <p>You should use the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.fileio.textfieldparser.aspx" rel="nofollow">TextFieldParser</a> class in Microsoft.VisualBasic.dll. (There's nothing wrong with using it in C#.</p> <p>Remember that CSV is a much more complicated file format than you think; both quotes and newlines can be escaped.</p> http://stackoverflow.com/questions/1883224/alt-tab-alternative/1883245#1883245 1 Answer by SLaks for alt-tab alternative SLaks 2009-12-10T19:06:38Z 2009-12-10T19:06:38Z <p>On Windows 7, you can switch to any of the first ten items on the taskbar (whether running or not) by pressing Windows+(1..0). You can drag taskbar items around to change the order.</p> http://stackoverflow.com/questions/1882997/c-program-in-windows-7-moves-panels-around/1883126#1883126 0 Answer by SLaks for c# Program in Windows 7 moves Panels around SLaks 2009-12-10T18:43:12Z 2009-12-10T18:43:12Z <p>Windows in Windows 7 have wider borders.</p> <p>Your form probably has a fixed size that is based on a Windows XP border width.</p> <p>Therefore, in Windows 7, the form's client area will be narrower.<br> If this is in fact the problem, you can solve it by setting the form's <a href="http://msdn.microsoft.com/en-us/library/9278sfx2.aspx" rel="nofollow">ClientSize</a> property in the constructor the the value it currently has in XP.</p> <p>If this is not the problem, please post more details.</p> http://stackoverflow.com/questions/1882252/excel-export-memory-exception/1882285#1882285 0 Answer by SLaks for excel export Memory exception SLaks 2009-12-10T16:38:44Z 2009-12-10T16:38:44Z <p>You should create it on the server, then copy it to the client in chunks.</p> <p>For an example, see <a href="http://stackoverflow.com/questions/608480/best-way-to-stream-files-in-asp-net/609151#609151">this answer</a>.</p> http://stackoverflow.com/questions/1882231/string-comparison-equivalents/1882239#1882239 4 Answer by SLaks for String comparison equivalents SLaks 2009-12-10T16:31:36Z 2009-12-10T16:31:36Z <p>They are not completely equivalent; see <a href="http://msdn.microsoft.com/en-us/library/ms973919.aspx" rel="nofollow">here</a>.</p> <p>Here is the correct way to do a case insensitive comparison:</p> <pre><code>bool areSame = str1.Equals(str2, StringComparison.OrdinalIgnoreCase); </code></pre> <p>This way will also be more efficient becasue it doesn't allocate a separate string for the lowercase copy.</p> http://stackoverflow.com/questions/1882138/asp-imagebutton-onclick-coordinates/1882208#1882208 0 Answer by SLaks for ASP ImageButton OnClick coordinates SLaks 2009-12-10T16:26:50Z 2009-12-10T16:26:50Z <p>It is not possible for the server to determine the zoom level of the browser without Javascript.</p> <p>This sounds like a bug in IE. Zooming in on the page should be completely transparent to the server. You should report this to Microsoft.</p> http://stackoverflow.com/questions/1882153/ad-lds-on-windows-7/1882191#1882191 0 Answer by SLaks for AD LDS on Windows 7 SLaks 2009-12-10T16:23:50Z 2009-12-10T16:23:50Z <p>Probably not; it's called Windows <em>Server</em> for a reason.</p> http://stackoverflow.com/questions/1882155/is-it-possible-to-hit-a-breakpoint-set-in-a-javascript-file-with-visual-studio-wh/1882171#1882171 3 Answer by SLaks for Is it possible to hit a breakpoint set in a javascript file with visual studio while using Firefox? SLaks 2009-12-10T16:20:50Z 2009-12-10T16:20:50Z <p>No; Visual Studio's Javascript debugger only supports IE.</p> <p>You should use the Javascript debugger in <a href="http://getfirebug.com" rel="nofollow">Firebug</a>.</p> http://stackoverflow.com/questions/1881850/cant-access-the-assembly-that-installed-into-the-gac/1881864#1881864 3 Answer by SLaks for Can't access the assembly that installed into the GAC SLaks 2009-12-10T15:43:23Z 2009-12-10T16:15:48Z <p><strong>EDIT</strong>: Try right-clicking on your project, clicking Add Reference, and adding your DLL file.</p> <p>In general, you should never modify <code>machine.config</code>.</p> http://stackoverflow.com/questions/1881296/linq-matching-pattern/1881318#1881318 4 Answer by SLaks for Linq Matching Pattern SLaks 2009-12-10T14:25:40Z 2009-12-10T14:56:13Z <p>Try the following:</p> <pre><code>var hasAll = !search.Except(CityList).Any(); </code></pre> <p>By the way, you should never write <code>something.Select(c =&gt; c)</code>; such a statement will do nothing but make the program a tiny bit slower.</p> http://stackoverflow.com/questions/1881255/split-string-at-specific-character/1881280#1881280 0 Answer by SLaks for Split String at specific character SLaks 2009-12-10T14:18:56Z 2009-12-10T14:18:56Z <p>Try the following:</p> <pre><code>var string = "word1;w ord2;word3,word4,word5,word6.word7"; function ends_with(string, character) { var regexp = new RegExp('.+' + character, 'g'); var matches = string.match(regexp); var replacer = new RegExp(character + '$'); return matches.map(function(ee) { return ee.replace(replacer, ''); }); } </code></pre> http://stackoverflow.com/questions/1881240/convert-numbers-stored-as-text-to-numbers/1881260#1881260 0 Answer by SLaks for Convert numbers stored as text to numbers SLaks 2009-12-10T14:15:38Z 2009-12-10T14:15:38Z <p>Try declaring <code>myprice</code> as a <code>Currency</code>.</p> http://stackoverflow.com/questions/1881180/wpf-weird-menuitem-visibility-issue/1881195#1881195 1 Answer by SLaks for wpf weird MenuItem visibility issue SLaks 2009-12-10T14:05:55Z 2009-12-10T14:05:55Z <p>If you're trying to disable the context menu, setting its <code>Visibility</code> is the wrong way to do it.</p> <p>Instead, you should set the <code>ContextMenu</code> property to <code>Nothing</code>.</p> <p>For example:</p> <pre><code>If ContextMenu Is Nothing Then ContextMenu = mainMnu Else ContextMenu = Nothing End If </code></pre> http://stackoverflow.com/questions/1881058/retrieving-lambda-expressions-from-a-collection/1881108#1881108 3 Answer by SLaks for Retrieving lambda expressions from a collection SLaks 2009-12-10T13:50:34Z 2009-12-10T13:50:34Z <p>Your problem is that the lambda expression captures the variable you used to define it.</p> <p>Since the entire loop the generated the list shares the same variable, all of the delegates will return 10.</p> <p>To solve this problem, declare a separate variable inside the generating loop, assign it to <code>i</code>, then use it in the lambda expression.</p> <p>For example:</p> <pre><code>var list = new List&lt;Func&lt;int, int&gt;&gt;(); for (int dontUse = 0; dontUse &lt; 10; dontUse++) { var i = dontUse; Func&lt;int, int&gt; func = x =&gt; x + i; list.Add(func); } foreach (var func in list) Console.WriteLine("c) " + func(0)); </code></pre> <p>For more information, see <a href="http://blogs.msdn.com/ericlippert/archive/2009/11/12/closing-over-the-loop-variable-considered-harmful.aspx" rel="nofollow">this blog post</a></p> <p>By the way, when calling the delegates, you don't need to write <code>func.Invoke(params)</code>; you can simply write <code>func(params)</code>.</p> http://stackoverflow.com/questions/1877800/how-do-i-checkonclick-in-a-checkedlistbox-but-only-when-over-the-checkbox/1877853#1877853 1 Answer by SLaks for How do I CheckOnClick in a CheckedListbox but only when over the checkbox? SLaks 2009-12-10T00:12:27Z 2009-12-10T13:44:11Z <p>Here is the actual code (from .Net Reference Source) that paints the checkboxes, in the <code>DrawItem</code> event:</p> <pre><code>Rectangle bounds = e.Bounds; int border = 1; int height = Font.Height + 2 * border; // set up the appearance of the checkbox // [Snip] // If we are drawing themed CheckBox .. get the size from renderer.. // the Renderer might return a different size in different DPI modes.. if (Application.RenderWithVisualStyles) { VisualStyles.CheckBoxState cbState = CheckBoxRenderer.ConvertFromButtonState(state, false, ((e.State &amp; DrawItemState.HotLight) == DrawItemState.HotLight)); idealCheckSize = (int)(CheckBoxRenderer.GetGlyphSize(e.Graphics, cbState)).Width; } // Determine bounds for the checkbox // int centeringFactor = Math.Max((height - idealCheckSize) / 2, 0); // Keep the checkbox within the item's upper and lower bounds if (centeringFactor + idealCheckSize &gt; bounds.Height) { centeringFactor = bounds.Height - idealCheckSize; } Rectangle box = new Rectangle(bounds.X + border, bounds.Y + centeringFactor, idealCheckSize, idealCheckSize); if (RightToLeft == RightToLeft.Yes) { // For a RightToLeft checked list box, we want the checkbox // to be drawn at the right. // So we override the X position. box.X = bounds.X + bounds.Width - idealCheckSize - border; } // Draw the checkbox. // if (Application.RenderWithVisualStyles) { VisualStyles.CheckBoxState cbState = CheckBoxRenderer.ConvertFromButtonState(state, false, ((e.State &amp; DrawItemState.HotLight) == DrawItemState.HotLight)); CheckBoxRenderer.DrawCheckBox(e.Graphics, new Point(box.X, box.Y), cbState); } else { ControlPaint.DrawCheckBox(e.Graphics, box, state); } </code></pre> <p><strong>EDIT</strong>: Here is <code>CheckBoxRenderer.ConvertFromButtonState</code>:</p> <pre><code>internal static CheckBoxState ConvertFromButtonState(ButtonState state, bool isMixed, bool isHot) { if (isMixed) { if ((state &amp; ButtonState.Pushed) == ButtonState.Pushed) { return CheckBoxState.MixedPressed; } else if ((state &amp; ButtonState.Inactive) == ButtonState.Inactive) { return CheckBoxState.MixedDisabled; } else if (isHot) { return CheckBoxState.MixedHot; } return CheckBoxState.MixedNormal; } else if ((state &amp; ButtonState.Checked) == ButtonState.Checked) { if ((state &amp; ButtonState.Pushed) == ButtonState.Pushed) { return CheckBoxState.CheckedPressed; } else if ((state &amp; ButtonState.Inactive) == ButtonState.Inactive) { return CheckBoxState.CheckedDisabled; } else if (isHot) { return CheckBoxState.CheckedHot; } return CheckBoxState.CheckedNormal; } else { //unchecked if ((state &amp; ButtonState.Pushed) == ButtonState.Pushed) { return CheckBoxState.UncheckedPressed; } else if ((state &amp; ButtonState.Inactive) == ButtonState.Inactive) { return CheckBoxState.UncheckedDisabled; } else if (isHot) { return CheckBoxState.UncheckedHot; } return CheckBoxState.UncheckedNormal; } </code></pre> <p>} </p> http://stackoverflow.com/questions/1878504/do-dotnet-projects-in-visual-studio-always-compile-into-a-single-file/1878523#1878523 0 Answer by SLaks for Do dotnet projects in Visual Studio always compile into a single file? SLaks 2009-12-10T03:48:50Z 2009-12-10T03:48:50Z <p>Each project does compile to a single file. (Except for web site projects)</p> <p>However, if you set the Build Action for any file in the project to Copy Always or Copy if Newer, the project will copy that file to the output folder.<br> Also, if an EXE project has an App.config file, it will also be copied to the output folder.</p> <p>If your project references a DLL (whether your own or someone else's) that isn't part of the core framework, it will copy that DLL to the project's output folder, resulting in two files (although only one of them will contain the code from the project itself)</p> <p>Also, in addition to DLLs and EXEs, Visual Studio will also create a .pdb file containing debug symbols in the output folder. This file is used by the debugger and must not be distributed to your users. (Unless you want them to debug your code for you)</p> http://stackoverflow.com/questions/1878453/how-to-enumerate-variable-xml-document-in-net-using-linq-to-xml/1878484#1878484 0 Answer by SLaks for How to Enumerate variable XML Document in .NET using Linq to XML SLaks 2009-12-10T03:34:46Z 2009-12-10T03:34:46Z <p>I assume you're using VB.Net.</p> <p>You can loop over the return value of the <code>Elements</code> method, like this:</p> <pre><code>For Each client As XElement In _xDoc.Elements().&lt;Data&gt;.&lt;Rows&gt; 'Do something Next </code></pre> http://stackoverflow.com/questions/1864207/beginner-basic-logic-learning Comment by SLaks on Beginner/Basic Logic Learning SLaks 2009-12-11T16:47:59Z 2009-12-11T16:47:59Z Comments <i>*can</i> <i>have</i> formatting by using <code>&#42;&#42;</code> or <code>&#95;</code> or <code>`</code>. http://stackoverflow.com/questions/1885219/possible-to-print-list-items-hidden-by-jquery-slideup-function/1885579#1885579 Comment by SLaks on Possible to print list items hidden by Jquery "slideup" function SLaks 2009-12-11T16:35:38Z 2009-12-11T16:35:38Z What browser did you try? http://stackoverflow.com/questions/1885656/web-sites-load-fine-in-firefox-but-not-it-ie8 Comment by SLaks on Web sites load fine in Firefox but not it IE8 SLaks 2009-12-11T03:45:46Z 2009-12-11T03:45:46Z Show us the website. http://stackoverflow.com/questions/1885604/what-fontfamily-fonts-can-i-use-in-a-listbox/1885621#1885621 Comment by SLaks on What FontFamily Fonts can I use in a ListBox? SLaks 2009-12-11T03:32:47Z 2009-12-11T03:32:47Z A list of which <code>FontFamily</code> fonts? http://stackoverflow.com/questions/1885557/simplest-code-for-array-intersection-in-javascript Comment by SLaks on Simplest code for array intersection in javascript SLaks 2009-12-11T03:07:42Z 2009-12-11T03:07:42Z Do you want simple or fast? http://stackoverflow.com/questions/1885178/return-multiple-columns-in-linq-to-sql/1885190#1885190 Comment by SLaks on Return Multiple Columns in Linq to Sql? SLaks 2009-12-11T02:52:58Z 2009-12-11T02:52:58Z You accidentally the verb. http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser/1885374#1885374 Comment by SLaks on How to send web page to users browser SLaks 2009-12-11T02:27:02Z 2009-12-11T02:27:02Z You should edit the question. http://stackoverflow.com/questions/1885391/how-do-i-write-a-regular-expression-to-match-any-non-empty-content-of-an-xml-elem Comment by SLaks on How do I write a Regular Expression to match any non-empty content of an XML element that has no children elements? SLaks 2009-12-11T02:11:17Z 2009-12-11T02:11:17Z What about other entities? http://stackoverflow.com/questions/1885378/multiple-jquery-uiprogress-bars/1885387#1885387 Comment by SLaks on Multiple jQuery UIProgress bars SLaks 2009-12-11T02:05:12Z 2009-12-11T02:05:12Z So? You can still do it. http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser Comment by SLaks on How to send web page to users browser SLaks 2009-12-11T01:57:08Z 2009-12-11T01:57:08Z This question is asking how to make an unasked-for popup ad and must be closed. http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser Comment by SLaks on How to send web page to users browser SLaks 2009-12-11T01:10:46Z 2009-12-11T01:10:46Z What on earth are trying to write? Adware? http://stackoverflow.com/questions/1885192/c-webbrowser-control-i-want-to-use-link-a-specific-font Comment by SLaks on C# webbrowser control - I want to use / link a specific font SLaks 2009-12-11T01:10:09Z 2009-12-11T01:10:09Z Why are you using a web browser instead of a fixed-width text box? Hyperlinks? http://stackoverflow.com/questions/1245617/want-a-javascript-function-to-run-every-minute-but-max-3-times/1245641#1245641 Comment by SLaks on Want a javascript function to run every minute, but max 3 times. SLaks 2009-12-10T21:46:14Z 2009-12-10T21:46:14Z Finally accepted! It's about time... http://stackoverflow.com/questions/1884025/visual-studio-data-set-designer-question Comment by SLaks on Visual Studio Data Set Designer Question SLaks 2009-12-10T21:22:44Z 2009-12-10T21:22:44Z What happens when you try? http://stackoverflow.com/questions/1884034/an-error-occurs-when-rendering-to-pdf-from-reporting-services/1884046#1884046 Comment by SLaks on An error occurs when rendering to PDF from Reporting Services. SLaks 2009-12-10T21:22:01Z 2009-12-10T21:22:01Z Then you haven't given us enough information to solve your problem.