Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~100 People Reached
Favorite Forums
Member Avatar for weavercs

I have two functions: [code] int GetRowCount() { return lvComponent.Items.Count; } string GetCellText(int row, int col) { return lvComponent.Items[row].SubItems[col].Text; } [/code] lvComponent is a ListView control. I call both of them from another thread using Invoke. The first one works perfectly. The second one throws an exception saying that you …

Member Avatar for nick.crane
0
100