Link to home
Start Free TrialLog in
Avatar of sayeth
sayeth

asked on

working with 2 project in 1 solution

Solution  WindowsApplication1
    --Project1
           clsA.vb
           clsB.vb
            Form1B.vb
    --Project2
           clsC.vb
           Form1B.vb
Public Class clsA
  Public x As Integer
End Class

Public Class Form1
    Private Sub anySub()
       Dim y As New Integer
       'i m trying to set clsA.x = y
    End Sub
End Class      
ASKER CERTIFIED SOLUTION
Avatar of RPCIT
RPCIT

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial