'버튼 클릭 시 정렬 방법 변경
Dim countclick As Integer = 0
Private Sub Button14_Click(sender As Object, e As EventArgs) Handles Button14.Click
countclick = countclick + 1
If countclick Mod 2 = 0 Then ' 클릭 수를 2로 나누었을때 남은수가 0일경우에 따라 정렬 방법 변경
DataGridView2.Sort(DataGridView2.Columns(2), System.ComponentModel.ListSortDirection.Descending) '많이 읽어본 순서로 정렬
Button14.Text = "가나다"
Else
DataGridView2.Sort(DataGridView2.Columns(0), System.ComponentModel.ListSortDirection.Ascending) '가나다 순서로 정렬
Button14.Text = "조회순"
End If
'MsgBox(countclick)
End Sub
'VB.net' 카테고리의 다른 글
Windows Form > Sicker Form으로 만들기 (0) | 2018.03.30 |
---|---|
단어 색칠하기 & 단어강조 (0) | 2018.03.28 |
검색(textbox)창 엔터키 입력 (0) | 2018.03.19 |
web page 내 'More'버튼 클릭 (0) | 2018.03.19 |
마우스 오른쪽 버튼 클릭 방지 (0) | 2018.03.19 |