Click here to Skip to main content
15,890,123 members
Home / Discussions / C#
   

C#

 
GeneralRe: some parameters or creditional have not specified in rdlc Pin
Abdul Rahman Hamidy29-Nov-09 23:41
Abdul Rahman Hamidy29-Nov-09 23:41 
QuestionGlitches while collecting a device data over USB-Serial converter. Pin
Raghunandan Sheshadri29-Nov-09 18:31
Raghunandan Sheshadri29-Nov-09 18:31 
AnswerMessage Closed Pin
29-Nov-09 19:11
stancrm29-Nov-09 19:11 
GeneralRe: Glitches while collecting a device data over USB-Serial converter. Pin
Raghunandan Sheshadri30-Nov-09 21:41
Raghunandan Sheshadri30-Nov-09 21:41 
QuestionConvert problem! Pin
miss YY29-Nov-09 15:14
miss YY29-Nov-09 15:14 
AnswerRe: Convert problem! Pin
Luc Pattyn29-Nov-09 16:20
sitebuilderLuc Pattyn29-Nov-09 16:20 
AnswerRe: Convert problem! [modified] Pin
dan!sh 29-Nov-09 16:22
professional dan!sh 29-Nov-09 16:22 
AnswerRe: Convert problem! Pin
N a v a n e e t h29-Nov-09 16:22
N a v a n e e t h29-Nov-09 16:22 
miss YY wrote:
how can i change it


What are you trying to do here? Both mm and nn variables will have same value and your query may not return any values.

miss YY wrote:
i use data Sql2000,Field time's Property is datetime


Then you need to compare against a DateTime not just an integer variable that has date.
DateTime mm = dateTimePicker1.Value;
DateTime nn = dateTimePicker2.Value;
SqlCommand SCD = new SqlCommand("select * from table_inf where time >= @mm and time <= @nn", Conn);
SCD.Parameters.AddWithValue("@mm", mm);
SCD.Parameters.AddWithValue("@nn", nn);


Best wishes,
Navaneeth

GeneralRe: Convert problem! Pin
PIEBALDconsult30-Nov-09 5:10
mvePIEBALDconsult30-Nov-09 5:10 
QuestionUnderstanding MSDTC in Windows. Pin
mittalpa29-Nov-09 13:41
mittalpa29-Nov-09 13:41 
AnswerRe: Understanding MSDTC in Windows. Pin
N a v a n e e t h29-Nov-09 16:27
N a v a n e e t h29-Nov-09 16:27 
QuestionNew to C#, wants to put it all together... Pin
logikos29-Nov-09 12:04
logikos29-Nov-09 12:04 
AnswerRe: New to C#, wants to put it all together... Pin
T210229-Nov-09 13:14
T210229-Nov-09 13:14 
AnswerRe: New to C#, wants to put it all together... Pin
minnie mouse1-Dec-09 12:31
minnie mouse1-Dec-09 12:31 
Questionmagic wand Pin
bayram_ytu29-Nov-09 9:59
bayram_ytu29-Nov-09 9:59 
AnswerRe: magic wand Pin
Alan N29-Nov-09 13:16
Alan N29-Nov-09 13:16 
GeneralRe: magic wand Pin
bayram_ytu29-Nov-09 13:31
bayram_ytu29-Nov-09 13:31 
AnswerRe: magic wand Pin
_Maxxx_30-Nov-09 17:03
professional_Maxxx_30-Nov-09 17:03 
QuestionConfigurationProperty Validator Pin
koleraba29-Nov-09 7:42
koleraba29-Nov-09 7:42 
QuestionCopyright Question Pin
Zaegra29-Nov-09 6:36
Zaegra29-Nov-09 6:36 
AnswerMessage Closed Pin
29-Nov-09 7:20
stancrm29-Nov-09 7:20 
GeneralRe: Copyright Question Pin
Zaegra29-Nov-09 7:41
Zaegra29-Nov-09 7:41 
QuestionRe: Copyright Question Pin
Richard MacCutchan29-Nov-09 9:58
mveRichard MacCutchan29-Nov-09 9:58 
GeneralRe: Copyright Question Pin
Zaegra29-Nov-09 11:01
Zaegra29-Nov-09 11:01 
AnswerRe: Copyright Question Pin
DaveyM6929-Nov-09 11:48
professionalDaveyM6929-Nov-09 11:48 

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.