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

C#

 
AnswerRe: Windows To Web Application Pin
Christian Graus20-May-07 13:17
protectorChristian Graus20-May-07 13:17 
GeneralRe: Windows To Web Application Pin
Darkman_nofear20-May-07 22:05
Darkman_nofear20-May-07 22:05 
QuestionMessage Removed Pin
20-May-07 9:40
Miguel Sarafana20-May-07 9:40 
AnswerRe: C++ or C# as a combination with MatLab? Pin
Judah Gabriel Himango20-May-07 10:08
sponsorJudah Gabriel Himango20-May-07 10:08 
AnswerRe: C++ or C# as a combination with MatLab? Pin
BAIJUMAX20-May-07 18:28
professionalBAIJUMAX20-May-07 18:28 
GeneralRe: C++ or C# as a combination with MatLab? Pin
BeniCohen15-Jul-09 3:02
BeniCohen15-Jul-09 3:02 
GeneralRe: C++ or C# as a combination with MatLab? Pin
BAIJUMAX15-Jul-09 6:04
professionalBAIJUMAX15-Jul-09 6:04 
QuestionGet selected in listview Pin
akkram20-May-07 9:28
akkram20-May-07 9:28 
Hi, I have a listview with some items:

ColumnHeader columnHeader1 = new ColumnHeader();
ColumnHeader columnHeader2 = new ColumnHeader();

listView.FullRowSelect = true;

listView.Columns.AddRange(new ColumnHeader[] {
columnHeader1,
columnHeader2,
});

columnHeader1.Text = "Name";
columnHeader1.Width = 150;

columnHeader2.Text = "Note";
columnHeader2.Width = 100;

List<string> items = new List<string>();
items.Add("Some Name");
items.Add("Some Note");

List<string> items2 = new List<string>();
items2.Add("Some Name");
items2.Add("Some Note");

ListViewItem item;
item = new ListViewItem(items.ToArray());
listViewProjects.Items.Add(item);

ListViewItem item2;
item2 = new ListViewItem(items2.ToArray());
listViewProjects.Items.Add(item2);


Now I have a combobox where I want to display the note text from the selected item in the listview. How can I do this? Many thanks for any help.
AnswerRe: Get selected in listview Pin
Giorgi Dalakishvili20-May-07 9:49
mentorGiorgi Dalakishvili20-May-07 9:49 
QuestionWireless Programming Pin
Spyder_Snyper20-May-07 8:33
Spyder_Snyper20-May-07 8:33 
QuestionSplit string on size. Pin
teejayem20-May-07 6:45
teejayem20-May-07 6:45 
AnswerRe: Split string on size. Pin
Manoj Kumar Rai20-May-07 8:19
professionalManoj Kumar Rai20-May-07 8:19 
AnswerRe: Split string on size. Pin
S. Senthil Kumar20-May-07 8:54
S. Senthil Kumar20-May-07 8:54 
AnswerRe: Split string on size. Pin
Vikram A Punathambekar20-May-07 9:27
Vikram A Punathambekar20-May-07 9:27 
QuestionPass Controls and Buttons without (Object sender event ) Pin
Epsilone320-May-07 4:51
Epsilone320-May-07 4:51 
AnswerRe: Pass Controls and Buttons without (Object sender event ) Pin
Epsilone320-May-07 6:17
Epsilone320-May-07 6:17 
GeneralRe: Pass Controls and Buttons without (Object sender event ) Pin
Rob Graham20-May-07 6:46
Rob Graham20-May-07 6:46 
GeneralRe: Pass Controls and Buttons without (Object sender event ) Pin
Epsilone320-May-07 6:58
Epsilone320-May-07 6:58 
QuestionHow to fire text changed event for combobox Pin
Rahul8320-May-07 3:55
Rahul8320-May-07 3:55 
AnswerRe: How to fire text changed event for combobox Pin
Dave Kreskowiak20-May-07 5:15
mveDave Kreskowiak20-May-07 5:15 
QuestionProgram stuck by regex Pin
sharpiesharpie20-May-07 3:14
sharpiesharpie20-May-07 3:14 
QuestionConstructing an avi file from multiple image frames Pin
enamulhoque20-May-07 2:34
enamulhoque20-May-07 2:34 
QuestionSolution with multi projects talk to each other how? Pin
Darkman_nofear20-May-07 1:21
Darkman_nofear20-May-07 1:21 
AnswerRe: Solution with multi projects talk to each other how? Pin
Arun.Immanuel20-May-07 3:16
Arun.Immanuel20-May-07 3:16 
AnswerRe: Solution with multi projects talk to each other how? Pin
Arun.Immanuel20-May-07 3:24
Arun.Immanuel20-May-07 3:24 

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.