User SLaks - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T09:42:34Zhttp://stackoverflow.com/feeds/user/34397http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1885661/jquery-filter-child-divs/1885674#18856741Answer by SLaks for jquery - filter child divs?SLaks2009-12-11T03:49:26Z2009-12-11T03:49:26Z<p>Try this: (Untested)</p>
<pre><code><a href="#" class="dairy">Dairy</a>
<a href="#" class="meat">Meat</a>
<a href="#" class="vegetable">Vegetable</a>
$('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#18856662Answer by SLaks for Why won't entity framework allow me to do a .FindBy....()SLaks2009-12-11T03:47:07Z2009-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 => 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#18856211Answer by SLaks for What FontFamily Fonts can I use in a ListBox?SLaks2009-12-11T03:28:44Z2009-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#18856374Answer by SLaks for What's the difference between VARCHAR and CHAR?SLaks2009-12-11T03:35:11Z2009-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#18856174Answer by SLaks for Difference between JavaScript function declarations?SLaks2009-12-11T03:27:25Z2009-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#18855791Answer by SLaks for Possible to print list items hidden by Jquery "slideup" functionSLaks2009-12-11T03:12:01Z2009-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><style type="text/css">
@media print {
.accordionContainer ul li {
display: block !important;
}
}
</style>
</code></pre>
http://stackoverflow.com/questions/1885178/return-multiple-columns-in-linq-to-sql/1885190#18851901Answer by SLaks for Return Multiple Columns in Linq to Sql?SLaks2009-12-11T01:03:14Z2009-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#18853744Answer by SLaks for How to send web page to users browserSLaks2009-12-11T01:56:23Z2009-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#18854590Answer by SLaks for How to send web page to users browserSLaks2009-12-11T02:26:20Z2009-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#18854032Answer 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?SLaks2009-12-11T02:04:56Z2009-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#18853871Answer by SLaks for Multiple jQuery UIProgress barsSLaks2009-12-11T02:00:02Z2009-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#18853801Answer by SLaks for web.config explanation of profile propertiesSLaks2009-12-11T01:57:44Z2009-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#18852400Answer by SLaks for How to send web page to users browserSLaks2009-12-11T01:14:22Z2009-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><head>
<title>My Web Page</title>
<meta http-equiv="refresh" content="600">
</head>
</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#18839212Answer by SLaks for fancy way to load contents of a CSV file into a dictionary<string,string> in C#SLaks2009-12-10T20:50:14Z2009-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#18832451Answer by SLaks for alt-tab alternativeSLaks2009-12-10T19:06:38Z2009-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#18831260Answer by SLaks for c# Program in Windows 7 moves Panels aroundSLaks2009-12-10T18:43:12Z2009-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#18822850Answer by SLaks for excel export Memory exceptionSLaks2009-12-10T16:38:44Z2009-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#18822394Answer by SLaks for String comparison equivalentsSLaks2009-12-10T16:31:36Z2009-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#18822080Answer by SLaks for ASP ImageButton OnClick coordinatesSLaks2009-12-10T16:26:50Z2009-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#18821910Answer by SLaks for AD LDS on Windows 7SLaks2009-12-10T16:23:50Z2009-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#18821713Answer by SLaks for Is it possible to hit a breakpoint set in a javascript file with visual studio while using Firefox?SLaks2009-12-10T16:20:50Z2009-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#18818643Answer by SLaks for Can't access the assembly that installed into the GACSLaks2009-12-10T15:43:23Z2009-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#18813184Answer by SLaks for Linq Matching PatternSLaks2009-12-10T14:25:40Z2009-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 => 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#18812800Answer by SLaks for Split String at specific characterSLaks2009-12-10T14:18:56Z2009-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#18812600Answer by SLaks for Convert numbers stored as text to numbersSLaks2009-12-10T14:15:38Z2009-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#18811951Answer by SLaks for wpf weird MenuItem visibility issueSLaks2009-12-10T14:05:55Z2009-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#18811083Answer by SLaks for Retrieving lambda expressions from a collectionSLaks2009-12-10T13:50:34Z2009-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<Func<int, int>>();
for (int dontUse = 0; dontUse < 10; dontUse++) {
var i = dontUse;
Func<int, int> func = x => 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#18778531Answer by SLaks for How do I CheckOnClick in a CheckedListbox but only when over the checkbox?SLaks2009-12-10T00:12:27Z2009-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 & 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 > 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 & 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 & ButtonState.Pushed) == ButtonState.Pushed) {
return CheckBoxState.MixedPressed;
}
else if ((state & ButtonState.Inactive) == ButtonState.Inactive) {
return CheckBoxState.MixedDisabled;
}
else if (isHot) {
return CheckBoxState.MixedHot;
}
return CheckBoxState.MixedNormal;
}
else if ((state & ButtonState.Checked) == ButtonState.Checked) {
if ((state & ButtonState.Pushed) == ButtonState.Pushed) {
return CheckBoxState.CheckedPressed;
}
else if ((state & ButtonState.Inactive) == ButtonState.Inactive) {
return CheckBoxState.CheckedDisabled;
}
else if (isHot) {
return CheckBoxState.CheckedHot;
}
return CheckBoxState.CheckedNormal;
}
else { //unchecked
if ((state & ButtonState.Pushed) == ButtonState.Pushed) {
return CheckBoxState.UncheckedPressed;
}
else if ((state & 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#18785230Answer by SLaks for Do dotnet projects in Visual Studio always compile into a single file?SLaks2009-12-10T03:48:50Z2009-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#18784840Answer by SLaks for How to Enumerate variable XML Document in .NET using Linq to XMLSLaks2009-12-10T03:34:46Z2009-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().<Data>.<Rows>
'Do something
Next
</code></pre>
http://stackoverflow.com/questions/1864207/beginner-basic-logic-learningComment by SLaks on Beginner/Basic Logic LearningSLaks2009-12-11T16:47:59Z2009-12-11T16:47:59ZComments <i>*can</i> <i>have</i> formatting by using <code>**</code> or <code>_</code> or <code>`</code>.http://stackoverflow.com/questions/1885219/possible-to-print-list-items-hidden-by-jquery-slideup-function/1885579#1885579Comment by SLaks on Possible to print list items hidden by Jquery "slideup" functionSLaks2009-12-11T16:35:38Z2009-12-11T16:35:38ZWhat browser did you try?http://stackoverflow.com/questions/1885656/web-sites-load-fine-in-firefox-but-not-it-ie8Comment by SLaks on Web sites load fine in Firefox but not it IE8SLaks2009-12-11T03:45:46Z2009-12-11T03:45:46ZShow us the website.http://stackoverflow.com/questions/1885604/what-fontfamily-fonts-can-i-use-in-a-listbox/1885621#1885621Comment by SLaks on What FontFamily Fonts can I use in a ListBox?SLaks2009-12-11T03:32:47Z2009-12-11T03:32:47ZA list of which <code>FontFamily</code> fonts?http://stackoverflow.com/questions/1885557/simplest-code-for-array-intersection-in-javascriptComment by SLaks on Simplest code for array intersection in javascriptSLaks2009-12-11T03:07:42Z2009-12-11T03:07:42ZDo you want simple or fast?http://stackoverflow.com/questions/1885178/return-multiple-columns-in-linq-to-sql/1885190#1885190Comment by SLaks on Return Multiple Columns in Linq to Sql?SLaks2009-12-11T02:52:58Z2009-12-11T02:52:58ZYou accidentally the verb. http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browser/1885374#1885374Comment by SLaks on How to send web page to users browserSLaks2009-12-11T02:27:02Z2009-12-11T02:27:02ZYou 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-elemComment 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?SLaks2009-12-11T02:11:17Z2009-12-11T02:11:17ZWhat about other entities?http://stackoverflow.com/questions/1885378/multiple-jquery-uiprogress-bars/1885387#1885387Comment by SLaks on Multiple jQuery UIProgress barsSLaks2009-12-11T02:05:12Z2009-12-11T02:05:12ZSo? You can still do it.http://stackoverflow.com/questions/1885221/how-to-send-web-page-to-users-browserComment by SLaks on How to send web page to users browserSLaks2009-12-11T01:57:08Z2009-12-11T01:57:08ZThis 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-browserComment by SLaks on How to send web page to users browserSLaks2009-12-11T01:10:46Z2009-12-11T01:10:46ZWhat on earth are trying to write? Adware?http://stackoverflow.com/questions/1885192/c-webbrowser-control-i-want-to-use-link-a-specific-fontComment by SLaks on C# webbrowser control - I want to use / link a specific fontSLaks2009-12-11T01:10:09Z2009-12-11T01:10:09ZWhy 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#1245641Comment by SLaks on Want a javascript function to run every minute, but max 3 times.SLaks2009-12-10T21:46:14Z2009-12-10T21:46:14ZFinally accepted! It's about time...http://stackoverflow.com/questions/1884025/visual-studio-data-set-designer-questionComment by SLaks on Visual Studio Data Set Designer QuestionSLaks2009-12-10T21:22:44Z2009-12-10T21:22:44ZWhat happens when you try?http://stackoverflow.com/questions/1884034/an-error-occurs-when-rendering-to-pdf-from-reporting-services/1884046#1884046Comment by SLaks on An error occurs when rendering to PDF from Reporting Services.SLaks2009-12-10T21:22:01Z2009-12-10T21:22:01ZThen you haven't given us enough information to solve your problem.