Click here to Skip to main content
15,901,426 members
Home / Discussions / C#
   

C#

 
GeneralRe: Storing path of a selected Listbox File Pin
Member 1218422117-Dec-15 12:24
Member 1218422117-Dec-15 12:24 
AnswerRe: Storing path of a selected Listbox File Pin
Richard Andrew x6417-Dec-15 14:43
professionalRichard Andrew x6417-Dec-15 14:43 
AnswerRe: Storing path of a selected Listbox File Pin
BillWoodruff17-Dec-15 18:04
professionalBillWoodruff17-Dec-15 18:04 
QuestionC# Linq Where vs FirstorDefault Pin
Kevin Marois17-Dec-15 5:42
professionalKevin Marois17-Dec-15 5:42 
AnswerRe: C# Linq Where vs FirstorDefault Pin
Philippe Mori17-Dec-15 6:15
Philippe Mori17-Dec-15 6:15 
AnswerRe: C# Linq Where vs FirstorDefault Pin
Gerry Schmitz17-Dec-15 6:54
mveGerry Schmitz17-Dec-15 6:54 
AnswerRe: C# Linq Where vs FirstorDefault Pin
BillWoodruff17-Dec-15 8:07
professionalBillWoodruff17-Dec-15 8:07 
GeneralRe: C# Linq Where vs FirstorDefault Pin
Kevin Marois17-Dec-15 11:57
professionalKevin Marois17-Dec-15 11:57 
GeneralRe: C# Linq Where vs FirstorDefault Pin
Mycroft Holmes17-Dec-15 12:05
professionalMycroft Holmes17-Dec-15 12:05 
GeneralRe: C# Linq Where vs FirstorDefault Pin
F-ES Sitecore18-Dec-15 0:16
professionalF-ES Sitecore18-Dec-15 0:16 
GeneralRe: C# Linq Where vs FirstorDefault Pin
BillWoodruff18-Dec-15 2:17
professionalBillWoodruff18-Dec-15 2:17 
GeneralRe: C# Linq Where vs FirstorDefault Pin
F-ES Sitecore18-Dec-15 2:24
professionalF-ES Sitecore18-Dec-15 2:24 
GeneralRe: C# Linq Where vs FirstorDefault Pin
BillWoodruff18-Dec-15 6:35
professionalBillWoodruff18-Dec-15 6:35 
QuestionMessage Removed Pin
17-Dec-15 2:12
Member 1221357217-Dec-15 2:12 
Questionhow can i improve these code's display efficient? Pin
smallkubi16-Dec-15 19:43
smallkubi16-Dec-15 19:43 
AnswerRe: how can i improve these code's display efficient? Pin
Dave Kreskowiak17-Dec-15 2:20
mveDave Kreskowiak17-Dec-15 2:20 
GeneralRe: how can i improve these code's display efficient? Pin
smallkubi17-Dec-15 6:09
smallkubi17-Dec-15 6:09 
GeneralRe: how can i improve these code's display efficient? Pin
Dave Kreskowiak17-Dec-15 6:21
mveDave Kreskowiak17-Dec-15 6:21 
GeneralRe: how can i improve these code's display efficient? Pin
smallkubi17-Dec-15 13:50
smallkubi17-Dec-15 13:50 
GeneralRe: how can i improve these code's display efficient? Pin
smallkubi18-Dec-15 6:24
smallkubi18-Dec-15 6:24 
GeneralRe: how can i improve these code's display efficient? Pin
Dave Kreskowiak18-Dec-15 7:13
mveDave Kreskowiak18-Dec-15 7:13 
GeneralRe: how can i improve these code's display efficient? Pin
smallkubi18-Dec-15 18:16
smallkubi18-Dec-15 18:16 
GeneralRe: how can i improve these code's display efficient? Pin
Dave Kreskowiak19-Dec-15 4:43
mveDave Kreskowiak19-Dec-15 4:43 
GeneralRe: how can i improve these code's display efficient? Pin
smallkubi19-Dec-15 6:16
smallkubi19-Dec-15 6:16 
Questiondynamically create label Pin
Member 1048416216-Dec-15 11:38
Member 1048416216-Dec-15 11:38 
C#
i want is that, when i fetch data from database then labels dynamically added to my form.

i have a code but this show only one data, i want total result of query generate automatically label and set data into label.

my code is .

`
con.Open();
DataTable table = new DataTable();
string sqlText = "SELECT DATEDIFF(DAY, [meas_duedate], GETDATE()) , meas_id, client_id FROM tlb_meas_master"
SqlCommand cmd = new SqlCommand(sqlText, con);

SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{

}
lbl_date.Text = dr.GetValue(0).ToString();
lbl_mea_id.Text = dr.GetValue(1).ToString();
lbl_cli_id.Text = dr.GetValue(2).ToString();

}
con.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message + "\n" + ex.Message);
con.Close();
}

`please help me....

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.