Click here to Skip to main content
15,891,621 members
Home / Discussions / C#
   

C#

 
GeneralRe: Question about using Zedgraph Pin
Thomas Krojer30-Dec-10 3:44
Thomas Krojer30-Dec-10 3:44 
GeneralRe: Question about using Zedgraph Pin
Rafone30-Dec-10 5:16
Rafone30-Dec-10 5:16 
AnswerRe: Question about using Zedgraph Pin
Thomas Krojer12-Dec-10 23:42
Thomas Krojer12-Dec-10 23:42 
GeneralRe: Question about using Zedgraph Pin
Rafone13-Dec-10 3:45
Rafone13-Dec-10 3:45 
GeneralRe: Question about using Zedgraph Pin
Thomas Krojer13-Dec-10 3:59
Thomas Krojer13-Dec-10 3:59 
Questionwhy not responding? Pin
Jassim Rahma12-Dec-10 2:48
Jassim Rahma12-Dec-10 2:48 
AnswerRe: why not responding? Pin
Luc Pattyn12-Dec-10 3:04
sitebuilderLuc Pattyn12-Dec-10 3:04 
AnswerRe: why not responding? PinPopular
Not Active12-Dec-10 3:43
mentorNot Active12-Dec-10 3:43 
GeneralRe: why not responding? Pin
Luc Pattyn12-Dec-10 5:46
sitebuilderLuc Pattyn12-Dec-10 5:46 
GeneralRe: why not responding? Pin
Jassim Rahma13-Dec-10 2:49
Jassim Rahma13-Dec-10 2:49 
GeneralRe: why not responding? Pin
Not Active13-Dec-10 3:28
mentorNot Active13-Dec-10 3:28 
QuestionHow can I filter certain messages in log4net Pin
Berlus11-Dec-10 23:54
Berlus11-Dec-10 23:54 
AnswerRe: How can I filter certain messages in log4net Pin
fjdiewornncalwe12-Dec-10 3:50
professionalfjdiewornncalwe12-Dec-10 3:50 
AnswerRe: How can I filter certain messages in log4net Pin
Manfred Rudolf Bihy12-Dec-10 4:39
professionalManfred Rudolf Bihy12-Dec-10 4:39 
GeneralRe: How can I filter certain messages in log4net Pin
Berlus12-Dec-10 11:04
Berlus12-Dec-10 11:04 
AnswerRe: How can I filter certain messages in log4net Pin
Pete O'Hanlon13-Dec-10 0:34
mvePete O'Hanlon13-Dec-10 0:34 
Questiongadgets in windows form Pin
Zeyad Jalil11-Dec-10 23:06
professionalZeyad Jalil11-Dec-10 23:06 
AnswerRe: gadgets in windows form Pin
Eddy Vluggen12-Dec-10 0:47
professionalEddy Vluggen12-Dec-10 0:47 
Questionsetting label.Text by the SqlDataReader's value Pin
Erdinc2711-Dec-10 2:34
Erdinc2711-Dec-10 2:34 
AnswerRe: setting label.Text by the SqlDataReader's value Pin
Henry Minute11-Dec-10 3:46
Henry Minute11-Dec-10 3:46 
AnswerRe: setting label.Text by the SqlDataReader's value [modified] Pin
PIEBALDconsult11-Dec-10 4:41
mvePIEBALDconsult11-Dec-10 4:41 
GeneralRe: setting label.Text by the SqlDataReader's value Pin
Erdinc2711-Dec-10 5:07
Erdinc2711-Dec-10 5:07 
create Proc [dbo].[sp_Deneme]
	as 
		Begin 
				select * from Rehber
		End 

hey friend..i use that procedure to get datas and i tried like that and it worked..
cmd = new SqlCommand("sp_Deneme", conn);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
conn.Open();
reader = cmd.ExecuteReader();
while (reader.Read())
{
    label1.Text = reader.GetInt32(0).ToString();
    label2.Text = reader.GetString(1);
    label3.Text = reader.GetString(2);
}

vemedya.com

GeneralRe: setting label.Text by the SqlDataReader's value Pin
PIEBALDconsult11-Dec-10 6:52
mvePIEBALDconsult11-Dec-10 6:52 
GeneralRe: setting label.Text by the SqlDataReader's value Pin
Luc Pattyn11-Dec-10 7:02
sitebuilderLuc Pattyn11-Dec-10 7:02 
GeneralRe: setting label.Text by the SqlDataReader's value Pin
PIEBALDconsult11-Dec-10 16:59
mvePIEBALDconsult11-Dec-10 16:59 

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.