Click here to Skip to main content
15,923,006 members
Home / Discussions / C#
   

C#

 
QuestionWindows Explorer like Control ??? Pin
4-Jul-02 0:08
suss4-Jul-02 0:08 
AnswerRe: Windows Explorer like Control ??? Pin
SimonS4-Jul-02 0:42
SimonS4-Jul-02 0:42 
GeneralRe: Windows Explorer like Control ??? Pin
4-Jul-02 4:40
suss4-Jul-02 4:40 
GeneralComboBox SelectedItemChanged event Pin
paulb3-Jul-02 14:11
paulb3-Jul-02 14:11 
GeneralRe: ComboBox SelectedItemChanged event Pin
James T. Johnson3-Jul-02 14:43
James T. Johnson3-Jul-02 14:43 
GeneralRe: ComboBox SelectedItemChanged event Pin
paulb4-Jul-02 13:16
paulb4-Jul-02 13:16 
GeneralListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 12:19
Brandon Parker3-Jul-02 12:19 
GeneralRe: ListView remove item problem!! Help please Pin
Orion Buttigieg3-Jul-02 12:44
Orion Buttigieg3-Jul-02 12:44 
Brandon,

have you tried instantiating the listView control. if your in the same class you should be able to use "this". if your in another class you should be able to get to the listView by creating a new instance of that class if you haven't already and get to the listView that way.
MyClass cl = new MyClass()
cl.MylistView....

when i add: here parameter is an ArrayList and this code sits in a foreach

ListViewItem item = new ListViewItem(parameter);
item.SubItems.Add("");
this.listView_Parameters.Items.Add(item);

i'd expect Remove() would be the opposite.

hope i didn't state the obvious

Orion
GeneralRe: ListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 13:00
Brandon Parker3-Jul-02 13:00 
GeneralRe: ListView remove item problem!! Help please Pin
James T. Johnson3-Jul-02 14:35
James T. Johnson3-Jul-02 14:35 
GeneralRe: ListView remove item problem!! Help please Pin
Brandon Parker3-Jul-02 15:00
Brandon Parker3-Jul-02 15:00 
GeneralListView Control Pin
Orion Buttigieg3-Jul-02 11:32
Orion Buttigieg3-Jul-02 11:32 
GeneralRe: ListView Control Pin
Brandon Parker3-Jul-02 12:10
Brandon Parker3-Jul-02 12:10 
GeneralRe: ListView Control Pin
Orion Buttigieg3-Jul-02 12:30
Orion Buttigieg3-Jul-02 12:30 
GeneralRe: ListView Control Pin
Brandon Parker3-Jul-02 12:50
Brandon Parker3-Jul-02 12:50 
GeneralRe: ListView Control Pin
Orion Buttigieg3-Jul-02 13:00
Orion Buttigieg3-Jul-02 13:00 
GeneralQOYesterday Pin
Mazdak3-Jul-02 8:55
Mazdak3-Jul-02 8:55 
GeneralRe: QOYesterday Pin
SimonS3-Jul-02 21:55
SimonS3-Jul-02 21:55 
GeneralNeed easy way to write plugin Pin
leppie3-Jul-02 7:49
leppie3-Jul-02 7:49 
GeneralRe: Need easy way to write plugin Pin
James T. Johnson3-Jul-02 9:52
James T. Johnson3-Jul-02 9:52 
GeneralRe: Need easy way to write plugin Pin
leppie3-Jul-02 10:39
leppie3-Jul-02 10:39 
GeneralRe: Need easy way to write plugin Pin
James T. Johnson3-Jul-02 22:33
James T. Johnson3-Jul-02 22:33 
GeneralRe: Need easy way to write plugin Pin
leppie4-Jul-02 0:16
leppie4-Jul-02 0:16 
GeneralRe: Need easy way to write plugin Pin
leppie4-Jul-02 2:19
leppie4-Jul-02 2:19 
GeneralRe: Need easy way to write plugin Pin
James T. Johnson4-Jul-02 4:20
James T. Johnson4-Jul-02 4:20 

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.