Contents

Develop
2003.04.23 00:04

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

Views 63360 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
DefSng A-Z
Dim a(10), b(10), c(10), d(10) As String, e(10), f(10), pc, a1(10), b1(10), c1(10), tmp As Variant
Private Sub Command1_Click()
    pc = pc + 1
    a(pc) = Text1.Text
    b(pc) = Text2.Text
    c(pc) = Text3.Text

    a1(pc) = Text1.Text
    b1(pc) = Text2.Text
    c1(pc) = Text3.Text

    Text1.Text = ""
    Text2.Text = ""
    Text3.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
            End If
        Next j
    Next i

    For i = 1 To pc

        Select Case a(i)
            Case 1: d(i) = "볼펜"
            Case 2: d(i) = "연필"
            Case 3: d(i) = "지우개"
            Case 4: d(i) = "노트"
        End Select

        e(i) = Int((b(i) - c(i)) / b(i) * 100 + 0.5)

        Select Case e(i)
            Case Is <= 30: x = 2
            Case Is <= 40: x = 1.5
            Case Is <= 50: x = 1.2
            Case Is >= 51: x = 0: s = s + 1
        End Select
        
        f(i) = c(i) * x
        h = h + f(i)
    Next
    
    k = pc - s

    Form1.Hide
    Form2.Show

    Form2.Print "제품번호", "제품명", "전월재고량", "출고수량", "재고율", "발주량"
    Form2.Print ""
    
    For i = 1 To pc
        Form2.Print a(i), d(i), b(i), c(i), e(i), f(i)
    Next

    Form2.Print ""
    Form2.Print "발주건수"; k
    Form2.Print "발주량합계"; h
    Form2.Print ""
    Form2.Print ""

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


?

List of Articles
No. Category Subject Author Date Views
843 Develop '2014 모바일 개발 트렌드' 발표자료입니다. file hooni 2014.10.02 2533
842 Develop Aspect Oriented Programming in Objective-C hooni 2015.05.18 3252
841 Develop DDay Memo 1.9.4 소스코드 secret hooni 2015.10.03 0
840 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 24652
839 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 27129
838 Develop git 브런치 배우기 (링크) hooni 2013.07.09 22079
837 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 2062
836 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 6185
835 Develop JSON, BSON 변환 file hooni 2013.04.23 13133
834 Develop Laravel 5 Failed opening required bootstrap/../vendor/autoload.php hooni 2018.01.24 6117
833 Develop Mac OS 에 Jenkins 설치하기 (Homebrew) 2 file hooni 2017.03.15 13251
832 Develop macOS에 node, npm 설치하기 (homebrew) file hooni 2021.11.06 4547
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71