- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드 스튜디오
- 파이썬
- 안드로이드
- Firebase
- sql
- 컴퓨터공학과
- 배열
- til
- 로그인
- 코딩테스트
- Java
- 연결리스트
- 정렬
- 동적할당
- 공유대학
- 알고리즘
- 백준
- C언어
- 자바
- 구글 로그인
- 비주얼 베이직
- oauth
- 프로그래머스
- firebase google
- 자료구조
- C++
- android studio
- python
- 프로그래밍 입문
Archives
코딩하는 해달이
[VB] 비주얼베이직 중간평가 실습 과제 2 본문
오늘은 학교 수업시간에 배운것을 토대로 중간평가 실습과제를 풀어보았습니다.
문제 2. Click Me 게임
2-1 폼
2-2 코드
Imports System.Threading
Public Class Form1
Private trd As Thread
Private MeButton As New Button()
Dim GameTime As Integer = 10
Dim GameScore As Integer = 0
Dim rd As New Random
'' 폼로드
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
lblScore.Hide()
lblTime.Hide()
btnStart.Text = "시작"
'' 동적 버튼 생성
With Me.MeButton
.Text = "Click Me"
.Location = New System.Drawing.Point(rd.Next(0, 750), rd.Next(0, 400))
.Size() = New System.Drawing.Size(100, 50)
.Visible = False
End With
AddHandler Me.MeButton.Click, AddressOf MeButton_Click
Me.Controls.Add(MeButton)
End Sub
Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click
'' 크로스 스레드 해결
CheckForIllegalCrossThreadCalls = False
trd = New Thread(AddressOf ThreadTask)
trd.IsBackground = True
btnStart.Hide()
tmGame.Start()
trd.Start()
lblTime.Show()
lblScore.Show()
MeButton.Show()
End Sub
'' 1초마다 버튼 위치 변화 (타이머)
Private Sub tmGame_Tick(sender As Object, e As EventArgs) Handles tmGame.Tick
'' 10초 경과
If GameTime = 1 Then
GameTime = 10
GameScore = 0
btnStart.Show()
lblScore.Hide()
lblTime.Hide()
MeButton.Hide()
tmGame.Stop()
Else
Me.MeButton.Location = New System.Drawing.Point(rd.Next(0, 750), rd.Next(0, 400))
GameTime -= 1
End If
End Sub
'' 버튼 클릭시 점수 증가
Private Sub MeButton_Click(sender As Object, e As EventArgs)
GameScore += 1
End Sub
'' 남은 시간 계산 및 표시
Private Sub ThreadTask()
Do
'' 루프탈출
If GameTime = 0 Then
Exit Do
End If
lblTime.Text = "남은시간: " & CStr(GameTime)
lblScore.Text = "점수: " & CStr(GameScore)
Loop
End Sub
End Class
반응형
'학교 공부 > 비주얼 베이직 실습' 카테고리의 다른 글
[VB] 비주얼베이직 중간평가 실습 과제 3 (0) | 2022.11.04 |
---|---|
[VB] 비주얼베이직 중간평가 실습 과제 1 (0) | 2022.11.04 |
[Visual Basic] 개인 프로젝트 - 시급 계산기 만들기 1 (0) | 2022.09.10 |
Comments