Click here to Skip to main content
15,889,899 members
Home / Discussions / C#
   

C#

 
AnswerRe: Image Comparison Pin
Luc Pattyn19-May-10 9:20
sitebuilderLuc Pattyn19-May-10 9:20 
GeneralRe: Image Comparison Pin
eddieangel19-May-10 9:27
eddieangel19-May-10 9:27 
GeneralRe: Image Comparison Pin
Luc Pattyn19-May-10 9:36
sitebuilderLuc Pattyn19-May-10 9:36 
AnswerRe: Image Comparison Pin
Alan Balkany20-May-10 4:21
Alan Balkany20-May-10 4:21 
Questionusing sqlcommand in c# Pin
teknolog12319-May-10 6:59
teknolog12319-May-10 6:59 
AnswerRe: using sqlcommand in c# Pin
Not Active19-May-10 7:07
mentorNot Active19-May-10 7:07 
AnswerRe: using sqlcommand in c# Pin
PIEBALDconsult19-May-10 7:07
mvePIEBALDconsult19-May-10 7:07 
AnswerRe: using sqlcommand in c# Pin
CodingLover19-May-10 18:06
CodingLover19-May-10 18:06 
Data reader would be the best.

SqlCommand cmd = new SqlCommand("Select Item, SUM(Price) From Table5 Group By Item", sqlConn);
com.CommandType = CommandType.Text;
SqlDataReader rdr = com.ExecuteReader();
if (rdr.HasRows)
{
// Collect information
string str1 = rdr["Item"].ToString();
}

I appreciate your help all the time...
CodingLover Smile | :)

QuestionError Codes Explained! Pin
Jassim Rahma19-May-10 5:44
Jassim Rahma19-May-10 5:44 
AnswerRe: Error Codes Explained! Pin
DiscoJimmy19-May-10 5:53
DiscoJimmy19-May-10 5:53 
AnswerRe: Error Codes Explained! Pin
PIEBALDconsult19-May-10 5:56
mvePIEBALDconsult19-May-10 5:56 
AnswerRe: Error Codes Explained! Pin
Luc Pattyn19-May-10 7:36
sitebuilderLuc Pattyn19-May-10 7:36 
AnswerRe: Error Codes Explained! Pin
Richard MacCutchan19-May-10 10:29
mveRichard MacCutchan19-May-10 10:29 
Questionalternative grid controls? Pin
DiscoJimmy19-May-10 5:22
DiscoJimmy19-May-10 5:22 
AnswerRe: alternative grid controls? Pin
DiscoJimmy19-May-10 5:51
DiscoJimmy19-May-10 5:51 
Questionusing banners in my windows application Pin
Jassim Rahma19-May-10 5:10
Jassim Rahma19-May-10 5:10 
AnswerRe: using banners in my windows application Pin
Henry Minute19-May-10 5:27
Henry Minute19-May-10 5:27 
GeneralRe: using banners in my windows application Pin
Jassim Rahma19-May-10 5:29
Jassim Rahma19-May-10 5:29 
GeneralRe: using banners in my windows application Pin
Henry Minute19-May-10 6:21
Henry Minute19-May-10 6:21 
AnswerRe: using banners in my windows application Pin
PIEBALDconsult19-May-10 5:38
mvePIEBALDconsult19-May-10 5:38 
GeneralRe: using banners in my windows application Pin
Jassim Rahma19-May-10 5:42
Jassim Rahma19-May-10 5:42 
GeneralRe: using banners in my windows application Pin
PIEBALDconsult19-May-10 5:55
mvePIEBALDconsult19-May-10 5:55 
GeneralRe: using banners in my windows application Pin
OriginalGriff19-May-10 8:56
mveOriginalGriff19-May-10 8:56 
GeneralRe: using banners in my windows application Pin
T M Gray19-May-10 9:20
T M Gray19-May-10 9:20 
GeneralRe: using banners in my windows application Pin
OriginalGriff19-May-10 21:53
mveOriginalGriff19-May-10 21:53 

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.