Contents

Develop
2003.04.23 00:04

[vb] 비주얼 베이직 173페이지

조회 수 54800 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
DefSng A-Z
Dim a(5), b(5) As String, c(5), d(5), e(5), f(5), g(5), h(5) As String, pc, tmp As Variant
Dim a1(5), b1(5) As String, c1(5), d1(5)
Private Sub Command1_Click()
    pc = pc + 1
    a(pc) = Text1.Text
    b(pc) = Text2.Text
    c(pc) = Text3.Text
    d(pc) = Text4.Text
    a1(pc) = Text1.Text
    b1(pc) = Text2.Text
    c1(pc) = Text3.Text
    d1(pc) = Text4.Text

    Text1.Text = ""
    Text2.Text = ""
    Text3.Text = ""
    Text4.Text = ""

    Text1.SetFocus

End Sub

Private Sub Command2_Click()
    For i = 1 To pc - 1
        For j = i + 1 To pc
            If a(i) > a(j) Then
                tmp = a(i): a(i) = a(j): a(j) = tmp
                tmp = b(i): b(i) = b(j): b(j) = tmp
                tmp = c(i): c(i) = c(j): c(j) = tmp
                tmp = d(i): d(i) = d(j): d(j) = tmp
            End If
        Next j
    Next i

    For i = 1 To pc
        Select Case b(i)
            Case "L": h(i) = "경차": e(i) = 500 + (c(i) * 0.8)
            Case "M": h(i) = "중형": e(i) = 1800 + (c(i) * 0.8)
            Case "B": h(i) = "버스": e(i) = 3000 + (c(i) * 0.8)
            Case "T": h(i) = "화물": e(i) = 2000 + (c(i) * 0.8)
        End Select

        Select Case e(i)
            Case Is <= 800: f(i) = e(i) + d(i) + 0
            Case Is <= 1200: f(i) = e(i) + d(i) + 15
            Case Is <= 1800: f(i) = e(i) + d(i) + 30
            Case Is <= 2000: f(i) = e(i) + d(i) + 40
            Case Is >= 2000: f(i) = e(i) + d(i) + 60
        End Select

        g(i) = f(i) * 0.5 + 11

    Next i

    Form1.Hide
    Form2.Show
    Form2.Print "고객번호", "차종", "자차부담금", "차량가격", "총금액", "보험료"
    
    For i = 1 To pc
        Form2.Print a(i), h(i), d(i), e(i), f(i), g(i)
    Next

    Form2.Print ""
    Form2.Print ""
    Form2.Print "입력자료"
    For i = 1 To pc
        Form2.Print a1(i), b1(i), c1(i), d1(i)
    Next
End Sub


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
21 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48250
20 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 1323
19 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 2770
18 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1268
17 Etc How to completely Uninstall Coda hooni 2017.10.24 2057
16 Etc GSM에서 음성이 실리는 과정 요약.. hooni 2013.04.23 17516
15 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1144
14 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20571
13 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 25315
12 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 23248
11 System/OS Enable the Develop Menu in Safari file hooni 2017.02.07 1059
10 System/OS Enable Safari Hidden Debug Menu in Mac OS X file hooni 2017.02.07 1131
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 Next
/ 98