Hi,
İ have a problem with Vb.net development enviroments. İ have exampled a code below to show what i have encountered. When instruction pointer comes to the debug line the form hangs and dont show what setted at debug point. How can i solve this hang problem. I want fastmoving codes like i do at old Vb6 days
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
For i As Integer = 1 To 10
ListBox1.Items.Add("Line # " + Str(i)) 'Put debug point here
Next
End Sub
End Class
İ have a problem with Vb.net development enviroments. İ have exampled a code below to show what i have encountered. When instruction pointer comes to the debug line the form hangs and dont show what setted at debug point. How can i solve this hang problem. I want fastmoving codes like i do at old Vb6 days
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
For i As Integer = 1 To 10
ListBox1.Items.Add("Line # " + Str(i)) 'Put debug point here
Next
End Sub
End Class