Private Sub TextBox1_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TextBox1.KeyPress
If e.KeyChar = Convert.ToChar(1) Then
DirectCast(sender, TextBox).SelectAll()
e.Handled = True
End If
End Sub
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
vb.net동적컴파일 (0) | 2013.06.22 |
---|---|
스레드에서 invoke (0) | 2013.06.21 |
드래그앤드롭으포 파일명표시 (0) | 2013.06.21 |
webrequest 파일다운 (0) | 2013.06.18 |
XML에 이미지 base64로 넣기 (0) | 2013.06.14 |