User Pascal Paradis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T08:33:07Zhttp://stackoverflow.com/feeds/user/1291http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/23886/sql-pronunciation6SQL PronunciationPascal Paradis2008-08-23T02:46:14Z2009-12-11T14:43:08Z
<p>I have a question about the pronunciation of the <em>SQL</em> word. In my native language (French) we used to say it like spell each letters.</p>
<p>I've been listening to the stackoverflow podcast today. And I noticed the usage of the word <em>sequel</em> to describe <em>SQL</em>.</p>
<p>My question is what is the common or correct pronunciation of <em>SQL</em> in english. Is it a matter of taste?</p>
http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/811230#81123010Answer by Pascal Paradis for What technologies are you using even though they are embarassingly out of date?Pascal Paradis2009-05-01T12:55:05Z2009-10-13T04:12:57Z<p><a href="http://en.wikipedia.org/wiki/Visual%5FFoxPro" rel="nofollow">Visual FoxPro</a> 9.0.</p>
<p>I'm disappointed it still exists. Foxpro 9.0 runs on Windows 7! It will never die like Visual Basic 6.0 is still alive.</p>
<p><img src="http://www.nubscc.com/images/vfp9.jpg" width="180" height="273"></p>
http://stackoverflow.com/questions/1330234/why-are-aspx-code-behind-files-declared-as-partial-classes/1330262#13302629Answer by Pascal Paradis for Why are aspx code-behind files declared as partial classes?Pascal Paradis2009-08-25T18:55:33Z2009-08-25T19:02:44Z<p>I would refer you to this <a href="http://msdn.microsoft.com/en-us/library/ms178138.aspx" rel="nofollow">MSDN Page</a> (ASP.NET Page Class Overview).</p>
<blockquote>
<p>When the page is compiled, ASP.NET
generates a partial class based on the
.aspx file; this class is a partial
class of the code-behind class file.
The generated partial class file
contains declarations for the page's
controls. This partial class enables
your code-behind file to be used as
part of a complete class without
requiring you to declare the controls
explicitly.</p>
</blockquote>
<p>See this chart : </p>
<p><img src="http://img30.imageshack.us/img30/7692/msdnchart.gif" alt="alt text" title="" /></p>
<p>This way you have one class that contains your logic and one class that contains designer stuff. At compile time it is generated as a whole.</p>
http://stackoverflow.com/questions/1177170/whats-the-most-used-format-for-webpages-for-mobile/1177207#11772072Answer by Pascal Paradis for What's the most used format for webpages for mobile?Pascal Paradis2009-07-24T11:58:29Z2009-07-24T11:58:29Z<p>This article might help you alot. It's from Smashing Magazine. </p>
<p><a href="http://www.smashingmagazine.com/2009/01/13/mobile-web-design-trends-2009/" rel="nofollow" title="Mobile Web Design Trends For 2009">Mobile Web Design Trends For 2009</a></p>
<p>There is additional considerations to keep in mind when designing for mobile web. <a href="http://www.sitepoint.com" rel="nofollow">Sitepoint</a> provided an insightful list in <a href="http://www.sitepoint.com/article/designing-for-mobile-web/" rel="nofollow">this article</a>.</p>
<blockquote>
<ol>
<li>Don't Mix Up Your Markup </li>
<li>Know Your Phones</li>
<li>Target the Right Customers</li>
<li>Publish the Bare Minimum </li>
<li>Choose a Great Domain Name</li>
<li>Validate Your Markup</li>
<li>Test, Test, TEST!</li>
</ol>
</blockquote>
http://stackoverflow.com/questions/178342/what-happens-when-i-edit-web-config/178376#17837611Answer by Pascal Paradis for What happens when I edit web.config?Pascal Paradis2008-10-07T13:14:48Z2009-07-06T17:20:40Z<ol>
<li>Yes. It will be recycled.</li>
<li>Yes. They will lose their session.</li>
<li>Yes. You can safely edit the file. I suggest you to read this MSDN article : <a href="http://msdn.microsoft.com/en-us/library/ms868619.aspx" rel="nofollow">Working with web.config Files in Windows SharePoint Services</a></li>
</ol>
http://stackoverflow.com/questions/701409/changing-the-look-of-moss-2007-dropdown-navigation-menu/702869#7028690Answer by Pascal Paradis for Changing the look of MOSS 2007 DropDown navigation menuPascal Paradis2009-03-31T20:21:26Z2009-03-31T20:21:26Z<p>Please take a look at Heather Solomon's Blog for <a href="http://www.heathersolomon.com/content/sp07cssreference.htm" rel="nofollow">MOSS 2007 CSS reference</a>. You will most likely get want you want out of that.</p>
http://stackoverflow.com/questions/695549/wpf-refresh-update-control-on-window-load1WPF : Refresh / Update control on Window loadPascal Paradis2009-03-29T22:50:53Z2009-03-30T07:17:00Z
<p>I want to display time in the Label. The label contents needs to be refreshed automatically as the window is loaded.</p>
<p>I have a simple WPF Window with a Label control in it. As illustrated here</p>
<pre><code><Window x:Class="shoes.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
<Grid>
<Label Margin="12" Name="lblSeconds"></Label>
<Button Margin="68,22,135,0" Name="button1" Height="24" VerticalAlignment="Top" Click="button1_Click">Button</Button>
</Grid>
</Window>
</code></pre>
<p>I have looked at the code available here : <a href="http://geekswithblogs.net/NewThingsILearned/archive/2008/08/25/refresh--update-wpf-controls.aspx" rel="nofollow">http://geekswithblogs.net/NewThingsILearned/archive/2008/08/25/refresh--update-wpf-controls.aspx</a></p>
<p>And I modified to fit this way : </p>
<pre><code>public partial class Window1 : Window
{
private static Action EmptyDelegate = delegate() { };
public Window1()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
if (IsLoaded)
{
LoopingMethod();
}
}
private void LoopingMethod()
{
while(true)
{
lblSeconds.Content = DateTime.Now.ToLongTimeString();
lblSeconds.Refresh();
Thread.Sleep(10);
}
}
}
public static class ExtensionMethods
{
private static Action EmptyDelegate = delegate() { };
public static void Refresh(this UIElement uiElement)
{
uiElement.Dispatcher.Invoke(DispatcherPriority.Render, EmptyDelegate);
}
}
</code></pre>
<p>I have discovered the code works pretty well when it is triggered through a button_Click event. I have tried to get the code to run through a Window_Loaded event like this but in vain. The window content is never displayed.</p>
<p>What I can do to get the label updated automatically when the window is loaded?</p>
http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/643359#64335928Answer by Pascal Paradis for What's your "ceremony" after finishing your project or solving a hard problem?Pascal Paradis2009-03-13T15:51:03Z2009-03-13T15:51:03Z<p>The Engineer's Victory Dance!<img src="http://www.dilbert.com/dyn/str%5Fstrip/000000000/00000000/0000000/000000/10000/2000/500/12586/12586.strip.print.gif" alt="Engineer's Victory Dance" /></p>
http://stackoverflow.com/questions/219408/how-to-plan-test-time/219485#2194855Answer by Pascal Paradis for How to plan test timePascal Paradis2008-10-20T18:57:34Z2009-03-11T18:38:26Z<p>Here is a <a href="http://blogs.msdn.com/alanpa/archive/2007/03/13/test-guesstimation.aspx" rel="nofollow">short article</a> from <a href="http://blogs.msdn.com/alanpa/pages/about-me.aspx" rel="nofollow">Alan Page</a>, Test Architect on Microsoft's Engineering Excellence team : </p>
<blockquote>
<p>Some examples of things to consider in test estimation are: </p>
<ul>
<li><strong>Historical data</strong> - At the very least, you can estimate test design
based on previous projects</li>
<li><strong>Complexity</strong> - Complexity relates directly to testability. Simple
applications can be tested more
quickly than complex programs</li>
<li><strong>Business goals</strong> - Is the application a prototype or
demonstration application? Or, is it
flight control software for a
spaceship? The business goals
influence the breadth and depth of the
testing effort</li>
<li><strong>Conformance / Compliance</strong> - If the application must conform to a
standard, these requirements must be
considered when estimating the testing
task.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/16963/who-actually-uses-datagrid-gridview-formview-etc-in-production-apps/17283#1728312Answer by Pascal Paradis for Who actually uses DataGrid/GridView/FormVIew/etc in production apps?Pascal Paradis2008-08-20T01:18:04Z2009-03-07T03:30:24Z<p>I've been reading your posts guys and it made me feel dumb.</p>
<p>I mean in every application I made where I work there is at least one datagrid/gridview in it. And I didn't have the feeling I am missing something.</p>
<p>Sure I find datagrid/gridview kinda bloated but are they that much <em>disgusting</em> to use?</p>
http://stackoverflow.com/questions/19907/what-do-most-users-consider-acceptable-load-times-on-a-website/19964#199642Answer by Pascal Paradis for What do most users consider acceptable load times on a website?Pascal Paradis2008-08-21T13:56:33Z2009-01-29T21:12:53Z<p>According to Nielsen on <a href="http://www.useit.com/papers/responsetime.html" rel="nofollow">Response Time Overview</a> response time should be in a order of : </p>
<ul>
<li>0.1 second : Instant reaction of the system </li>
<li>1 second : Limit where the flow of though stay uninterupted</li>
<li>10 second : Users gets the focus on something else</li>
</ul>
<p>As said your average response time needs to be in the [0.1 - 10[ bracket.</p>
http://stackoverflow.com/questions/28999/favorite-ide-feature/456547#4565470Answer by Pascal Paradis for Favorite IDE feature?Pascal Paradis2009-01-19T04:43:36Z2009-01-19T04:43:36Z<p>Incremental search (CTRL-I in Visual Studio).</p>
http://stackoverflow.com/questions/149163/patterns-for-multithreaded-network-server-in-c/149237#1492374Answer by Pascal Paradis for Patterns for Multithreaded Network Server in C#Pascal Paradis2008-09-29T15:38:38Z2008-12-31T14:46:28Z<p>Oddly enough you may find something on a Computer Science Assignment, <a href="http://homepage.cs.uri.edu/courses/attic/csc512/assn3.html" rel="nofollow"><strong>CSC 512 Programming Assignment 4: Multi-Threaded Server With Patterns</strong></a>. Altough it's C++ voodoo but the theory is quite understandable for someone who can do C#.</p>
<ul>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/Acc-Con.pdf" rel="nofollow">Acceptor/ Connector</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/monitor.pdf" rel="nofollow">Monitor Object</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/dispatching.pdf" rel="nofollow">Thread Safe Interface</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/wrapper-facade.pdf" rel="nofollow">Wrapper Facade</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/dispatching.pdf" rel="nofollow">Scoped Locking</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/locking-patterns.pdf" rel="nofollow">Strategized Locking</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/reactor-siemens.pdf" rel="nofollow">Reactor</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/PLoP-95.pdf" rel="nofollow">Half Sync/Half-Async</a></li>
<li><a href="http://www.cs.wustl.edu/~schmidt/PDF/lf.pdf" rel="nofollow">Leaders/Followers</a></li>
</ul>
<p>Altough you can get the whole list of nice readings on the <a href="http://homepage.cs.uri.edu/courses/attic/csc512/" rel="nofollow">main page</a>.</p>
http://stackoverflow.com/questions/357046/storing-feature-configuration-within-sharepoint/357083#3570831Answer by Pascal Paradis for Storing Feature Configuration within SharepointPascal Paradis2008-12-10T18:34:18Z2008-12-10T18:34:18Z<p>You should take a look at <a href="http://www.codeplex.com/SPConfigStore" rel="nofollow">Sharepoint Config Store</a>. It's made by <a href="http://www.sharepointnutsandbolts.com/" rel="nofollow">Chris O'Brien</a>.</p>
<p>With SPConfigStore you can retrieve config items this way </p>
<pre><code>string sAdminEmail = ConfigStore.GetValue("MyApplication", "AdminEmail");
</code></pre>
http://stackoverflow.com/questions/357059/unit-test-case-generator/357072#3570722Answer by Pascal Paradis for Unit test case generator Pascal Paradis2008-12-10T18:30:50Z2008-12-10T18:30:50Z<p>Have you considered <a href="http://research.microsoft.com/Pex/" rel="nofollow">Pex</a>? It's from Microsoft Research.</p>
<blockquote>
<p>Pex automatically produces a small
test suite with high code coverage for
a .NET program. To this end, Pex
performs a systematic program analysis
(using dynamic symbolic execution,
similar to path-bounded
model-checking) to determine test
inputs for Parameterized Unit Tests.
Pex learns the program behavior by
monitoring execution traces. Pex uses
a constraint solver to produce new
test inputs which exercise different
program behavior.</p>
</blockquote>
http://stackoverflow.com/questions/322118/what-is-the-weirdest-commercial-language-system-youve-ever-used/322303#3223030Answer by Pascal Paradis for What is the weirdest commercial language/system you've ever used?Pascal Paradis2008-11-26T21:55:06Z2008-11-26T21:55:06Z<p>I used <a href="http://www.4d.com/" rel="nofollow">4D</a> once... In french. </p>
<p>Yeah it's one of those localized programming language. Even if French is my native language it was painful. For an unknown reason the only language 4D has localized keywords is French.</p>
<p><a href="http://www.4d.fr/documentation/4DdocV11/CMU/CMU00349.HTM" rel="nofollow">English example</a></p>
<pre><code> CREATE EMPTY SET([Customers];"Payment Due")
QUERY([Invoices];[Invoices]DueDate = Current date)
While(Not(End selection([Invoices])))
RELATE ONE ([Invoices]CustID)
ADD TO SET([Customers];"Payment Due")
NEXT RECORD([Invoices])
End while
</code></pre>
http://stackoverflow.com/questions/295970/what-in-your-opinion-is-the-best-looking-webapp/299239#2992391Answer by Pascal Paradis for What, in your opinion, is the best-looking webapp?Pascal Paradis2008-11-18T16:17:40Z2008-11-18T16:17:40Z<p><a href="http://sera.lighthouseapp.com/plans" rel="nofollow">Lighthouse</a>.</p>
<p>I like the color set and his features.</p>
http://stackoverflow.com/questions/298917/best-ways-to-improve-sharepoint-2007-performance/299144#2991441Answer by Pascal Paradis for Best ways to Improve Sharepoint 2007 Performance?Pascal Paradis2008-11-18T15:50:33Z2008-11-18T15:50:33Z<p>Did you take a look at <a href="http://technet.microsoft.com/en-us/library/cc262787.aspx" rel="nofollow">Plan for software boundaries (Office SharePoint Server)</a>?</p>
<p>At first glance, your server <em>fits</em> in their recommended settings.</p>
<p>To improve performance you should take a look at : </p>
<ul>
<li>64-bit servers</li>
<li>Limiting the number of items displayed in your document lists
<img src="http://i.technet.microsoft.com/Cc262787.1951d88d-7814-41a2-97fc-65e6fab351f7(en-us,TechNet.10).gif" alt="Limiting number of items displayed" /></li>
</ul>
http://stackoverflow.com/questions/296245/what-do-you-put-on-your-cubicle-walls/296301#2963010Answer by Pascal Paradis for What do you put on your cubicle walls?Pascal Paradis2008-11-17T17:44:34Z2008-11-17T17:44:34Z<p>I tend to put things that keeps me in a positive mood.</p>
<ul>
<li>A Jugo Juice <a href="http://mydinnertable.typepad.com/home/images/2007/05/11/jujo_powerzone.jpg" rel="nofollow">Powerzone sticker</a>. Yeah my cubicle is a <strong>Power Zone</strong>!</li>
<li>A <a href="http://www.dilbert.com/fast/1999-08-29" rel="nofollow">dilbert</a> strip.</li>
<li>Oh... And a picture of my wife. :)</li>
</ul>
http://stackoverflow.com/questions/278777/t-sql-using-fn-now-in-where1T-SQL : Using { fn NOW() } in WHEREPascal Paradis2008-11-10T18:49:33Z2008-11-10T21:45:02Z
<p>I was reviewing some SQL queries and I saw a select statement that looked like this </p>
<pre><code>SELECT *
FROM dbo.mytable
WHERE (dbo.mytable.[Date] < { fn NOW() })
</code></pre>
<p>What is the purpose of using a WHERE statement like this?</p>
<p>Wouldn't be easier to use a simple GETDATE()?</p>
http://stackoverflow.com/questions/269775/sharepoint-how-can-i-deploy-a-custom-authentication-provider/273617#2736171Answer by Pascal Paradis for Sharepoint: How can I deploy a custom authentication provider?Pascal Paradis2008-11-07T20:58:50Z2008-11-07T20:58:50Z<p>You can deploy a custom membership provider under minimal trust in SharePoint 2007 using Code Access Security (CAS).</p>
<p>Altough the author seems to not recommend using the GAC since some Sharepoint installations are on a hosted environment and you can play with GAC.</p>
<blockquote>
<p>It is often easier to install the
membership provider DLL in the Global
Assembly Cache to achieve full trust,
but in cases where you're working with
a hosted SharePoint site and cannot
deploy to the GAC these instructions
should steer you right.</p>
</blockquote>
<p>The detailed article is <a href="http://robgarrett.com/cs/blogs/software/archive/2006/06/01/custom-membership-provider-under-minimal-trust-in-sharepoint-2007.aspx" rel="nofollow">here</a>. I hope it helps.</p>
http://stackoverflow.com/questions/273400/sharepoint-is-it-possible-to-make-subgroups-in-top-navigation-menu/273598#2735985Answer by Pascal Paradis for Sharepoint: Is it possible to make subgroups in top navigation menu?Pascal Paradis2008-11-07T20:49:46Z2008-11-07T20:49:46Z<p>See this <a href="http://www.heathersolomon.com/blog/archive/2007/05/15/SharePoint-Tip--How-to-Activate-the-Drop-Down-Menu.aspx" rel="nofollow">blog entry</a> by Heather Solomon.</p>
<p>You need to modify your Master Page to set your <strong>MaximumDynamicDisplayLevels</strong> property of the <strong>SharePoint:AspMenu</strong> tag from 1 to the level you need. </p>
<p>And you will get this as result : </p>
<p><img src="http://www.heathersolomon.com/images/postimages/sampledropnav2levels.gif" alt="sub sites" /></p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/86011#8601122Answer by Pascal Paradis for What's your favorite "programmer" cartoon?Pascal Paradis2008-09-17T18:12:08Z2008-10-24T06:30:19Z<p>My favorite : Cloud of doom </p>
<p><img src="http://img511.imageshack.us/img511/4697/12401stripsc3.gif" width="640" /></p>
http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/227111#2271111Answer by Pascal Paradis for What's the best open source game ever?Pascal Paradis2008-10-22T18:54:51Z2008-10-22T21:43:43Z<p><a href="http://dopewars.sourceforge.net/" rel="nofollow">Dopewars</a> is fun to play on the internet or on a LAN with friends. And it runs on Windows, OSX, Linux, iPhone and there is an adaptation on Facebook.</p>
http://stackoverflow.com/questions/226353/best-website-payment-processor/226880#2268800Answer by Pascal Paradis for Best website payment processor?Pascal Paradis2008-10-22T17:59:18Z2008-10-22T17:59:18Z<p>I saw the usage of <a href="http://www.moneris.com/index.php?context=/products" rel="nofollow">Moneris</a> at a client site.</p>
http://stackoverflow.com/questions/220461/using-asp-net-is-there-a-programmatic-way-to-take-a-screenshot-of-the-browser-co/220531#2205311Answer by Pascal Paradis for Using ASP.Net, is there a programmatic way to take a screenshot of the browser content?Pascal Paradis2008-10-21T02:00:52Z2008-10-21T02:00:52Z<p>If you want to do something like you described. You need to call an external process that prints the IE output as described <a href="http://www.codegod.de/WebAppCodeGod/Screenshot-of-Webpage-with-ASP-NET-AID398.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/132587/the-best-css-tutorial-site-blog-book/219995#2199952Answer by Pascal Paradis for The best CSS tutorial/site/blog/book.Pascal Paradis2008-10-20T21:23:30Z2008-10-20T21:23:30Z<p><a href="http://www.smashingmagazine.com/2007/05/10/70-expert-ideas-for-better-css-coding/" rel="nofollow">70 Expert Ideas For Better CSS Coding</a></p>
http://stackoverflow.com/questions/218613/proper-disposal-of-sharepoint-objects/218640#2186400Answer by Pascal Paradis for Proper disposal of SharePoint objects?Pascal Paradis2008-10-20T14:30:14Z2008-10-20T17:16:42Z<p>I suggest you to take a read on : </p>
<ul>
<li><p><strike><strong>MSDN</strong> : <a href="http://msdn.microsoft.com/en-us/library/bb687949.aspx" rel="nofollow">Best Practices: Common Coding Issues When Using the SharePoint Object Model</a></strike></p></li>
<li><p><strike><strong>MSDN</strong> : <a href="http://msdn.microsoft.com/en-us/library/aa973248.aspx" rel="nofollow">Best Practices: Using Disposable Windows SharePoint Services Objects</a></strike></p></li>
<li><p><strong>Chris O'Brien</strong> : <a href="http://www.sharepointnutsandbolts.com/2008/06/disposing-sharepoint-objects-what-they.html" rel="nofollow">Disposing SharePoint objects - what they don't tell you</a></p></li>
</ul>
<p>If none of these advice works. Take a look at <a href="http://blogs.technet.com/stefan_gossner/archive/2008/05/07/troubleshooting-spsite-spweb-leaks-in-wss-v3-and-moss-2007.aspx" rel="nofollow">Troubleshooting SPSite/SPWeb leaks in WSS v3 and MOSS 2007</a>.</p>
<p><strong>Edit</strong> :
You should dispose the SPSite object. Since it will <a href="http://blah.winsmarts.com/2008-9-To_dispose,_or_not_to_dispose_-_That_is_the_question.aspx" rel="nofollow">dispose all his SPWeb object automatically</a>.</p>
http://stackoverflow.com/questions/119968/good-book-for-learning-sharepoint-development/212352#2123520Answer by Pascal Paradis for Good book for learning Sharepoint developmentPascal Paradis2008-10-17T14:21:54Z2008-10-17T14:21:54Z<p>This question has been already discussed here with the same suggestions <a href="http://stackoverflow.com/questions/14546/wssmoss-book">WSS/MOSS Book</a> on stackoverflow.</p>
http://stackoverflow.com/questions/207409/what-is-the-most-wanted-sharepoint-feature/209007#2090072Answer by Pascal Paradis for What is the most wanted SharePoint feature?Pascal Paradis2008-10-16T15:23:06Z2008-10-16T15:23:06Z<p><strong>Content deployment</strong></p>
<p>It's been improved with all the releases Post-SP1 but you can't with ease deploy content in a Sharepoint. It's always risky. </p>
<p>There is a tool developed with <a href="http://www.sharepointnutsandbolts.com/" rel="nofollow">Chris O'Brien</a> called <a href="http://www.sharepointnutsandbolts.com/2008/09/source-code-for-sp-content-deployment.html" rel="nofollow">SPContentDeployment</a> that use the content deployement API but it's still a 3rd party. It should be implemented within Sharepoint.</p>
http://stackoverflow.com/questions/695549/wpf-refresh-update-control-on-window-load/695560#695560Comment by Pascal Paradis on WPF : Refresh / Update control on Window loadPascal Paradis2009-10-19T01:11:17Z2009-10-19T01:11:17ZI used the Backgroundworker and it did what I wanted!http://stackoverflow.com/questions/1330234/why-are-aspx-code-behind-files-declared-as-partial-classesComment by Pascal Paradis on Why are aspx code-behind files declared as partial classes?Pascal Paradis2009-08-25T18:57:53Z2009-08-25T18:57:53ZAnd you should edit your question title. It is not a <i>stupid</i> question.http://stackoverflow.com/questions/966404/does-anyone-know-of-a-decent-free-online-bug-tracker-for-web-development-purposes/966420#966420Comment by Pascal Paradis on Does anyone know of a decent free online bug tracker for web development purposes?Pascal Paradis2009-06-08T19:17:50Z2009-06-08T19:17:50ZWe use Trac in our shop and I strongly recommend it.http://stackoverflow.com/questions/714370/flash-and-sharepointComment by Pascal Paradis on Flash and SharePointPascal Paradis2009-04-07T02:25:20Z2009-04-07T02:25:20ZI'm curious to see the context you want to have flash in a sharepoint page.http://stackoverflow.com/questions/95188/what-is-your-favorite-resharper-visual-studio-shortcut/95269#95269Comment by Pascal Paradis on What is your favorite Resharper/Visual Studio shortcut?Pascal Paradis2009-04-06T19:59:53Z2009-04-06T19:59:53ZYou are right, this comment should not belong here. But somehow i'm not enclined to delete it tough.http://stackoverflow.com/questions/309517/when-to-drink-when-listening-to-stack-overflow/570128#570128Comment by Pascal Paradis on When to drink when listening to Stack Overflow?Pascal Paradis2009-03-12T22:56:19Z2009-03-12T22:56:19ZThat one made me laugh!http://stackoverflow.com/questions/453935/compiling-processing-sketchs-from-the-commandlineComment by Pascal Paradis on compiling processing sketchs from the commandline?Pascal Paradis2009-01-27T19:03:53Z2009-01-27T19:03:53ZAccording to the tags in place. I guess so.http://stackoverflow.com/questions/462699/how-do-i-get-the-index-of-the-highest-value-in-an-array-using-linq/462725#462725Comment by Pascal Paradis on How do I get the index of the highest value in an array using LINQ?Pascal Paradis2009-01-20T21:43:09Z2009-01-20T21:43:09Z@Jon: Got it! I was out of the track. That being said. Elegant solution! http://stackoverflow.com/questions/462699/how-do-i-get-the-index-of-the-highest-value-in-an-array-using-linq/462725#462725Comment by Pascal Paradis on How do I get the index of the highest value in an array using LINQ?Pascal Paradis2009-01-20T19:40:09Z2009-01-20T19:40:09ZThis isn't LINQ Jonhttp://stackoverflow.com/questions/452788/does-a-program-that-is-written-with-the-microsoft-net-framework-compile-execute/452793#452793Comment by Pascal Paradis on Does A Program that is written with the Microsoft .NET framework compile/execute native code?Pascal Paradis2009-01-17T04:35:09Z2009-01-17T04:35:09ZA picture is worth a thousand wordshttp://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164556#164556Comment by Pascal Paradis on What real life bad habits has programming given you?Pascal Paradis2008-12-11T16:05:43Z2008-12-11T16:05:43ZSomehow I think it should go to 512. Upvoting. ;)http://stackoverflow.com/questions/118532/what-is-the-best-way-to-send-a-html-email-from-asp-net-mvc/279718#279718Comment by Pascal Paradis on What is the best way to send a HTML email from Asp.net MVC?Pascal Paradis2008-12-08T00:36:25Z2008-12-08T00:36:25ZYour link doesn't work here.
http://stackoverflow.com/questions/341103/c-to-vb-net-why-does-this-fail-to-compile-when-converted-to-vbComment by Pascal Paradis on C# to VB.Net: Why does this fail to compile when converted to VB?Pascal Paradis2008-12-04T16:02:39Z2008-12-04T16:02:39ZWhat is the error that it gives?http://stackoverflow.com/questions/14967/c-coding-standard-best-practices/113159#113159Comment by Pascal Paradis on c# Coding standard / Best practicesPascal Paradis2008-11-28T13:48:39Z2008-11-28T13:48:39ZI was about to suggest the same book. A must read.http://stackoverflow.com/questions/309533/unable-to-access-webservice/309542#309542Comment by Pascal Paradis on Unable to access WebServicePascal Paradis2008-11-21T17:46:33Z2008-11-21T17:46:33ZWhy would it be accepted? It barely provides an answer.