vb.net - Is there a generic way to reference the current project? -
vb.net - Is there a generic way to reference the current project? -
i need pass form sub. if project called project1 , contains form called form1, follows:
public sub processform(byref myform project1.form1) etc etc is there generic way refer current project - project1 - re-create code other projects, without having alter reference project?
i thinking of my.project, refer my.project.form1, cannot see how this.
am using vs 2010.
you can
namespace.class ie, if project namespace myprojectname , class form1. need
myprojectname.form1 vb.net
Comments
Post a Comment