amnon
Member
- Joined
- Dec 18, 2022
- Messages
- 16
- Programming Experience
- Beginner
Hello,
I've just started learning programming and I'm stuck creating a new instance of a class.
I created a simple library with a class and a constructor
In the application, I added a library reference and imported it
when i run i get an error
System.Windows.Forms.pdb not loaded
I went through all the topics on the net, I found a few hints, such as: disabling Debugging option Enable.NET Framework source stepping and Enable Just My Code. In the Symbol File tab, I checked the Microsoft Symbol Servers option, but it didn't help. I will be grateful for any hint
I've just started learning programming and I'm stuck creating a new instance of a class.
I created a simple library with a class and a constructor
dll:
Public Class Person
sub main()
MessageBox.Show("Message from class")
EndSub
End Class
In the application, I added a library reference and imported it
Form:
Imports WinFormsLibrary1
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim MyNewInstance As New Person
End Sub
End Class
when i run i get an error
System.Windows.Forms.pdb not loaded
I went through all the topics on the net, I found a few hints, such as: disabling Debugging option Enable.NET Framework source stepping and Enable Just My Code. In the Symbol File tab, I checked the Microsoft Symbol Servers option, but it didn't help. I will be grateful for any hint