Link to home
Start Free TrialLog in
Avatar of schen
schen

asked on

Help with C# programming listbox and arrays

I have three forms (frm1,frm2,frm3).  The first frm1 contains a listbox1,button1,listbox2, button2.
button1 opens up frm2, button2 opens up frm3.  

When i click button1, it open up frm2, frm2.listbox is filled with items to choose from, i need to select from frm2.listbox and return the items to frm1.listbox1.
when i click button2, it open up frm3, it takes the values from frm1.listbox1 items and is put in new sql search string, returns items to frm3.listbox1, user can now select which item he wants by clicking on button (>>) to move to frm3.listbox1.  

When he clicks OK button on frm3, frm3 closes, frm3.listbox1 is set equal to frm1.listbox2.

Need help with passing frm1.listbox1 and frm1.listbox2 items to frm3 and returning results to frm1.  
ASKER CERTIFIED SOLUTION
Avatar of Gautham Janardhan
Gautham Janardhan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Gautham Janardhan
Gautham Janardhan

add to that above
//creating form 1
string AValue;
string AreceivedVariable;
public void Form1(string AVariable)
{
AreceivedVariable = AVariable;
//do whart ever u want to
}

event that u wnat to do
{
AValue = //the value u want
}

public string Value
{
get{return AValue}
}


//hope this works
Gautham