G
Guest
Running a VB.Net windows application. Using a module to parse data in a
file. How do I pass information back to the form for display?
This does not work from the module:
dim frm as form1
frm.txtbox.txt = "my data"
This also does not work from module:
dim frm as form1
frm.ShowData("my data")
and in form1:
public sub ShowData(byval Info as string)
txtbox.txt = Info
Thanks.
file. How do I pass information back to the form for display?
This does not work from the module:
dim frm as form1
frm.txtbox.txt = "my data"
This also does not work from module:
dim frm as form1
frm.ShowData("my data")
and in form1:
public sub ShowData(byval Info as string)
txtbox.txt = Info
Thanks.