Click here to Skip to main content
15,867,568 members
Home / Discussions / C#
   

C#

 
GeneralRe: Dispose an instance Pin
DaveyM694-Mar-09 4:35
professionalDaveyM694-Mar-09 4:35 
AnswerRe: Dispose an instance Pin
harold aptroot4-Mar-09 6:29
harold aptroot4-Mar-09 6:29 
GeneralRe: Dispose an instance Pin
yesu prakash4-Mar-09 18:37
yesu prakash4-Mar-09 18:37 
GeneralRe: Dispose an instance Pin
harold aptroot4-Mar-09 22:46
harold aptroot4-Mar-09 22:46 
GeneralRe: Dispose an instance Pin
yesu prakash5-Mar-09 17:23
yesu prakash5-Mar-09 17:23 
GeneralRe: Dispose an instance Pin
harold aptroot5-Mar-09 22:37
harold aptroot5-Mar-09 22:37 
Questionpassing multiple parameters to the query in C# Pin
Deepali Khalkar4-Mar-09 1:34
Deepali Khalkar4-Mar-09 1:34 
AnswerRe: passing multiple parameters to the query in C# Pin
N a v a n e e t h4-Mar-09 1:42
N a v a n e e t h4-Mar-09 1:42 
You have created only one parameter and overwriting it's properties each time. You need separate SqlCeParameter instances for each parameter.
comm.Parameters.AddWithValue("@uname",textBox1 .Text);
comm.Parameters.AddWithValue("@psw",textBox2 .Text);
...
AddWithValue[^] will create SqlCeParameter internally and add it to the Parameters collection.

Smile | :)


AnswerRe: passing multiple parameters to the query in C# Pin
Megidolaon4-Mar-09 2:04
Megidolaon4-Mar-09 2:04 
GeneralRe: passing multiple parameters to the query in C# Pin
J4amieC4-Mar-09 2:29
J4amieC4-Mar-09 2:29 
AnswerRe: passing multiple parameters to the query in C# Pin
fly9044-Mar-09 5:14
fly9044-Mar-09 5:14 
QuestionTcpChannel disconnect Pin
yesu prakash4-Mar-09 0:15
yesu prakash4-Mar-09 0:15 
AnswerRe: TcpChannel disconnect Pin
stancrm4-Mar-09 1:25
stancrm4-Mar-09 1:25 
QuestionSpecified argument was out of the range of valid values. Parameter name: index. Pin
haleemasher4-Mar-09 0:09
haleemasher4-Mar-09 0:09 
AnswerRe: Specified argument was out of the range of valid values. Parameter name: index. Pin
Shyam K Pananghat4-Mar-09 0:24
Shyam K Pananghat4-Mar-09 0:24 
QuestionProcess.start don't work Pin
abbd3-Mar-09 23:41
abbd3-Mar-09 23:41 
AnswerRe: Process.start don't work Pin
Calin Tatar3-Mar-09 23:48
Calin Tatar3-Mar-09 23:48 
GeneralRe: Process.start don't work Pin
Thomas Krojer4-Mar-09 0:40
Thomas Krojer4-Mar-09 0:40 
QuestionHow to run a class library? Pin
YiXiang_893-Mar-09 23:02
YiXiang_893-Mar-09 23:02 
AnswerRe: How to run a class library? Pin
Eddy Vluggen3-Mar-09 23:06
professionalEddy Vluggen3-Mar-09 23:06 
GeneralRe: How to run a class library? Pin
YiXiang_894-Mar-09 2:14
YiXiang_894-Mar-09 2:14 
GeneralRe: How to run a class library? Pin
Eddy Vluggen4-Mar-09 2:29
professionalEddy Vluggen4-Mar-09 2:29 
AnswerRe: How to run a class library? [modified] Pin
Megidolaon4-Mar-09 2:16
Megidolaon4-Mar-09 2:16 
Questionhow to generate an MSI for my excel addin project in c# Pin
abhiram_nayan3-Mar-09 22:57
abhiram_nayan3-Mar-09 22:57 
AnswerRe: how to generate an MSI for my excel addin project in c# [modified] Pin
Shyam K Pananghat3-Mar-09 23:18
Shyam K Pananghat3-Mar-09 23:18 

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.