I am in a C++ class, and we were making function prototypes. I have created some function prototypes in Visual Basic.Net and I wondered how to save them for use on other progs.
In C++ you save the file as a header file, for instance function.h
and include it as an include file #include "function.h"
Is there a similar way to do this in visual basic?
