After upgrading from VS2013 to VS2015 I lost this function, and it's making my programming very slow.
If anyone, can share solution, please share.
Screenshot for clarification:
After upgrading from VS2013 to VS2015 I lost this function, and it's making my programming very slow.
If anyone, can share solution, please share.
Screenshot for clarification:
Instead of accessing the default static instance in vb, you should create an instance yourself.
Public Class Form2
Private myForm1 As New Form1()
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
myForm1.Button1.Text = "Hello"
End Sub
End Class
I posted about this here a few years ago. As mentioned in comments, this "feature" has generated a lot of confusion in the .Net community. It should be avoided whenever possible.