-
Began Watching CrystalReportViewer1 Error
Hi, Could anyone help me to solve this error that occurs im my asp.net project ? Thanks  -
Replied To a Post in CrystalReportViewer1 Error
Apparently you cannot set that property. I suggest you remove it and see what happens. -
Edited Mvc 4 Application
Hi this is my Fisrt Article Here I made Graduation project It's Forums and social Network In MVC4 so it's Vedio about Project Cuz I didn't Upload It Yet So … -
Stopped Watching How to convert julian date to date using php
Hi I am trying to convert julian date in to date format. can any one please help me. **For Example:** Julian date - 114021 Output Should be as below 2014/01/21 … -
Stopped Watching How to convert julian date to date using php
Hi I am trying to convert julian date in to date format. can any one please help me. **For Example:** Julian date - 114021 Output Should be as below 2014/01/21 … -
Began Watching How to convert julian date to date using php
Hi I am trying to convert julian date in to date format. can any one please help me. **For Example:** Julian date - 114021 Output Should be as below 2014/01/21 … -
Replied To a Post in How to convert julian date to date using php
http://www.php.net/manual/en/ref.calendar.php Perhaps one of the `JDxxx` functions can help you. -
Stopped Watching No overload takes 0 parameters
Background: My store procedure 'GetAtdRecord_Sp' to optionally accept parameter 'EmplID' otherwise default value is null. It works in SQl server management studio even if i provide no value as i … -
Began Watching No overload takes 0 parameters
Background: My store procedure 'GetAtdRecord_Sp' to optionally accept parameter 'EmplID' otherwise default value is null. It works in SQl server management studio even if i provide no value as i … -
Replied To a Post in No overload takes 0 parameters
Check out this [article](http://www.hookedonlinq.com/CallingStoredProcedureUsingOptionalParameter.ashx). Your issue sounds similar. -
Stopped Watching how to convert a string to date of this type
Hi how can i comvert the string type for ex : 10/12/2012(d/m/Y) to date .. it changes date to month and month to date.. my expected format is d/m/Y format … -
Began Watching how to convert a string to date of this type
Hi how can i comvert the string type for ex : 10/12/2012(d/m/Y) to date .. it changes date to month and month to date.. my expected format is d/m/Y format … -
Replied To a Post in how to convert a string to date of this type
http://php.net/manual/en/datetime.createfromformat.php -
Stopped Watching Search
Hallo, I am trying to make this search box works. This is my code: navigation.php <? //This is only displayed if they have submitted the form if ($searching =="yes") { … -
Began Watching Search
Hallo, I am trying to make this search box works. This is my code: navigation.php <? //This is only displayed if they have submitted the form if ($searching =="yes") { … -
Replied To a Post in Search
http://www.daniweb.com/web-development/php/code/435142/using-phppdo-with-error-checking See lines 72-84. You cannot use `foreach` on what `query()` returns. -
Stopped Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Began Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Replied To a Post in API CV Data Error
> people in this thread That's only me. When I give an opinion you usually ask where my posse is before considering a change ;) -
Stopped Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Began Watching API CV Data Error
Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and … -
Replied To a Post in API CV Data Error
I prefer clarity over ease of reuse. -
Stopped Watching  symbol appears with Font Awesome
On my site, I've been tweaking the remember me checkbox so that it looks like a button, whilst still being a checkbox, my html is: <span class="button-checkbox"><button type="button" class="btn" data-color="info">Remember … -
Began Watching  symbol appears with Font Awesome
On my site, I've been tweaking the remember me checkbox so that it looks like a button, whilst still being a checkbox, my html is: <span class="button-checkbox"><button type="button" class="btn" data-color="info">Remember … -
Replied To a Post in  symbol appears with Font Awesome
Try both, see if it makes a difference. -
Stopped Watching how to parse this jaon in php
{"Data":{"Date":"08:09 20-01-2014","SchoolID":"923214157777","Type":"1","Nic":{"3520135201001","3520135201002","3520135201003"}}} -
Began Watching how to parse this jaon in php
{"Data":{"Date":"08:09 20-01-2014","SchoolID":"923214157777","Type":"1","Nic":{"3520135201001","3520135201002","3520135201003"}}} -
Replied To a Post in how to parse this jaon in php
It's `Date`, not `date` -
Stopped Watching how to parse this jaon in php
{"Data":{"Date":"08:09 20-01-2014","SchoolID":"923214157777","Type":"1","Nic":{"3520135201001","3520135201002","3520135201003"}}} -
Began Watching how to parse this jaon in php
{"Data":{"Date":"08:09 20-01-2014","SchoolID":"923214157777","Type":"1","Nic":{"3520135201001","3520135201002","3520135201003"}}} -
Replied To a Post in how to parse this jaon in php
http://php.net/json_decode -
Stopped Watching UPDATE TABLE
Hi! Anyone can help me about my problem on HOW TO UPDATE TABLE USING THE CONTENTS FROM ANOTHER TABLE? Thank you in advance for those who can help me. Anyway, … -
Began Watching UPDATE TABLE
Hi! Anyone can help me about my problem on HOW TO UPDATE TABLE USING THE CONTENTS FROM ANOTHER TABLE? Thank you in advance for those who can help me. Anyway, … -
Stopped Watching UPDATE TABLE
Hi! Anyone can help me about my problem on HOW TO UPDATE TABLE USING THE CONTENTS FROM ANOTHER TABLE? Thank you in advance for those who can help me. Anyway, … -
Began Watching UPDATE TABLE
Hi! Anyone can help me about my problem on HOW TO UPDATE TABLE USING THE CONTENTS FROM ANOTHER TABLE? Thank you in advance for those who can help me. Anyway, … -
Replied To a Post in UPDATE TABLE
INSERT INTO tblsales (the columns you want to copy here) SELECT the columns you want to copy here FROM tblsalesdummy -
Stopped Watching Updating table with PHP PDO execute
Hi Everyone, I am new to PDO PHP - I am getting to grips with the insert statements with bind_param. What I am a bit confused about is how to … -
Began Watching Updating table with PHP PDO execute
Hi Everyone, I am new to PDO PHP - I am getting to grips with the insert statements with bind_param. What I am a bit confused about is how to … -
Replied To a Post in Updating table with PHP PDO execute
Oh, `table` is a reserved word, so if that's really the name of your table, surround it with backticks. Ah, I missed that comma too... -
Edited CrystalReportViewer1 Error
Hi, Could anyone help me to solve this error that occurs im my asp.net project ? Thanks  -
Stopped Watching Updating table with PHP PDO execute
Hi Everyone, I am new to PDO PHP - I am getting to grips with the insert statements with bind_param. What I am a bit confused about is how to … -
Began Watching Updating table with PHP PDO execute
Hi Everyone, I am new to PDO PHP - I am getting to grips with the insert statements with bind_param. What I am a bit confused about is how to … -
Replied To a Post in Updating table with PHP PDO execute
[Here](http://www.daniweb.com/web-development/php/code/435142/using-phppdo-with-error-checking)'s a code snippet showing you how to check for errors. Perhaps you need to explicitly specify the type if you are inserting into a blob. -
Stopped Watching Single Store CRM application to Multi Store CRM
My company has Desktop application developed in vb.net using devexpress controls. Back End database is MySQL. Company is in retailing and have 2 retail stores in in same city. Both … -
Began Watching Single Store CRM application to Multi Store CRM
My company has Desktop application developed in vb.net using devexpress controls. Back End database is MySQL. Company is in retailing and have 2 retail stores in in same city. Both … -
Replied To a Post in Single Store CRM application to Multi Store CRM
Oh well. If they can setup the replication, then depending on what kind of queries you are using, you'd need to rewrite some. Stored procedures etc would have to ben … -
Stopped Watching Creating a CSV Upload to Mysql
when i click upload button, it takes long to load wthout csv, but when i upload csv it dispays csv pocessed..but there is no data uploaded...what could be the wrong … -
Began Watching Creating a CSV Upload to Mysql
when i click upload button, it takes long to load wthout csv, but when i upload csv it dispays csv pocessed..but there is no data uploaded...what could be the wrong … -
Replied To a Post in Creating a CSV Upload to Mysql
> Ok first thing's first don't use else else in php and in other programming languages there is no double else. I think you missed a bracket ;) His construct … -
Stopped Watching Single Store CRM application to Multi Store CRM
My company has Desktop application developed in vb.net using devexpress controls. Back End database is MySQL. Company is in retailing and have 2 retail stores in in same city. Both …
The End.