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

C#

 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
i.j.russell4-Apr-10 12:21
i.j.russell4-Apr-10 12:21 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
i.j.russell4-Apr-10 12:12
i.j.russell4-Apr-10 12:12 
AnswerRe: What is it like working as a proffesional C# programmer? PinPopular
Not Active4-Apr-10 12:23
mentorNot Active4-Apr-10 12:23 
AnswerRe: What is it like working as a proffesional C# programmer? Pin
PIEBALDconsult4-Apr-10 13:42
mvePIEBALDconsult4-Apr-10 13:42 
AnswerRe: What is it like working as a proffesional C# programmer? PinPopular
AspDotNetDev4-Apr-10 14:35
protectorAspDotNetDev4-Apr-10 14:35 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
venomation5-Apr-10 0:37
venomation5-Apr-10 0:37 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
EliottA5-Apr-10 2:13
EliottA5-Apr-10 2:13 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
AspDotNetDev5-Apr-10 6:50
protectorAspDotNetDev5-Apr-10 6:50 
GeneralRe: What is it like working as a proffesional C# programmer? Pin
EliottA5-Apr-10 7:07
EliottA5-Apr-10 7:07 
QuestionToolStripButton Hot Tracking Pin
Dewald4-Apr-10 9:57
Dewald4-Apr-10 9:57 
Questionthe command for run program exe Pin
KARFER4-Apr-10 7:39
KARFER4-Apr-10 7:39 
AnswerRe: the command for run program exe Pin
Not Active4-Apr-10 7:44
mentorNot Active4-Apr-10 7:44 
AnswerRe: the command for run program exe Pin
Ice_Freez054-Apr-10 20:40
Ice_Freez054-Apr-10 20:40 
GeneralRe: the command for run program exe Pin
Not Active5-Apr-10 1:53
mentorNot Active5-Apr-10 1:53 
GeneralRe: the command for run program exe Pin
EliottA5-Apr-10 2:14
EliottA5-Apr-10 2:14 
Questioncreating report by using two dates Pin
N_Hosseini4-Apr-10 7:11
N_Hosseini4-Apr-10 7:11 
AnswerRe: creating report by using two dates Pin
Not Active4-Apr-10 7:46
mentorNot Active4-Apr-10 7:46 
QuestionRe: creating report by using two dates Pin
N_Hosseini4-Apr-10 9:05
N_Hosseini4-Apr-10 9:05 
AnswerRe: creating report by using two dates Pin
Not Active4-Apr-10 9:36
mentorNot Active4-Apr-10 9:36 
First, please format any code you post using the pre tags (i.e. code block). You will get better results if you learn to follow the guidelines here.

N_Hosseini wrote:
SqlCommand command = new SqlCommand("select goods, quantity, price from sales where saledate betwee "+txtbeginingdate.text+" and"+txtendingdate, connection);


It is extremely dangerous to accept unformatted and filter input directly from user controls. Ever heard of SQL Injection Attack?

You need to learn how to use SqlDataAdapter[^]

DataTable dt = new DataTable();<br />
connection.Open();


These lines are useless.

I know the language. I've read a book. - _Madmatt

Questionadding new tables to sql at runtime Pin
teknolog1234-Apr-10 7:08
teknolog1234-Apr-10 7:08 
AnswerRe: adding new tables to sql at runtime Pin
Abhinav S4-Apr-10 7:32
Abhinav S4-Apr-10 7:32 
GeneralRe: adding new tables to sql at runtime Pin
teknolog1234-Apr-10 7:52
teknolog1234-Apr-10 7:52 
QuestionCross-thread operation not valid: Control accessed from a thread other than the thread it was created on. Pin
igalep1324-Apr-10 6:22
igalep1324-Apr-10 6:22 
AnswerRe: Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on. Pin
Nicholas Butler4-Apr-10 6:27
sitebuilderNicholas Butler4-Apr-10 6:27 
AnswerRe: Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on. Pin
Abhinav S4-Apr-10 6:36
Abhinav S4-Apr-10 6:36 

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.