User Daok - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T07:42:05Zhttp://stackoverflow.com/feeds/user/13913http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1785489/asp-net-controls-lose-their-id-when-postback0ASP.NET Controls lose their ID when postback?Daok2009-11-23T19:44:42Z2009-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#12122962Answer by Daok for How bad is the WPF Learning Curve?Daok2009-07-31T12:32:13Z2009-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-method11Do you test private method?Daok2008-09-19T19:56:20Z2009-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-statistic1Visual Studio Compilation Time StatisticDaok2009-11-12T19:14:36Z2009-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#17248010Answer by Daok for Why is the usage of "#" comments frequently discouraged in PHP?Daok2009-11-12T19:35:01Z2009-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#17106110Answer by Daok for Returning arrays in php causes syntax errorDaok2009-11-10T19:37:26Z2009-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-question0ASP.NET datalist questionDaok2009-11-09T17:45:41Z2009-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> <asp:DataList ID="dlSpeechBubble" runat="server">
<ItemTemplate>
<CSVSMS:Bubble ID="singleSpeechBubble" runat="server" CurrentDataItem="<%# Container.DataItem %>"/>
</ItemTemplate>
</asp:DataList>
</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-chars1Regex how to get stuff between char without those chars?Daok2009-11-09T00:42:50Z2009-11-09T00:47:56Z
<p>Example:</p>
<p>\Doe, John\" <15553775555>"</p>
<p>The regex is \<(.*?)> and match <15553775555>. But it would be more accurate if it would return only what is inside the < >. 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-why0Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T20:54:07Z2009-11-06T22:01:13Z
<p>Here is a snippet that doesn't work:</p>
<pre><code><form id="form1" runat="server">
<div>
This is the time :
<br />
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnRefresh"/>
</Triggers>
</asp:UpdatePanel>
<br />
<asp:Button ID="btnRefresh" runat="server" text="Refresh" OnClick="btnRefresh_Click"/>
</div>
</form>
</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#16907781Answer by Daok for Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T22:01:13Z2009-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><?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<appSettings/>
<connectionStrings/>
<system.web>
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="true">
<assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies>
</compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrors> 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.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<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"/>
<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"/>
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>
<system.web.extensions>
<scripting>
<webServices>
</webServices>
</scripting>
</system.web.extensions>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
<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"/>
<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"/>
<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" />
</handlers>
</system.webServer>
</configuration>
</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-vs0Visual Studio Unit Testing Accessor, how to re-generate them without closing VS?Daok2009-06-19T19:05:04Z2009-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-linqtosql7LINQ with SQLite (linqtosql)Daok2008-10-30T12:53:59Z2009-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-server0How to query from a stored procedure in SQL Server?Daok2009-11-04T21:10:31Z2009-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-method3Accessing private member of a parameter within a Static method?Daok2009-10-27T14:16:23Z2009-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-04Linq/lambda question about .Select (newby learning 3.0)Daok2008-10-28T01:29:02Z2009-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 => n % 2 == 1);
Console.WriteLine("Numbers < 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#16223340Answer by Daok for CSS: Two 50% fluid columns not respecting min widthDaok2009-10-25T22:41:55Z2009-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><div id="container2">
<div id="container1">
<div id="col1">
<!-- Column one start -->
<h2>Equal height columns</h2>
<p>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.</p>
<h2>Valid XHTML strict markup</h2>
<p>The HTML in this layout validates as XHTML 1.0 strict.</p>
<!-- Column one end -->
</div>
<div id="col2">
<!-- Column two start -->
<h3>Windows</h3>
<ul>
<li>Firefox 1.5, 2 &amp; 3</li>
<li>Safari</li>
<li>Opera 8 &amp; 9</li>
<li>Explorer 5.5, 6 &amp; 7</li>
<li>Google Chrome</li>
<li>Netscape 8</li>
</ul>
<!-- Column two end -->
</div>
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/191995/visual-studio-2005-quick-file-search0Visual Studio 2005 quick file searchDaok2008-10-10T15:52:31Z2009-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-person21How to test GUI for color blind person?Daok2009-10-05T14:37:04Z2009-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 & 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-directly2Sould I cache Gravatar icon or access image directly?Daok2009-09-14T15:09:05Z2009-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-union1SQL query doesn't work when using UNION?Daok2009-10-18T22:56:42Z2009-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#15863880Answer by Daok for SQL query doesn't work when using UNION?Daok2009-10-18T23:56:26Z2009-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#3745091Answer by Daok for Do you use Unit Testing in your professional projects?Daok2008-12-17T13:21:15Z2009-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#15267582Answer by Daok for Create user management system for my site Daok2009-10-06T16:45:20Z2009-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#15205470Answer by Daok for How to test GUI for color blind person?Daok2009-10-05T14:49:04Z2009-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-methods2Data Access Layer or having object with CRUD methods?Daok2009-10-05T12:02:37Z2009-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-ads1css menu under Google Ads?Daok2009-10-04T17:36:55Z2009-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>...
<div id="navigation">
<ul id="nav">
<li class="page_item page-item-26"><a href="http://www.forexvirtuel.com/les-calculs/" title="Les calculs">Les calculs</a>
<ul>
<li class="page_item page-item-33"><a href="http://www.forexvirtuel.com/les-calculs/calcul-du-rollover/" title="Calcul du Rollover">Calcul du Rollover</a></li>
<li class="page_item page-item-31"><a href="http://www.forexvirtuel.com/les-calculs/calculs-des-gains-et-calculs-pertes/" title="Calculs des gains et calculs pertes">Calculs des gains et calculs pertes</a></li>
<li class="page_item page-item-29"><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)">Prix d’un pip (prix d’un point)</a></li>
</ul>
</ul>
</div>
<div id="navigation_pub">
<script type="text/javascript"><!--
google_ad_client = "pub-0909660115587797";
/* Forex_Header */
google_ad_slot = "6839564983";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
...
</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#14985910Answer by Daok for Looking for reference/quote/source on code maintenanceDaok2009-09-30T14:47:35Z2009-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#14664291Answer by Daok for Difference between "," and "." in PHP?Daok2009-09-23T14:39:46Z2009-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-1Answer by Daok for PHP variables maintaining an URL string.Daok2009-09-23T14:29:23Z2009-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-error1WPF adding Icon to windows cause Property ErrorDaok2009-03-16T20:41:15Z2009-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-postbackComment by Daok on ASP.NET Controls lose their ID when postback?Daok2009-11-23T20:55:15Z2009-11-23T20:55:15ZI am trying to build a small snippet of code. I can't post the real complete code here it's against the "business policy". I'll post back in few.http://stackoverflow.com/questions/1785489/asp-net-controls-lose-their-id-when-postbackComment by Daok on ASP.NET Controls lose their ID when postback?Daok2009-11-23T20:13:57Z2009-11-23T20:13:57ZThe 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 :Shttp://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739225#1739225Comment by Daok on What is a good Javascript debugging tool?Daok2009-11-16T16:16:47Z2009-11-16T16:16:47ZFireBug 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#229840Comment by Daok on Extreme Programming, does it work?Daok2009-11-13T16:11:14Z2009-11-13T16:11:14ZIn 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#1724801Comment by Daok on Why is the usage of "#" comments frequently discouraged in PHP?Daok2009-11-12T19:47:47Z2009-11-12T19:47:47ZThe OP simply say " for example, those of PEAR or Kohana" and doesnt say "WHY PEAR and Konoha does not use balblabla". 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-statisticComment by Daok on Visual Studio Compilation Time StatisticDaok2009-11-12T19:23:17Z2009-11-12T19:23:17ZI understand you :)http://stackoverflow.com/questions/1723780/warm-up-net-applicationComment by Daok on Warm-up .NET applicationDaok2009-11-12T17:30:41Z2009-11-12T17:30:41ZThis 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#1702659Comment by Daok on ASP.NET datalist questionDaok2009-11-09T18:00:02Z2009-11-09T18:00:02ZI am new to .Net for "web side" and I thought that if I had a list of object the "good" way to do it was with a DataList and a usercontrol that has the "shape" of the container of the information. But now I realize that thee "container" 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#1690533Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T21:29:41Z2009-11-06T21:29:41ZI 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#1690492Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T21:17:16Z2009-11-06T21:17:16ZI 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#1690457Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T21:13:23Z2009-11-06T21:13:23ZHow can I change the postback then? My snippet is really close to the MSDN one and it doesn't work >.<http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690457#1690457Comment by Daok on Asp.Net page with Ajax reload the whole page everytime, why?Daok2009-11-06T21:09:43Z2009-11-06T21:09:43ZI have removed ChildrenAsTriggers without more success.http://stackoverflow.com/questions/759854/how-do-i-run-nunit-in-debug-mode-from-visual-studioComment by Daok on How do I run NUnit in debug mode from Visual Studio?Daok2009-11-06T16:19:58Z2009-11-06T16:19:58ZLook 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/…</a>
The answer is the same...http://stackoverflow.com/questions/1676655/how-to-query-from-a-stored-procedure-in-sql-serverComment by Daok on How to query from a stored procedure in SQL Server?Daok2009-11-04T21:27:41Z2009-11-04T21:27:41ZAlright, 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-serverComment by Daok on How to query from a stored procedure in SQL Server?Daok2009-11-04T21:18:29Z2009-11-04T21:18:29ZWhat I do not get it? What's wrong and I see no where that I use "I do no'". You care to explain?