Click here to Skip to main content
15,898,036 members
Home / Discussions / C#
   

C#

 
Questionembedding external application into from panel Pin
eng.iris13-Sep-13 13:11
eng.iris13-Sep-13 13:11 
AnswerRe: embedding external application into from panel Pin
BillWoodruff13-Sep-13 16:25
professionalBillWoodruff13-Sep-13 16:25 
GeneralRe: embedding external application into from panel Pin
eng.iris13-Sep-13 17:14
eng.iris13-Sep-13 17:14 
Questionproblem with time field in MySQL Pin
Jassim Rahma13-Sep-13 12:24
Jassim Rahma13-Sep-13 12:24 
AnswerRe: problem with time field in MySQL Pin
Midnight Ahri13-Sep-13 14:02
Midnight Ahri13-Sep-13 14:02 
AnswerRe: problem with time field in MySQL Pin
Richard MacCutchan13-Sep-13 22:32
mveRichard MacCutchan13-Sep-13 22:32 
GeneralRe: problem with time field in MySQL Pin
Jassim Rahma14-Sep-13 10:15
Jassim Rahma14-Sep-13 10:15 
GeneralRe: problem with time field in MySQL Pin
Jassim Rahma14-Sep-13 10:28
Jassim Rahma14-Sep-13 10:28 
this is my database structure for your info:

SQL
CREATE TABLE `job_orders` (
  `job_order_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) DEFAULT NULL,
  `cleaner_id` int(11) DEFAULT NULL,
  `job_order_status` int(255) DEFAULT '1' COMMENT 'New, Cancelled, Completed, Payment',
  `is_cancelled` bit(1) DEFAULT b'0',
  `job_order_date` date DEFAULT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  `job_order_note` text,
  `created_date` datetime DEFAULT NULL,
  `created_user` int(11) DEFAULT NULL,
  PRIMARY KEY (`job_order_id`),
  UNIQUE KEY `idx_job_orders_job_order_id` (`job_order_id`),
  KEY `idx_job_orders_customer_id` (`customer_id`),
  KEY `idx_job_orders_cleaner_id` (`cleaner_id`),
  KEY `idx_job_orders_job_order_status` (`job_order_status`),
  KEY `idx_job_orders_is_cancelled` (`is_cancelled`),
  KEY `idx_job_orders_job_order_date` (`job_order_date`),
  KEY `idx_job_orders_start_time` (`start_time`),
  KEY `idx_job_orders_end_time` (`end_time`),
  KEY `idx_job_orders_created_date` (`created_date`),
  KEY `idx_job_orders_created_user` (`created_user`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;



Technology News @ www.JassimRahma.com

GeneralRe: problem with time field in MySQL Pin
Richard MacCutchan14-Sep-13 21:05
mveRichard MacCutchan14-Sep-13 21:05 
AnswerRe: problem with time field in MySQL Pin
Richard Deeming16-Sep-13 2:12
mveRichard Deeming16-Sep-13 2:12 
QuestionOpera and Safari Url listeners Pin
Túlio Cruz13-Sep-13 8:15
Túlio Cruz13-Sep-13 8:15 
AnswerRe: Opera and Safari Url listeners Pin
Dave Kreskowiak13-Sep-13 9:53
mveDave Kreskowiak13-Sep-13 9:53 
GeneralRe: Opera and Safari Url listeners Pin
Richard Andrew x6413-Sep-13 16:44
professionalRichard Andrew x6413-Sep-13 16:44 
GeneralRe: Opera and Safari Url listeners Pin
Dave Kreskowiak14-Sep-13 4:05
mveDave Kreskowiak14-Sep-13 4:05 
QuestionDesign Pattern Pin
Ankit Mishra12-Sep-13 23:44
Ankit Mishra12-Sep-13 23:44 
AnswerRe: Design Pattern Pin
Richard MacCutchan12-Sep-13 23:55
mveRichard MacCutchan12-Sep-13 23:55 
AnswerRe: Design Pattern Pin
Richard Deeming13-Sep-13 1:11
mveRichard Deeming13-Sep-13 1:11 
AnswerRe: Design Pattern Pin
Abhinav S13-Sep-13 17:25
Abhinav S13-Sep-13 17:25 
AnswerRe: Design Pattern Pin
Jani Giannoudis13-Sep-13 19:07
mvaJani Giannoudis13-Sep-13 19:07 
AnswerRe: Design Pattern Pin
Slacker00714-Sep-13 13:45
professionalSlacker00714-Sep-13 13:45 
QuestionCointegration code for C# - not Silverlight Pin
lordoftrades12-Sep-13 22:40
lordoftrades12-Sep-13 22:40 
AnswerRe: Cointegration code for C# - not Silverlight Pin
Pete O'Hanlon13-Sep-13 1:10
mvePete O'Hanlon13-Sep-13 1:10 
GeneralRe: Cointegration code for C# - not Silverlight Pin
lordoftrades15-Sep-13 22:16
lordoftrades15-Sep-13 22:16 
GeneralRe: Cointegration code for C# - not Silverlight Pin
Pete O'Hanlon15-Sep-13 22:40
mvePete O'Hanlon15-Sep-13 22:40 
QuestionHow to generate barcode and qrcode dynamically? Pin
Sahyadri3112-Sep-13 20:51
Sahyadri3112-Sep-13 20:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.