User Daok - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:42:05Z http://stackoverflow.com/feeds/user/13913 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1785489/asp-net-controls-lose-their-id-when-postback 0 ASP.NET Controls lose their ID when postback? Daok 2009-11-23T19:44:42Z 2009-11-23T21:32:19Z <p>I have a usercontrol that contains 2 textboxes.</p> <p>When the page is postback, the ID of those 2 textboxes disappear? The value stay there when the Ajax is called (ontextchanged). I noticed that the method "LoadPostData" of IPostBackDataHandler is not called after a postback (but only when the Ajax is called).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1212245/how-bad-is-the-wpf-learning-curve/1212296#1212296 2 Answer by Daok for How bad is the WPF Learning Curve? Daok 2009-07-31T12:32:13Z 2009-11-19T16:40:11Z <p>I have been playing with .NET for more than 4 years, mostly <a href="http://en.wikipedia.org/wiki/Windows%5FForms" rel="nofollow">Windows Forms</a> applications. Binding is not something unknown and I try to use good practice in all my C# applications. For the past 1 month, I have been learning WPF for the job and I have to admit that it's VERY powerful but a lot harder to achieve things. You can do a lot more and achieve some cool designs with less effort but only once you know how it really works and it's hard because it's huge. </p> <p>More, debugging is harder - that makes the learning more slow too. The problem I think is the IDE of Visual Studio that doesn't help much in the XAML and you rapidly miss some features of <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">IntelliSense</a> of C# when doing binding or other stuff that now is in a XML tag. I like it but yes, the learning curve is not smooth.</p> http://stackoverflow.com/questions/105007/do-you-test-private-method 11 Do you test private method? Daok 2008-09-19T19:56:20Z 2009-11-16T17:08:44Z <p>I have read the post about how to test private (<a href="http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods">http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods</a>) method because I usually do not test them, I always thought it's more fast to only test public method that will be called from the external of the object.</p> <p>Do you test private method? or Should I always test private method?</p> http://stackoverflow.com/questions/1724642/visual-studio-compilation-time-statistic 1 Visual Studio Compilation Time Statistic Daok 2009-11-12T19:14:36Z 2009-11-12T19:58:03Z <p>Anyone know an add-in or something that could give me the number of time spent on compiling during the day? I am interested to gather some data about the time I use Visual Studio to code and to compile. Any tips would be welcome too if no add-in exist.</p> <h3>Edit:</h3> <p>I would need to have in the time all DLL loaded too by the ASP.Net webserver, not only those in the solution, what I mean is all those Output that looks like "'WebDev.WebServer2.exe' (Managed): Loaded 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\99145ad7\e9f1e7e6..." must be count in the statistic too.</p> http://stackoverflow.com/questions/1724773/why-is-the-usage-of-comments-frequently-discouraged-in-php/1724801#1724801 0 Answer by Daok for Why is the usage of "#" comments frequently discouraged in PHP? Daok 2009-11-12T19:35:01Z 2009-11-12T19:35:01Z <p>It doesn't matter and # is not discouraged by PHP. Here is the reference to the <a href="http://www.php.net/manual/en/language.basic-syntax.comments.php" rel="nofollow">PHP Documentation.</a>. PHP supports 'C', 'C++' and Unix shell-style (Perl style) comments.</p> http://stackoverflow.com/questions/1710571/returning-arrays-in-php-causes-syntax-error/1710611#1710611 0 Answer by Daok for Returning arrays in php causes syntax error Daok 2009-11-10T19:37:26Z 2009-11-10T19:37:26Z <p>I am pretty sure if you do :</p> <pre><code>$myArray = get_arr(); echo $myArray[0]; </code></pre> <p>That it will works. You cannot use braket directly.</p> http://stackoverflow.com/questions/1702610/asp-net-datalist-question 0 ASP.NET datalist question Daok 2009-11-09T17:45:41Z 2009-11-09T17:53:50Z <p>I have made some progress with the DataList and UserControl this morning but I still try to figure out how I could improve my code (everything work but the GUI is not yet what desired).</p> <p>In the ASPX file I have something like that :</p> <pre><code> &lt;asp:DataList ID="dlSpeechBubble" runat="server"&gt; &lt;ItemTemplate&gt; &lt;CSVSMS:Bubble ID="singleSpeechBubble" runat="server" CurrentDataItem="&lt;%# Container.DataItem %&gt;"/&gt; &lt;/ItemTemplate&gt; &lt;/asp:DataList&gt; </code></pre> <p>Every object bind well but the problem is that I need the user control to act differently depending of the value of the previous Data is compared to its value.</p> <p>Where in ASP.NET does the logic between item goes? In PHP I would have do a loop and check with an index -1 and compare value... but how can I do it in ASP.NET?</p> http://stackoverflow.com/questions/1698525/regex-how-to-get-stuff-between-char-without-those-chars 1 Regex how to get stuff between char without those chars? Daok 2009-11-09T00:42:50Z 2009-11-09T00:47:56Z <p>Example:</p> <p>\Doe, John\" &lt;15553775555>"</p> <p>The regex is \&lt;(.*?)> and match &lt;15553775555>. But it would be more accurate if it would return only what is inside the &lt; >. How can we modified it to have what's inside? (By the way, what's inside can be not only a 12 digits...</p> http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why 0 Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T20:54:07Z 2009-11-06T22:01:13Z <p>Here is a snippet that doesn't work:</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;div&gt; This is the time : &lt;br /&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt;&lt;/asp:ScriptManager&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="conditional" ChildrenAsTriggers="false"&gt; &lt;ContentTemplate&gt; &lt;asp:TextBox ID="txtDate" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnRefresh"/&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;br /&gt; &lt;asp:Button ID="btnRefresh" runat="server" text="Refresh" OnClick="btnRefresh_Click"/&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>In the code behind:</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { Clock c = new Clock(); string display = c.GetCurrentTime().ToLongTimeString(); this.Title = display; this.txtDate.Text = display; } protected void btnRefresh_Click(object sender, EventArgs e) { Clock c = new Clock(); string display = c.GetCurrentTime().ToLongTimeString(); this.txtDate.Text = display; } </code></pre> <p>Why does the page reload and not just the UpdatePanel?</p> http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690778#1690778 1 Answer by Daok for Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T22:01:13Z 2009-11-06T22:01:13Z <p>Alright I figure it out because everybody was successful but not me so I guess that was a configuration somewhere.</p> <p>In fact, you need to have some tag in the web.config to be able to used the Ajax Framework and I was missing some here is now my web.config :</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" /&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;appSettings/&gt; &lt;connectionStrings/&gt; &lt;system.web&gt; &lt;pages&gt; &lt;controls&gt; &lt;add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/controls&gt; &lt;/pages&gt; &lt;!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --&gt; &lt;compilation debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt;&lt;/assemblies&gt; &lt;/compilation&gt; &lt;!-- The &lt;authentication&gt; section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --&gt; &lt;authentication mode="Windows"/&gt; &lt;!-- The &lt;customErrors&gt; section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. &lt;customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"&gt; &lt;error statusCode="403" redirect="NoAccess.htm" /&gt; &lt;error statusCode="404" redirect="FileNotFound.htm" /&gt; &lt;/customErrors&gt; --&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx"/&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;system.web.extensions&gt; &lt;scripting&gt; &lt;webServices&gt; &lt;/webServices&gt; &lt;/scripting&gt; &lt;/system.web.extensions&gt; &lt;system.webServer&gt; &lt;validation validateIntegratedModeConfiguration="false"/&gt; &lt;modules&gt; &lt;add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/modules&gt; &lt;handlers&gt; &lt;remove name="WebServiceHandlerFactory-Integrated" /&gt; &lt;add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> <p>I will give +1 to everybody who give me enough hint. Thank you everybody</p> http://stackoverflow.com/questions/1019561/visual-studio-unit-testing-accessor-how-to-re-generate-them-without-closing-vs 0 Visual Studio Unit Testing Accessor, how to re-generate them without closing VS? Daok 2009-06-19T19:05:04Z 2009-11-06T08:49:32Z <p>Sometime, when the Unit Test of a class has been done and method use _Accessor while the code has changed. What ever you compile many time it still doesn't "synchronize" the _Accessor file. The only thing that work is closing VS2008 and reopend it. Any trick to "regenerate" the Testing Accessor?</p> http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql 7 LINQ with SQLite (linqtosql) Daok 2008-10-30T12:53:59Z 2009-11-05T14:28:51Z <p>I have a small project that require a storage (I choose SQLite) and I got good result with the <a href="http://sqlite.phxsoftware.com/" rel="nofollow">ADO DLL for .Net for Sqlite</a>.</p> <p>After the Install, I noticed that it contain a SQLLinq.dll. Before investigating too much effort, and because I haven't see any good example on the web, I would like to know if anyone got any good result with SQLite and LINQ?</p> <p>*If linqtosql work the same way what ever the SQL database, let me know it. I was interesting with the Dll when I saw it because I never use Linqtosql before and I thought it would be a great opportunity to try,</p> http://stackoverflow.com/questions/1676655/how-to-query-from-a-stored-procedure-in-sql-server 0 How to query from a stored procedure in SQL Server? Daok 2009-11-04T21:10:31Z 2009-11-04T22:16:34Z <p>Let say I have a simple Stored Procedure:</p> <pre><code>ALTER PROCEDURE [dbo].[myProc] AS BEGIN SELECT * FROM myTable END </code></pre> <p>How can I do a WHERE statement in Microsoft SQL Server Management Studio to the stored procedure? Something like that:</p> <pre><code>SELECT * FROM myProc WHERE x = 'a'; -- But that doesn't work... </code></pre> http://stackoverflow.com/questions/1631124/accessing-private-member-of-a-parameter-within-a-static-method 3 Accessing private member of a parameter within a Static method? Daok 2009-10-27T14:16:23Z 2009-10-27T14:25:11Z <p>How can this code compile? The code below in the operator int CAN access a private variable of the class MyValue? Why?</p> <pre><code>class Program { static void Main(string[] args) { Myvalue my = new Myvalue(100); Console.WriteLine(my + 100); Console.Read(); } } public class Myvalue { private int _myvalue; public Myvalue(int value) { _myvalue = value; } public static implicit operator int(Myvalue v) { return v._myvalue; } } </code></pre> http://stackoverflow.com/questions/241967/linq-lambda-question-about-select-newby-learning-3-0 4 Linq/lambda question about .Select (newby learning 3.0) Daok 2008-10-28T01:29:02Z 2009-10-27T08:32:17Z <p>I am playing with the new stuff of C#3.0 and I have this code (mostly taken from <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">MSDN</a>) but I can only get true,false,true... and not the real value :</p> <pre><code> int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var oddNumbers = numbers.Select(n =&gt; n % 2 == 1); Console.WriteLine("Numbers &lt; 5:"); foreach (var x in oddNumbers) { Console.WriteLine(x); } </code></pre> <p>How can I fix that to show the list of integer?</p> http://stackoverflow.com/questions/191429/css-two-50-fluid-columns-not-respecting-min-width/1622334#1622334 0 Answer by Daok for CSS: Two 50% fluid columns not respecting min width Daok 2009-10-25T22:41:55Z 2009-10-25T22:41:55Z <p>Here is a good example of what you desire I think.</p> <p><a href="http://matthewjamestaylor.com/blog/equal-height-columns-2-column.htm" rel="nofollow">http://matthewjamestaylor.com/blog/equal-height-columns-2-column.htm</a></p> <p>In short here is the CSS:</p> <pre><code>/* Start of Column CSS */ #container2 { clear:left; float:left; width:100%; overflow:hidden; background:#ffa7a7; /* column 2 background colour */ } #container1 { float:left; width:100%; position:relative; right:50%; background:#fff689; /* column 1 background colour */ } #col1 { float:left; width:46%; position:relative; left:52%; overflow:hidden; } #col2 { float:left; width:46%; position:relative; left:56%; overflow:hidden; } </code></pre> <p>Here is the html:</p> <pre><code>&lt;div id="container2"&gt; &lt;div id="container1"&gt; &lt;div id="col1"&gt; &lt;!-- Column one start --&gt; &lt;h2&gt;Equal height columns&lt;/h2&gt; &lt;p&gt;It does not matter how much content is in each column, the background colours will always stretch down to the height of the tallest column.&lt;/p&gt; &lt;h2&gt;Valid XHTML strict markup&lt;/h2&gt; &lt;p&gt;The HTML in this layout validates as XHTML 1.0 strict.&lt;/p&gt; &lt;!-- Column one end --&gt; &lt;/div&gt; &lt;div id="col2"&gt; &lt;!-- Column two start --&gt; &lt;h3&gt;Windows&lt;/h3&gt; &lt;ul&gt; &lt;li&gt;Firefox 1.5, 2 &amp;amp; 3&lt;/li&gt; &lt;li&gt;Safari&lt;/li&gt; &lt;li&gt;Opera 8 &amp;amp; 9&lt;/li&gt; &lt;li&gt;Explorer 5.5, 6 &amp;amp; 7&lt;/li&gt; &lt;li&gt;Google Chrome&lt;/li&gt; &lt;li&gt;Netscape 8&lt;/li&gt; &lt;/ul&gt; &lt;!-- Column two end --&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/191995/visual-studio-2005-quick-file-search 0 Visual Studio 2005 quick file search Daok 2008-10-10T15:52:31Z 2009-10-22T00:08:19Z <p>In Eclispe you can do Ctrl+Shit+R and a Window popup where you can write the name of the file (or just the beginning of it) and to press enter to go directly to the file.</p> <p>What is the equivalence in Visual Studio 2005? (Ctrl+Shift+F is not what I would like).</p> http://stackoverflow.com/questions/1520491/how-to-test-gui-for-color-blind-person 21 How to test GUI for color blind person? Daok 2009-10-05T14:37:04Z 2009-10-21T22:11:13Z <p>Is there a way to test if a GUI is usable for color blind person? I know that it has many degree and I guess it's why that simply doing a screenshot in Black &amp; White is not the best way to test the usability of a GUI for color blind person. What is the best way to do it or best tool?</p> http://stackoverflow.com/questions/1422157/sould-i-cache-gravatar-icon-or-access-image-directly 2 Sould I cache Gravatar icon or access image directly? Daok 2009-09-14T15:09:05Z 2009-10-20T10:28:23Z <p>In the context of having a list of user that has an icon next to their name, is it better to cache all images of Gravatar for few minutes or it's fine to directly display the image from Gravatar? The list is around 200 users on every pages.</p> http://stackoverflow.com/questions/1586266/sql-query-doesnt-work-when-using-union 1 SQL query doesn't work when using UNION? Daok 2009-10-18T22:56:42Z 2009-10-18T23:56:26Z <p>Here is the snapshot of the query that doesn't work since I added the Union.</p> <pre><code>SELECT fin05_usager.idUsager, (SELECT sum(nombreReputation) as nombreReputation FROM (SELECT SUM(nombreReputationGagner) as nombreReputation FROM fin05_usager_reputation WHERE fin05_usager_reputation.idUsager = fin05_usager.idUsager GROUP BY fin05_usager_reputation.idUsager UNION SELECT SUM(cc_badge.valeurEnReputation) as nombreReputation FROM cc_badge, fin05_usager_badge WHERE fin05_usager_badge.idBadge = cc_badge.idBadge AND fin05_usager_badge.idUsager = fin05_usager.idUsager) as repuUnion ) as repu FROM fin05_usager WHERE fin05_usager.idUsager = 6 </code></pre> <p>The error is : #1054 - Unknown column 'fin05_usager.idUsager' in 'where clause' </p> <p>If I remove the fin05_usager.idUsager and use directly '6' it does work.</p> <p>If I remove the union and use only one of the 2 select it works (what ever if I take the FROM fin05_usager_reputation or the other one FROM cc_badge, fin05_usager_badge.</p> <p>Why when using the UNION the error about finding the idUsager appear and without the union no error is found?</p> <h1>Schema simplified:</h1> <p>fin05_usager: idUsager int(8)</p> <p>fin05_usager_reputation : idUsager int(8), nombreReputationGagner int(4)</p> <p>cc_badge : idBadge int(4), valeurEnReputation int(4)</p> <p>fin05_usager_badge : idUsager int(8), idBadge int(4)</p> <h1>Note:</h1> <p>I cannot do the subquery directly in the query. I have to use it inside a subquery in the select because in real, the query is very big and already contain Group, etc.</p> http://stackoverflow.com/questions/1586266/sql-query-doesnt-work-when-using-union/1586388#1586388 0 Answer by Daok for SQL query doesn't work when using UNION? Daok 2009-10-18T23:56:26Z 2009-10-18T23:56:26Z <p>Alright,</p> <p>The only way I found for the moment without doing a Group By in the main query (since in the real situation I can't because it does contain already a Group By clause) is to do it in 2 and to merge it with the code... not exaclty what I would like but it works at least:</p> <pre><code> SELECT fin05_usager.idUsager, (SELECT sum(nombreReputationGagner) as nombreReputation1 FROM fin05_usager_reputation WHERE fin05_usager_reputation.idUsager = fin05_usager.idUsager group by fin05_usager_reputation.idUsager) as nombreReputation1 , (SELECT sum(cc_badge.valeurEnReputation) as nombreReputation2 FROM cc_badge, fin05_usager_badge WHERE fin05_usager_badge.idBadge = cc_badge.idBadge AND fin05_usager_badge.idUsager = fin05_usager.idUsager) as nombreReputation2 FROM fin05_usager where fin05_usager.idUsager = 6 </code></pre> <p>In the code I sum the nombreReputation1 and nombreReputation2.</p> http://stackoverflow.com/questions/211751/do-you-use-unit-testing-in-your-professional-projects/374509#374509 1 Answer by Daok for Do you use Unit Testing in your professional projects? Daok 2008-12-17T13:21:15Z 2009-10-11T17:16:49Z <p>We do Unit Testing after a section of code works like the client really desire. At first we were doing Unit Testing too fast and when the client change his/her mind (and it occurs, trust me) you often have to delete the code as well as the Unit Test. It was too time consuming and costly. I am for Unit Testing, but <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">TDD</a> wasn't something economical for us.</p> http://stackoverflow.com/questions/1526679/create-user-management-system-for-my-site/1526758#1526758 2 Answer by Daok for Create user management system for my site Daok 2009-10-06T16:45:20Z 2009-10-06T16:45:20Z <p>Take a sheet of paper and try to put all thing you think you will need like what information every user must have in their profile, etc. Do you want to have picture? How do you want user to be affiliate to other user? Try to figure out what your want first.</p> <p>Once you have everything more clear, try to get tools (IDE + Framework) that is more suitable for your needs.</p> http://stackoverflow.com/questions/1520491/how-to-test-gui-for-color-blind-person/1520547#1520547 0 Answer by Daok for How to test GUI for color blind person? Daok 2009-10-05T14:49:04Z 2009-10-05T14:49:04Z <p>I just found from Futjusu "Color Doctor" that can display website in 4 modes of color blind: <a href="http://www.fujitsu.com/global/accessibility/assistance/cd/" rel="nofollow">Color Doctor</a>. </p> http://stackoverflow.com/questions/1519669/data-access-layer-or-having-object-with-crud-methods 2 Data Access Layer or having object with CRUD methods? Daok 2009-10-05T12:02:37Z 2009-10-05T13:13:27Z <p>I used to have a Data Access Layer that take the object by parameter and handle with abstraction the type of persistence required. At my new job, the architect is thinking to implement CRUD operation (load..save..delete..update) into all model object. Those method would have an object by parameter that will handle the saving of the object. Exemple : load(IPersistence persistence). I have some doubt about the extensibility and that each model object would have to implement all load,save,delete,update method.</p> <p>What is the best approach?</p> http://stackoverflow.com/questions/1516947/css-menu-under-google-ads 1 css menu under Google Ads? Daok 2009-10-04T17:36:55Z 2009-10-04T17:45:18Z <p>I have a weird effect :</p> <p><img src="http://clip2net.com/clip/m12122/1254677363-clip-11kb.png" alt="alt text" /></p> <p>As you can see, the menu goes under the Google banner. I am searching something that could put the menu over the banner. You can see this effet live at : <a href="http://www.forexvirtuel.com" rel="nofollow">www.forexvirtuel.com</a>.</p> <p>The code look like:</p> <pre><code>... &lt;div id="navigation"&gt; &lt;ul id="nav"&gt; &lt;li class="page_item page-item-26"&gt;&lt;a href="http://www.forexvirtuel.com/les-calculs/" title="Les calculs"&gt;Les calculs&lt;/a&gt; &lt;ul&gt; &lt;li class="page_item page-item-33"&gt;&lt;a href="http://www.forexvirtuel.com/les-calculs/calcul-du-rollover/" title="Calcul du Rollover"&gt;Calcul du Rollover&lt;/a&gt;&lt;/li&gt; &lt;li class="page_item page-item-31"&gt;&lt;a href="http://www.forexvirtuel.com/les-calculs/calculs-des-gains-et-calculs-pertes/" title="Calculs des gains et calculs pertes"&gt;Calculs des gains et calculs pertes&lt;/a&gt;&lt;/li&gt; &lt;li class="page_item page-item-29"&gt;&lt;a href="http://www.forexvirtuel.com/les-calculs/prix-d%e2%80%99un-pip-prix-d%e2%80%99un-point/" title="Prix d’un pip (prix d’un point)"&gt;Prix d’un pip (prix d’un point)&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div id="navigation_pub"&gt; &lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-0909660115587797"; /* Forex_Header */ google_ad_slot = "6839564983"; google_ad_width = 728; google_ad_height = 90; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt; &lt;/div&gt; ... </code></pre> <p>Css:</p> <pre><code>#navigation { clear: both; float: left; width: 930px; background-image: url(images/header.gif); height: 56px; padding-right: 20px; margin-top: 1px; } #navigation_pub { clear: both; height: 90px; width: 930px; text-align:center; padding-top:1px; } </code></pre> <p>Any idea how to put the menu over the banner?</p> http://stackoverflow.com/questions/1498504/looking-for-reference-quote-source-on-code-maintenance/1498591#1498591 0 Answer by Daok for Looking for reference/quote/source on code maintenance Daok 2009-09-30T14:47:35Z 2009-09-30T14:47:35Z <p>I think the 3 weeks is wrong. I never read or remember that after 3 weeks someone new is good has the original author.</p> <p>For sure I won't be comfortable in 3 weeks has I would be few hours/days after just written the code but 3 weeks is pretty low. Maybe 1 year is a better time set to see less difference and still... once you read again your own code and your own comment usually you remember what and why the code is written in a particular way. A new person won't understand the deep sense of all your code as fast as the original author...</p> http://stackoverflow.com/questions/1466408/difference-between-and-in-php/1466429#1466429 1 Answer by Daok for Difference between "," and "." in PHP? Daok 2009-09-23T14:39:46Z 2009-09-23T14:39:46Z <p>dot is for concatenation of variable or string this is why it works when you echo while concatening two string and it works when you return a concatenation of string in a method. But the comma won't concatenate and this is why the return statement won't work.</p> <p>The echo is a function that can take multiple parameter. This is why the comma works :</p> <pre><code>void echo ( string $arg1 [, string $... ] ) </code></pre> <p>Use the DOT for concatenation</p> http://stackoverflow.com/questions/1466323/php-variables-maintaining-an-url-string/1466364#1466364 -1 Answer by Daok for PHP variables maintaining an URL string. Daok 2009-09-23T14:29:23Z 2009-09-23T14:29:23Z <p>Simplify the code reading by simply putting everything on 3 lines:</p> <pre><code>$loader_path = "http://remoteservername/loaderapi/"; $page = "loader.php"; require($loader_path . $page ); </code></pre> <p>Much clearer and it works.</p> http://stackoverflow.com/questions/652085/wpf-adding-icon-to-windows-cause-property-error 1 WPF adding Icon to windows cause Property Error Daok 2009-03-16T20:41:15Z 2009-09-21T02:00:04Z <p>Here is the exact error I got. <img src="http://clip2net.com/clip/m12122/1237235885-clip-36kb.png" alt="alt text" /></p> <p>The favicon.ico has been added in the project as a resource and I have set to "Resource" the Build Action. <img src="http://clip2net.com/clip/m12122/1237236030-clip-6kb.png" alt="alt text" /></p> <p>I found some solution that require to add some code. My question is why I can't do it with the Visual Studio Interface?</p> http://stackoverflow.com/questions/1785489/asp-net-controls-lose-their-id-when-postback Comment by Daok on ASP.NET Controls lose their ID when postback? Daok 2009-11-23T20:55:15Z 2009-11-23T20:55:15Z I am trying to build a small snippet of code. I can't post the real complete code here it's against the &quot;business policy&quot;. I'll post back in few. http://stackoverflow.com/questions/1785489/asp-net-controls-lose-their-id-when-postback Comment by Daok on ASP.NET Controls lose their ID when postback? Daok 2009-11-23T20:13:57Z 2009-11-23T20:13:57Z The ID in the HTML is there the first time the page is loaded. Than, they are not more ID. I noticed that the onblur and onactivate disappear too... but not the style. And not the ID of the usercontrol but of the two textbox in :S http://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739225#1739225 Comment by Daok on What is a good Javascript debugging tool? Daok 2009-11-16T16:16:47Z 2009-11-16T16:16:47Z FireBug Lite can react very badly if your website is not well structured. It can popup not below the website, like in the middle :P for IE use the IE8 Dev Tool. http://stackoverflow.com/questions/229815/extreme-programming-does-it-work/229840#229840 Comment by Daok on Extreme Programming, does it work? Daok 2009-11-13T16:11:14Z 2009-11-13T16:11:14Z In practice when the scope is not defined end-user always add new features, or want something change. With XP, the answer is mostly positive because 1) it makes sense it's small iteration 2) it gives jobs 3) client is happy he has what he wants. The problem is that it costs more because human without limit always go over what it should be. But well, this is what I have hear of people who has been on XP on project over 2 millions initial budget. http://stackoverflow.com/questions/1724773/why-is-the-usage-of-comments-frequently-discouraged-in-php/1724801#1724801 Comment by Daok on Why is the usage of "#" comments frequently discouraged in PHP? Daok 2009-11-12T19:47:47Z 2009-11-12T19:47:47Z The OP simply say &quot; for example, those of PEAR or Kohana&quot; and doesnt say &quot;WHY PEAR and Konoha does not use balblabla&quot;. Read the question again my friend. And the question is more about if it's gonna be not used anymore by PHP if you read once again more carefully the question. Have a nice day. http://stackoverflow.com/questions/1724642/visual-studio-compilation-time-statistic Comment by Daok on Visual Studio Compilation Time Statistic Daok 2009-11-12T19:23:17Z 2009-11-12T19:23:17Z I understand you :) http://stackoverflow.com/questions/1723780/warm-up-net-application Comment by Daok on Warm-up .NET application Daok 2009-11-12T17:30:41Z 2009-11-12T17:30:41Z This is not a programming problem but an hardware one. If your application is slow when all your others application it's clearly not a programming problem. http://stackoverflow.com/questions/1702610/asp-net-datalist-question/1702659#1702659 Comment by Daok on ASP.NET datalist question Daok 2009-11-09T18:00:02Z 2009-11-09T18:00:02Z I am new to .Net for &quot;web side&quot; and I thought that if I had a list of object the &quot;good&quot; way to do it was with a DataList and a usercontrol that has the &quot;shape&quot; of the container of the information. But now I realize that thee &quot;container&quot; require to be modified depending of what was the previous value. Can you provide me a link with an example? http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690533#1690533 Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T21:29:41Z 2009-11-06T21:29:41Z I must have something wrong because it doesn't work. The title and the label, text box update everytime I hit the button. I have notived a javascript error in the IE8 status bar that say : Webpage error details : Message: 'Sys' is undefined... http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690492#1690492 Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T21:17:16Z 2009-11-06T21:17:16Z I have copied the code in the DefaultPage and added the update method in the click and the whole page still refresh... do I need to setup something in a configuration file? http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690457#1690457 Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T21:13:23Z 2009-11-06T21:13:23Z How can I change the postback then? My snippet is really close to the MSDN one and it doesn't work &gt;.&lt; http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690457#1690457 Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why? Daok 2009-11-06T21:09:43Z 2009-11-06T21:09:43Z I have removed ChildrenAsTriggers without more success. http://stackoverflow.com/questions/759854/how-do-i-run-nunit-in-debug-mode-from-visual-studio Comment by Daok on How do I run NUnit in debug mode from Visual Studio? Daok 2009-11-06T16:19:58Z 2009-11-06T16:19:58Z Look like this question : <a href="http://stackoverflow.com/questions/247900/is-there-a-free-visual-studio-addin-for-nunit" rel="nofollow" title="is there a free visual studio addin for nunit">stackoverflow.com/questions/247900/&hellip;</a> The answer is the same... http://stackoverflow.com/questions/1676655/how-to-query-from-a-stored-procedure-in-sql-server Comment by Daok on How to query from a stored procedure in SQL Server? Daok 2009-11-04T21:27:41Z 2009-11-04T21:27:41Z Alright, my english is not at your level I guess :P Hope you have fun haha http://stackoverflow.com/questions/1676655/how-to-query-from-a-stored-procedure-in-sql-server Comment by Daok on How to query from a stored procedure in SQL Server? Daok 2009-11-04T21:18:29Z 2009-11-04T21:18:29Z What I do not get it? What's wrong and I see no where that I use &quot;I do no'&quot;. You care to explain?