I'm Working with Windows Forms (c++) and running into a bit of trouble :/
I have the Windows Form managed code where i do all the 'visual' work like updated text boxes, labels, etc etc... then i have class set up in that project which does most of the computation.
My Question: How do i allow the class to access the private parts of the form? Example: like wanting to directly edit the textbox in the form FROM the class which is in a different file same project!
Any ideas?