Using VS 2015 on Server 2012 R2
---------------------------------------------
DLL Code is
Public Class SalDll
Class SubClass1
Function AddingNumbers(ByVal Number1 As Integer, ByVal Number2 As Integer)
Return (Number1 + Number2)
End Function
End Class
End Class
---------------------------------------------
Project Code is
Imports Test1.SalDll
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
SubClass1.(the problem is here)
End Sub
End Class
---------------------------------------------
The problem is
By typing (Imports Test1.) then (SalDll) appears and I can select
By typing (SubClass1.) then (AddingNumbers) is not appearing
Any Idea
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Distinguished Expert awards are presented to the top veteran and rookie experts to earn the most points in the top 50 topics.