|
problem with forms hi ahave a three forms
ON the first form i have button and i create second forms by
dim frm = new form2
frm2.show()
on the cecond form i have listbox
and i want add record form thrird forms
i have a button on second form and create third forms by:
dim frm3 = new form3
frm3.show()
on third form i have a button and i want add record to listbox on second
form by:
frm.listbox.items.add("value") or form2.listbox.items.add("value")
bu is not work why? |