I converted a VB6 project to .NET. The 2 .bas files in
the project became .vb of course.
The mainline .vb module declares a group of variables as
public. The procedures in the other module (.vb file)
thinks these variables are undeclared when they are
used.
How do I properly declare these variables so they are
globally accessible in the whole solution

Public Const issue
sortadan
Trae
Public Module
Public
Const Foo as integer = 42End Module
mthomasq3