-
Stopped Watching HELP ON USING TEMP TABLES!!!
Hello Temporary table is not being deleted once the connection is closed. I am not sure if the code is used correctly. Because when I run the code it just … -
Began Watching HELP ON USING TEMP TABLES!!!
Hello Temporary table is not being deleted once the connection is closed. I am not sure if the code is used correctly. Because when I run the code it just … -
Replied To a Post in HELP ON USING TEMP TABLES!!!
Shouldn't that be: CREATE TEMPORARY TABLE temp ... Without the `#` -
Stopped Watching source code protection
Hi, I want to build a web application for customers to run on their local servers on their computers offline. I want that my code logic be protected and no … -
Began Watching source code protection
Hi, I want to build a web application for customers to run on their local servers on their computers offline. I want that my code logic be protected and no … -
Replied To a Post in source code protection
> Is there any way to protect the code without encoding software? No. You need an encoding tool. PHP is text only, and ASP.NET can be reverse engineered. -
Stopped Watching What movie have you seen lately?
Hi I watch a few movies the past weekend, just to relaxed and not think about work. I saw a few movies. I saw: **The Raid Redemption** - The best … -
Began Watching What movie have you seen lately?
Hi I watch a few movies the past weekend, just to relaxed and not think about work. I saw a few movies. I saw: **The Raid Redemption** - The best … -
Replied To a Post in What movie have you seen lately?
[The Human Race](http://www.imdb.com/title/tt1427298/) A little gore with a funny ending. -
Stopped Watching URI Formats not supported
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Text; public partial class _Default : Page { protected void Page_Load(object sender, EventArgs e) { … -
Began Watching URI Formats not supported
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Text; public partial class _Default : Page { protected void Page_Load(object sender, EventArgs e) { … -
Replied To a Post in URI Formats not supported
The `~` is not automatically expanded. You can use `MapPath()` -
Stopped Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Began Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Replied To a Post in Merge 2 queries
Change `COUNT` to `SUM` and try again. -
Stopped Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Began Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Replied To a Post in Merge 2 queries
The above was obvious. You still haven't said what result you are getting now, what goes wrong with the query you tried. -
Stopped Watching Where can I learn C++ game development online for free?
I'm 11 years old and I'm absouloutly LOVE programming. I'm learning C++, but I heard that C++ is used for creating games. Where can I learn game development online for … -
Began Watching Where can I learn C++ game development online for free?
I'm 11 years old and I'm absouloutly LOVE programming. I'm learning C++, but I heard that C++ is used for creating games. Where can I learn game development online for … -
Replied To a Post in Where can I learn C++ game development online for free?
[Here](http://www.cprogramming.com/game-programming.html) is some info. > I'm 11 years old So you lied when you signed up? From our Terms of Service: *In compliance with the U.S. Coppa Act, no one … -
Stopped Watching URI Formats not supported
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Text; public partial class _Default : Page { protected void Page_Load(object sender, EventArgs e) { … -
Began Watching URI Formats not supported
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Text; public partial class _Default : Page { protected void Page_Load(object sender, EventArgs e) { … -
Replied To a Post in URI Formats not supported
[File](http://msdn.microsoft.com/en-us/library/d62kzs03(v=vs.110).aspx) doesn't accept URL's. It needs to be an absolute or relative filepath. -
Stopped Watching Link underline
http://www.daniweb.com/web-development/php/threads/470495/trim-content#post2052543 I see the link in the code as strikethrough (Win7/IE11). Image attached.  -
Created Link underline
http://www.daniweb.com/web-development/php/threads/470495/trim-content#post2052543 I see the link in the code as strikethrough (Win7/IE11). Image attached.  -
Began Watching Link underline
http://www.daniweb.com/web-development/php/threads/470495/trim-content#post2052543 I see the link in the code as strikethrough (Win7/IE11). Image attached.  -
Stopped Watching regular expression validation
how do i write a regular expression to validate user input to ensure that the user input contains 1 digit, a space and any number of letters. -
Began Watching regular expression validation
how do i write a regular expression to validate user input to ensure that the user input contains 1 digit, a space and any number of letters. -
Replied To a Post in regular expression validation
You can use a loop, so you check each letter and keep administration of what passes are valid, invalid characters. You can use [strpos](http://php.net/strpos) to check. -
Edited Firebird and TransactionScope
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much … -
Stopped Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Began Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Replied To a Post in Merge 2 queries
> I am not getting right result Just dumping the query on me, without test data, without specifying what you expected as result and without the actual result is not … -
Edited Firebird and TransactionScope
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much … -
Stopped Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Began Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Replied To a Post in Merge 2 queries
http://dev.mysql.com/doc/refman/5.7/en/case.html COUNT(CASE WHEN s.status_value=0 THEN 1 ELSE 0 END CASE) AS Open, COUNT(CASE WHEN s.status_value=1 THEN 1 ELSE 0 END CASE) AS Pending This works too: COUNT(IF(s.status_value=0, 1, 0)) AS … -
Edited Firebird and TransactionScope
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much … -
Created Firebird and TransactionScope
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much … -
Began Watching Firebird and TransactionScope
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much … -
Stopped Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Began Watching Merge 2 queries
Hi, I am trying to merge below two queries in a single query such that company_id,company_name,noOfOpenTickets,noOf PendingTickets Need suggestions?? No Of open Tickets: select c.company_id, (select company_name from company where … -
Replied To a Post in Merge 2 queries
Remove `and s.status_value=` and use a `case` with your `count`. -
Stopped Watching regular expression validation
how do i write a regular expression to validate user input to ensure that the user input contains 1 digit, a space and any number of letters. -
Began Watching regular expression validation
how do i write a regular expression to validate user input to ensure that the user input contains 1 digit, a space and any number of letters. -
Replied To a Post in regular expression validation
Although it often sounds like a regex is your solution, it's not always the case. Simply counting the required characters/digits is much simpler. -
Stopped Watching ATOM Activity Stream
I'm trying to create an ATOM activity stream ala http://activitystrea.ms/ However, I'm confused a bit by the proper format, and also wondering if the JSON version is replacing the ATOM … -
Began Watching ATOM Activity Stream
I'm trying to create an ATOM activity stream ala http://activitystrea.ms/ However, I'm confused a bit by the proper format, and also wondering if the JSON version is replacing the ATOM … -
Replied To a Post in ATOM Activity Stream
Hmz, cannot find any obvious issues.
The End.