User Bigballs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:17:26Z http://stackoverflow.com/feeds/user/55614 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/643340/freeze-th-header-and-scrolling-data 1 Freeze TH header and scrolling data Bigballs 2009-03-13T15:46:45Z 2009-10-22T14:41:17Z <p>I have a html table and I want to freeze the header row th tag for scrolling the data. How I can do that? Does I need to use the Dom? Thanks !!</p> http://stackoverflow.com/questions/1393618/is-there-a-way-to-know-if-someone-has-bookmarked-your-website 0 Is there a way to know if someone has bookmarked your website? Bigballs 2009-09-08T12:05:28Z 2009-10-15T09:21:06Z <p>I want to make stats for my website. One thing I want to do is to know how many people bookmark my website. What's the best way to do that without a survey?</p> http://stackoverflow.com/questions/1466188/php-include-vs-require/1466204#1466204 1 Answer by Bigballs for PHP Include vs Require Bigballs 2009-09-23T14:03:49Z 2009-09-23T14:03:49Z <p>I've already ask this question : <a href="http://stackoverflow.com/questions/596156/what-is-the-difference-between-require-and-include-with-php">http://stackoverflow.com/questions/596156/what-is-the-difference-between-require-and-include-with-php</a></p> http://stackoverflow.com/questions/1373306/how-to-execute-code-in-c-service-one-time-per-day-at-the-same-hour 3 How to execute code in c# service one time per day at the same hour ? Bigballs 2009-09-03T13:06:18Z 2009-09-03T13:45:47Z <p>So here's my problem, I need to do a c# service running on a server who's getting file on ftp one time per day at 3am. I think that I can do it with a thread.sleep() or by compare the DateTime.Now with 3am.... </p> <p>Do you have better solution?</p> <p>Thank you very much for your help!</p> http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server 2 How to implement LIMIT with Microsoft SQL Server? Bigballs 2009-03-02T19:54:59Z 2009-07-27T12:47:46Z <p>I have this query with mysql : </p> <pre><code>select * from table1 LIMIT 10,20 </code></pre> <p>How can I do this with Microsoft sql ?</p> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/799692#799692 0 Answer by Bigballs for What do project managers do all day? Bigballs 2009-04-28T20:35:19Z 2009-04-28T20:35:19Z <p>Take all opportunity to say : "That's what she said !" (Michael Scott)</p> http://stackoverflow.com/questions/642822/how-can-i-do-a-before-updated-trigger-with-sql-server 1 How can I do a BEFORE UPDATED trigger with sql server? Bigballs 2009-03-13T13:54:05Z 2009-03-31T04:55:39Z <p>I'm using Sqlserver express and I can't do <code>before updated</code> trigger. There's a other way to do that?</p> http://stackoverflow.com/questions/533057/php-instead-of 10 <?php instead of <? Bigballs 2009-02-10T16:30:54Z 2009-03-09T20:10:16Z <p>Why should I use <code>&lt;?php</code> instead of <code>&lt;?</code> in my php script?</p> http://stackoverflow.com/questions/602553/jquery-dropdown-css-issues/602571#602571 0 Answer by Bigballs for jQuery dropdown - CSS issues Bigballs 2009-03-02T14:44:15Z 2009-03-09T07:16:18Z <p>try this: </p> <pre><code>$(document).ready(function() { $('.btn-fishing-trip').hover(function() { $('.fishing-trip').slideDown("slow"); $('.combo').slideUp("slow"); }); $('.btn-combo').hover(function() { $('.combo').slideDown("slow"); $('.fishing-trip').slideUp("slow"); }); }); </code></pre> http://stackoverflow.com/questions/605936/htmlcss-to-rtf-in-php/606807#606807 0 Answer by Bigballs for HTML+CSS to RTF (in PHP)? Bigballs 2009-03-03T15:20:32Z 2009-03-03T15:20:32Z <p>I've found this :</p> <p><a href="http://www.phpclasses.org/browse/package/1805.html" rel="nofollow">http://www.phpclasses.org/browse/package/1805.html</a></p> <p>Let me know if it's good!</p> http://stackoverflow.com/questions/603663/how-to-browse-results-with-php-mssql 1 How to browse results with php mssql ? Bigballs 2009-03-02T19:35:29Z 2009-03-02T20:42:01Z <p>I'm working with php and I want to do a next button that's step to the next 10 records (like when you browse question with stackoverflow) I don't know how to do that but I'm thinking to do it with Top n record ? Do you think that's a good idea ? Any suggestion?</p> http://stackoverflow.com/questions/566998/get-only-the-date-part-of-datetime-in-mssql 0 Get only the Date part of DateTime in mssql Bigballs 2009-02-19T20:29:04Z 2009-03-02T18:18:29Z <p>How can I get only the Date part of a DateTime ? I'm searching for something like year() function but for the whole date.</p> http://stackoverflow.com/questions/586031/mssqlquery-accent 1 mssql_query accent Bigballs 2009-02-25T13:41:14Z 2009-03-02T18:11:59Z <p>I hava a problem with this mssql_query in PHP :</p> <pre><code>$query = 'SELECT Ville FROM tblLstManufacturiers where province = "Québec"'; </code></pre> <p>The result is empty because I have an accent in Québec</p> <p>How can I do this?</p> http://stackoverflow.com/questions/596156/what-is-the-difference-between-require-and-include-with-php 1 What is the difference between require and include with php? Bigballs 2009-02-27T19:07:29Z 2009-02-27T23:06:39Z <p>I want to know when I should use include or require and what's the advantage of each one. Thanks!</p> http://stackoverflow.com/questions/569606/how-can-i-make-service-apps-with-visual-c-express 1 How can I make service apps with Visual c# Express? Bigballs 2009-02-20T13:46:38Z 2009-02-20T14:09:29Z <p>I have build an application to parse Xml file for integrating data in mssql database. I'm using Visual c# express. There's a way to make service with express edition or I a have to get Visual Studio to do it?</p> http://stackoverflow.com/questions/567195/oracle-forms/567301#567301 2 Answer by Bigballs for Oracle Forms Bigballs 2009-02-19T21:41:39Z 2009-02-19T21:41:39Z <p>You can use format mask property like 999.99</p> http://stackoverflow.com/questions/561844/how-to-move-div-with-the-mouse-using-jquery 2 How to move div with the mouse using jquery ? Bigballs 2009-02-18T16:34:23Z 2009-02-18T17:00:29Z <p>I need to be able to move a div with my mouse and store the new pos of the div in database to remember the display. How can I do it? </p> http://stackoverflow.com/questions/561379/jquery-wait-cursor-while-loading-html-in-div 0 jquery wait cursor while loading html in div Bigballs 2009-02-18T14:55:04Z 2009-02-18T14:59:06Z <p>I want to show to the user a state that the result is loading. How can I change cursor or gif while loading result in div with $MyDiv.load("page.php") ?</p> http://stackoverflow.com/questions/533787/what-is-the-best-database-to-use-for-an-intranet 0 What is the best database to use for an intranet? [closed] Bigballs 2009-02-10T19:25:59Z 2009-02-12T05:04:04Z <p>Someone suggest me to use a wamp for the intranet but the database is already setup with a mssql. I want to know if it's a great move to use mysql instead of mssql cause I have to migrate all data from mssql to mysql. Plus, I want to know some crappy problem that I can face during the migration.</p> <p>Thanks!</p> http://stackoverflow.com/questions/515690/sql-query-to-select-unreferenced-rows/515713#515713 0 Answer by Bigballs for SQL query to select unreferenced rows Bigballs 2009-02-05T12:32:05Z 2009-02-05T12:38:12Z <pre><code>select a.* from table_a a where a.id not in (select b.a_key from table_b b where b.a_key = a.id) </code></pre> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/508765#508765 18 Answer by Bigballs for What real life bad habits has programming given you? Bigballs 2009-02-03T20:21:44Z 2009-02-03T20:21:44Z <p>I'm always angry when someone says to me : "Hey you are programmer, can you program my TV/DVD ?"</p> http://stackoverflow.com/questions/427851/query-to-replace-a-comma-in-sql/474681#474681 0 Answer by Bigballs for Query to replace a comma in SQL? Bigballs 2009-01-23T21:36:46Z 2009-01-23T21:36:46Z <p>Use replace when you concat your string for insert :</p> <pre><code>REPLACE('address,,state,zipcode', ',,' , ',' ) </code></pre> http://stackoverflow.com/questions/241964/how-to-change-culture-to-a-datetimepicker-or-calendar-control-in-net/448443#448443 0 Answer by Bigballs for How to change culture to a DateTimepicker or calendar control in .Net Bigballs 2009-01-15T20:57:40Z 2009-01-16T23:52:14Z <pre><code>System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture("fr"); System.Threading.Thread.CurrentThread.CurrentUICulture = System.Threading.Thread.CurrentThread.CurrentCulture; </code></pre> http://stackoverflow.com/questions/445993/using-a-variable-in-a-query/450726#450726 2 Answer by Bigballs for Using a variable in a query Bigballs 2009-01-16T15:24:31Z 2009-01-16T15:43:44Z <pre><code>SqlCommand cmd = new sqlCommand("select * from table1 where column1 = @value", connection); cmd.parameters.add(new SqlParameters("@value", "yourvalue")); SqlDataReader dr = cmd.ExecuteReader(); while (dr.read()) { //code here! } </code></pre> <p>I Hope this will be usefull!</p> http://stackoverflow.com/questions/449648/count-and-group-by-query-for-counting-rows-in-database-table-based-on-3-to-4-cond/450798#450798 0 Answer by Bigballs for Count and group by query for counting rows in database table based on 3 to 4 conditions Bigballs 2009-01-16T15:41:21Z 2009-01-16T15:41:21Z <pre><code>SELECT question, sum(CASE (answer1) WHEN "true" THEN 1 WHEN "false" THEN 0 END) as answer1, sum(CASE (answer2) WHEN "true" THEN 1 WHEN "false" THEN 0 END) as answer2 FROM survey group by question </code></pre> <p>I hope this is what you want !</p> http://stackoverflow.com/questions/448534/powerful-net-map-apis/448600#448600 0 Answer by Bigballs for Powerful .NET Map APIs? Bigballs 2009-01-15T21:47:33Z 2009-01-15T21:47:33Z <p><a href="http://en.googlemaps.subgurim.net/" rel="nofollow">http://en.googlemaps.subgurim.net/</a></p> <p>It's an asp.net user control</p> http://stackoverflow.com/questions/1373306/how-to-execute-code-in-c-service-one-time-per-day-at-the-same-hour/1373435#1373435 Comment by Bigballs on How to execute code in c# service one time per day at the same hour ? Bigballs 2009-09-03T13:49:23Z 2009-09-03T13:49:23Z This is what I'm thinking...I've try the scheduled task and after the server reboot nothing start... Thank you! http://stackoverflow.com/questions/1373306/how-to-execute-code-in-c-service-one-time-per-day-at-the-same-hour/1373321#1373321 Comment by Bigballs on How to execute code in c# service one time per day at the same hour ? Bigballs 2009-09-03T13:23:23Z 2009-09-03T13:23:23Z if there's no session open on the server does the scheduled task will run ? http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server/603735#603735 Comment by Bigballs on How to implement LIMIT with Microsoft SQL Server? Bigballs 2009-03-02T20:00:18Z 2009-03-02T20:00:18Z Do you have another suggestion to bypass this? http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server/603731#603731 Comment by Bigballs on How to implement LIMIT with Microsoft SQL Server? Bigballs 2009-03-02T19:57:40Z 2009-03-02T19:57:40Z Thanks, but I want the record between 10 and 20, there's a way to do it? http://stackoverflow.com/questions/586031/mssqlquery-accent/586034#586034 Comment by Bigballs on mssql_query accent Bigballs 2009-02-25T14:37:15Z 2009-02-25T14:37:15Z It'S not working, but I use the utf8_decode function on my query and it's working. Thank's a lot! http://stackoverflow.com/questions/586031/mssqlquery-accent/586034#586034 Comment by Bigballs on mssql_query accent Bigballs 2009-02-25T13:50:20Z 2009-02-25T13:50:20Z Are you sure that's working with a MSSQL query? http://stackoverflow.com/questions/533787/what-is-the-best-database-to-use-for-an-intranet Comment by Bigballs on What is the best database to use for an intranet? Bigballs 2009-02-10T19:32:14Z 2009-02-10T19:32:14Z I know that isn't a programming question, this is why I tag it migration. http://stackoverflow.com/questions/515690/sql-query-to-select-unreferenced-rows/515713#515713 Comment by Bigballs on SQL query to select unreferenced rows Bigballs 2009-02-05T13:48:40Z 2009-02-05T13:48:40Z thanks for the explanation