Public Class Form1
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
SaveSetting("app name", "section", "path", TextBox1.Text)
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TextBox1.Text = GetSetting("app name", "section", "path", "")
End Sub
End Class
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
URL 인코딩 (0) | 2013.02.23 |
---|---|
[스크랩] 웹소스 가져오는 방법 (0) | 2013.02.23 |
핸들값 processID , processHanddle (0) | 2013.02.17 |
메모장에 텍스트 보내기 (0) | 2013.02.16 |
Message Queues (Windows) (0) | 2013.02.16 |