Form3.vb 625 B

12345678910111213141516171819
  1. Public Class Form3
  2. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  3. Dim ofd As New OpenFileDialog
  4. Dim path As String
  5. ofd.FilterIndex = 1
  6. ofd.ShowDialog()
  7. TextBox1.Text = ofd.FileName
  8. End Sub
  9. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  10. My.Settings.Path = TextBox1.Text
  11. My.Settings.Save()
  12. End Sub
  13. Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  14. End Sub
  15. End Class