User Bigballs - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:17:26Zhttp://stackoverflow.com/feeds/user/55614http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/643340/freeze-th-header-and-scrolling-data1Freeze TH header and scrolling dataBigballs2009-03-13T15:46:45Z2009-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-website0Is there a way to know if someone has bookmarked your website?Bigballs2009-09-08T12:05:28Z2009-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#14662041Answer by Bigballs for PHP Include vs RequireBigballs2009-09-23T14:03:49Z2009-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-hour3How to execute code in c# service one time per day at the same hour ?Bigballs2009-09-03T13:06:18Z2009-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-server2How to implement LIMIT with Microsoft SQL Server?Bigballs2009-03-02T19:54:59Z2009-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#7996920Answer by Bigballs for What do project managers do all day?Bigballs2009-04-28T20:35:19Z2009-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-server1How can I do a BEFORE UPDATED trigger with sql server?Bigballs2009-03-13T13:54:05Z2009-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-of10<?php instead of <?Bigballs2009-02-10T16:30:54Z2009-03-09T20:10:16Z
<p>Why should I use <code><?php</code> instead of <code><?</code> in my php script?</p>
http://stackoverflow.com/questions/602553/jquery-dropdown-css-issues/602571#6025710Answer by Bigballs for jQuery dropdown - CSS issuesBigballs2009-03-02T14:44:15Z2009-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#6068070Answer by Bigballs for HTML+CSS to RTF (in PHP)?Bigballs2009-03-03T15:20:32Z2009-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-mssql1How to browse results with php mssql ?Bigballs2009-03-02T19:35:29Z2009-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-mssql0Get only the Date part of DateTime in mssqlBigballs2009-02-19T20:29:04Z2009-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-accent1mssql_query accentBigballs2009-02-25T13:41:14Z2009-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-php1What is the difference between require and include with php?Bigballs2009-02-27T19:07:29Z2009-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-express1How can I make service apps with Visual c# Express?Bigballs2009-02-20T13:46:38Z2009-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#5673012Answer by Bigballs for Oracle FormsBigballs2009-02-19T21:41:39Z2009-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-jquery2How to move div with the mouse using jquery ?Bigballs2009-02-18T16:34:23Z2009-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-div0jquery wait cursor while loading html in divBigballs2009-02-18T14:55:04Z2009-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-intranet0What is the best database to use for an intranet? [closed]Bigballs2009-02-10T19:25:59Z2009-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#5157130Answer by Bigballs for SQL query to select unreferenced rowsBigballs2009-02-05T12:32:05Z2009-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#50876518Answer by Bigballs for What real life bad habits has programming given you?Bigballs2009-02-03T20:21:44Z2009-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#4746810Answer by Bigballs for Query to replace a comma in SQL?Bigballs2009-01-23T21:36:46Z2009-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#4484430Answer by Bigballs for How to change culture to a DateTimepicker or calendar control in .NetBigballs2009-01-15T20:57:40Z2009-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#4507262Answer by Bigballs for Using a variable in a queryBigballs2009-01-16T15:24:31Z2009-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#4507980Answer by Bigballs for Count and group by query for counting rows in database table based on 3 to 4 conditionsBigballs2009-01-16T15:41:21Z2009-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#4486000Answer by Bigballs for Powerful .NET Map APIs?Bigballs2009-01-15T21:47:33Z2009-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#1373435Comment by Bigballs on How to execute code in c# service one time per day at the same hour ?Bigballs2009-09-03T13:49:23Z2009-09-03T13:49:23ZThis 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#1373321Comment by Bigballs on How to execute code in c# service one time per day at the same hour ?Bigballs2009-09-03T13:23:23Z2009-09-03T13:23:23Zif 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#603735Comment by Bigballs on How to implement LIMIT with Microsoft SQL Server?Bigballs2009-03-02T20:00:18Z2009-03-02T20:00:18ZDo you have another suggestion to bypass this?http://stackoverflow.com/questions/603724/how-to-implement-limit-with-microsoft-sql-server/603731#603731Comment by Bigballs on How to implement LIMIT with Microsoft SQL Server?Bigballs2009-03-02T19:57:40Z2009-03-02T19:57:40ZThanks, but I want the record between 10 and 20, there's a way to do it?http://stackoverflow.com/questions/586031/mssqlquery-accent/586034#586034Comment by Bigballs on mssql_query accentBigballs2009-02-25T14:37:15Z2009-02-25T14:37:15ZIt'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#586034Comment by Bigballs on mssql_query accentBigballs2009-02-25T13:50:20Z2009-02-25T13:50:20ZAre you sure that's working with a MSSQL query?http://stackoverflow.com/questions/533787/what-is-the-best-database-to-use-for-an-intranetComment by Bigballs on What is the best database to use for an intranet?Bigballs2009-02-10T19:32:14Z2009-02-10T19:32:14ZI 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#515713Comment by Bigballs on SQL query to select unreferenced rowsBigballs2009-02-05T13:48:40Z2009-02-05T13:48:40Zthanks for the explanation