티스토리 뷰
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
Private Sub test1()
Dim i as Interger
i = 100 + i
End sub
> 프로시저를 실행할때마다 100 출력
> 선언된 모듈내의 다른 프로시저에서만 호출 가능, 다른 모듈에서 호출 불가
Public Sub test1()
Dim i as Interger
i = 100 + i
End sub
> 프로시저를 실행할때마다 100 출력
> 다른 모듈에서 호출가능
Static Sub test1()
Dim i as Interger
i = 100 + i
End sub
> 프로시저를 실행할때마다 100을 더한값을 출력
> 다른 모듈에서 호출가능
'VBA(Excel)' 카테고리의 다른 글
VBA(Excel), VBA용어정리 (0) | 2016.05.02 |
---|---|
VBA(Excel), Const, 상수 (0) | 2016.05.02 |
VBA(Excel), Option키워드 (0) | 2016.04.27 |
VBA(Excel), ClassModule (0) | 2016.04.27 |
VBA(Excel), VBA를 이용한 타이머 만들때 (0) | 2016.04.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 폼
- 리눅스
- borderwidth
- Java
- onetomany
- activeforeground
- Composite Key
- Python
- 상수
- vba
- 파이썬
- checkbutton
- JPA
- highlightbackground
- Excel
- command
- Linux
- tkinter command & bind [명령어묶기와 사건묶기] Python
- fetch join
- tkinter
- indicatoron
- activebackground
- FetchType
- highlightthickness
- ManyToOne
- IdClass
- apache
- disabledforeground
- Module
- Private
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함