How does an object in a form add items to form's listview control?

  • Thread starter Thread starter Richard Lewis Haggard
  • Start date Start date
R

Richard Lewis Haggard

I have a form. The form owns a listview control and an object that is acting
as a remoting server. I'd like to display information as it is received by
the server in the listview control that is owned by the server object's
owning form. I know how I'd do this in VC++6 and MFC but I'm trying very
hard to keep with the accepted C#.NET practices.What are the C#.NET standard
methods to do this?
===========
"I just got a new car for my wife. Wish I could make a trade like that every
day." --Henny Youngman.
Richard Lewis Haggard
 
Could you handle the changed event (or whatever event is appropriate) of the
server object in the form and then the form adds the server objects data to
the listview?
JB
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top