$I/$INCLUDE equivalent???

R

Robert Davis

Does VB.Net have an equivalent to Delphi's $I/$INCLUDE compiler directive,
or the same functionality?

TIA!

Robert
 
G

Guest

Does VB.Net have an equivalent to Delphi's $I/$INCLUDE compiler directive,
or the same functionality?

You can add a source file to a project as a link file (project, add existing
item, open as link file). In this way, many projects can include the same
file. Edits to the file made in one project will be seen by all projects
that include the link.
 
R

Robert Davis

No, not really any help. What I need is to place routines, that are common
to several forms in a project in a single source location. Currently these
routines have to do with scanner initialization and scanner events.
Different scanners have different methods for initialization, different
events, etc. These events are tied to the forms themselves, so I can't
really put the routines in a module common to the project.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top