How to parsing values from class library to Windows form

G

Guest

Hi all,

I'm a C# newbie. My application contains several projects. One of project is
Windows Form application. Others are a class library.

My question is how to parsing messages from project A (class library) to
show on a ListBox in project B (Windows Application)? How to make project A
calls a ListBox in project B?
 
G

Guest

Hi

I am not exactly sure what you are mean ...
Maybe this helps:

In projectB:
projectA.class myProjectA = new projectA.class();

Fill Listbox like:
this.listBox1.Items.Add(myProjectA.GetMyMessages());

Best regards
Frank Uray
 

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

Top