i want to import a .yml file to a form but when i try to debug it it gives me this error
this it the code relevant to that part:
VB.NET:
Property access must assign to the property or use its value.
VB.NET:
Private Sub Open_File_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Open_File.Click
If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then
Src.Text(OpenFileDialog1.FileName)
End If
End Sub
End Class