- 정적배열 Sub Macro1() Dim i, t ReDim i(0 To 10) ReDim t(10) End Sub > 타입은 선언하지 않으면 기본값인 Variant이며[start] To [end] 값을 가진다.t 에서처럼 10만 썻을경우 0 to 10이 된다. - 동적배열Sub Macro1() Dim iDim r As Longr = r + 1 ReDim i(0 To r) ReDim Preserve i(0 to r) End Sub - ReDim문변수를 재할당ReDim [Preserve] [변수]([Start] To [End])>Preserve 를 선언해주면 변수의 배열 변경시 기존값을 유지한채 배열을 증가시킴# [start]값을 변경시 오류 발생
Private Sub test1()Dim i as Intergeri = 100 + iEnd sub> 프로시저를 실행할때마다 100 출력> 선언된 모듈내의 다른 프로시저에서만 호출 가능, 다른 모듈에서 호출 불가 Public Sub test1()Dim i as Intergeri = 100 + iEnd sub> 프로시저를 실행할때마다 100 출력> 다른 모듈에서 호출가능 Static Sub test1()Dim i as Intergeri = 100 + iEnd sub> 프로시저를 실행할때마다 100을 더한값을 출력> 다른 모듈에서 호출가능
1. Option Base [n]배열을 선언할 때 사용하며 기본값은 0배열의 첨자가 n부터 시작 2. Option Compare [Binary, Text, Database]- Option Compare Binary [기본값]> 문자를 Binary값으로 구분"a" = "A" : 다름 - Option Compare Text> 문자를 Text형태로 구분"a" = "A" : 같음 - Option Compare Database> 3. Option Explicit모든 변수/상수가 명시적으로 선언되어야 하고 그렇지 않았을 때 자동으로 오류 발생 4. Option Private ModuleC++의 Private함수처럼 여러 통합문서를 켜 놓고 왔다갔다 사용할수 있음 - 출처 -http://minniegong.tisto..
Do DoEvents Loop
- Total
- Today
- Yesterday
- JPA
- IdClass
- tkinter command & bind [명령어묶기와 사건묶기] Python
- FetchType
- 폼
- highlightthickness
- vba
- ManyToOne
- indicatoron
- Linux
- 리눅스
- tkinter
- Java
- Composite Key
- borderwidth
- Python
- activeforeground
- checkbutton
- apache
- disabledforeground
- Excel
- command
- 상수
- 파이썬
- fetch join
- Private
- highlightbackground
- activebackground
- Module
- onetomany
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |