Eduardo Lorenzo
Well-known member
- Joined
- Jun 27, 2006
- Messages
- 86
I am making a verification app comparing two text files with each other.
gets the file
error is Stack Overflow
did I miss something?
Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
opd.ShowDialog()
TextBox2.Text = opd.FileName
Dim ecreader As New IO.StreamReader(TextBox2.Text)
f2 = ecreader.ReadLine.ToString
End Sub
gets the file
Code:
Public Property f2() As String
Get
file2 = f2
End Get
Set(ByVal Value As String) <--------- error here
f2 = Value
End Set
End Property
error is Stack Overflow
did I miss something?