Guys,
I have a main winform /exe project that has a string variable set as public on the main form. I then have a dll project that needs to see that string variable. How do I declare this so my .dll can see it ?
VB Code:
Public Class C1SpellCheck Dim C1Spell As C1.Win.C1Spell.C1Spell Public Sub New() C1Spell = New C1.Win.C1Spell.C1Spell Dim CDFile As String CDFile = 'GlobalVar here




Reply With Quote