How can I refer to properties and methods of the class I'm building from within the forms that I want to include in the DLL?.
e.g:
CLASS.CLS
VB Code:
private localvalue public property get value() value = localvalue end property public sub increasevalue() localvalue = localvalue+1 end sub
FORM.FRM
I know that in this example I could refer to form.Text1 from the class, but my real life problem can't be solved that way.VB Code:
sub command1_click() if value() > 100 then text1.text = value() ???? end if end sub
Cheers,
Simon




Reply With Quote