08-20-2012, 01:10 PM
set the listbox as public , protected Internal or Internal
then u can call the listbox from a other class like this:
for example
public static void test()
{
string myitem = "this is a test";
Form1 a = new Form1();
a.listBox_online_list.Items.Add(myitem);
}

