Click here to Skip to main content
15,895,283 members
Home / Discussions / C#
   

C#

 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:09
professionalRajesh R Subramanian5-Jun-07 3:09 
GeneralRe: Adding items to ListView Pin
teejayem5-Jun-07 3:17
teejayem5-Jun-07 3:17 
QuestionRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:26
professionalRajesh R Subramanian5-Jun-07 3:26 
AnswerRe: Adding items to ListView Pin
Luc Pattyn5-Jun-07 3:54
sitebuilderLuc Pattyn5-Jun-07 3:54 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 4:16
professionalRajesh R Subramanian5-Jun-07 4:16 
AnswerRe: Adding items to ListView Pin
teejayem5-Jun-07 3:58
teejayem5-Jun-07 3:58 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 4:17
professionalRajesh R Subramanian5-Jun-07 4:17 
GeneralRe: Adding items to ListView Pin
teejayem5-Jun-07 4:32
teejayem5-Jun-07 4:32 
DataSet ds = new DataSet();
ds.Tables.Add("Table 1");
ds.Tables[0].Columns.Add("Column 1");
ds.Tables[0].Rows.Add("Hello");
ds.Tables[0].Rows.Add("World");

foreach (DataRow row in ds.Tables[0].Rows)
    listView1.Items.Add(row.ItemArray[0].ToString());


Hope this helps

Don't be overcome by evil, but overcome evil with good

AnswerRe: Adding items to ListView Pin
Tarakeshwar Reddy5-Jun-07 3:13
professionalTarakeshwar Reddy5-Jun-07 3:13 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:16
professionalRajesh R Subramanian5-Jun-07 3:16 
GeneralRe: Adding items to ListView Pin
Tarakeshwar Reddy5-Jun-07 3:34
professionalTarakeshwar Reddy5-Jun-07 3:34 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:39
professionalRajesh R Subramanian5-Jun-07 3:39 
GeneralRe: Adding items to ListView Pin
Tarakeshwar Reddy5-Jun-07 3:43
professionalTarakeshwar Reddy5-Jun-07 3:43 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:46
professionalRajesh R Subramanian5-Jun-07 3:46 
GeneralRe: Adding items to ListView Pin
Sathesh Sakthivel5-Jun-07 3:37
Sathesh Sakthivel5-Jun-07 3:37 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 3:40
professionalRajesh R Subramanian5-Jun-07 3:40 
GeneralRe: Adding items to ListView Pin
Sathesh Sakthivel5-Jun-07 3:42
Sathesh Sakthivel5-Jun-07 3:42 
AnswerRe: Adding items to ListView Pin
S. Senthil Kumar5-Jun-07 4:33
S. Senthil Kumar5-Jun-07 4:33 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian5-Jun-07 19:49
professionalRajesh R Subramanian5-Jun-07 19:49 
GeneralRe: Adding items to ListView Pin
S. Senthil Kumar6-Jun-07 4:40
S. Senthil Kumar6-Jun-07 4:40 
GeneralRe: Adding items to ListView Pin
Rajesh R Subramanian6-Jun-07 18:45
professionalRajesh R Subramanian6-Jun-07 18:45 
QuestionAdding button to datagridview Pin
sulabh20205-Jun-07 2:47
sulabh20205-Jun-07 2:47 
AnswerRe: Adding button to datagridview Pin
Seishin#5-Jun-07 4:11
Seishin#5-Jun-07 4:11 
AnswerRe: Adding button to datagridview Pin
Hesham Yassin6-Jun-07 8:14
Hesham Yassin6-Jun-07 8:14 
QuestionReporting Service MultiLanguage? Pin
ArunkumarSundaravelu5-Jun-07 2:04
ArunkumarSundaravelu5-Jun-07 2:04 

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.