분류 전체보기202 카운트클릭을 이용한 정렬방법 '버튼 클릭 시 정렬 방법 변경 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(DataGridVie.. 2018. 3. 19. 검색(textbox)창 엔터키 입력 Private Sub TextBox2_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox2.KeyDown If e.KeyCode = Keys.Return Then Button5_Click(sender, New System.EventArgs()) End If End Sub 2018. 3. 19. web page 내 'More'버튼 클릭 'web page 내 'More'버튼 클릭 Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click WebBrowser1.Document.GetElementById("more_btn").InvokeMember("Click") End Sub 2018. 3. 19. 마우스 오른쪽 버튼 클릭 방지 ' 마우스 오른쪽 버튼 클릭 방지 If e.Button = Windows.Forms.MouseButtons.Right Then Exit Sub End If 2018. 3. 19. 이전 1 ··· 40 41 42 43 44 45 46 ··· 51 다음