home *** CD-ROM | disk | FTP | other *** search
INI File | 2003-12-12 | 1.0 KB | 92 lines |
- [dim | Dim Statement]
- dim |
-
- [if | If Statement]
- if | then
-
- end if
-
- [ifelse | If Then Else Statement]
- if | then
-
- else
-
- end if
-
- [select | Select Case Statement]
- select case |
- case
-
- case
-
- end select
-
- [selectelse | Selct Case Statement with else]
- select case |
- case
-
- case
-
- case else
-
- end select
-
- [sub | Sub Declaration]
- sub |()
-
- end sub
-
- [func | Function Declaration]
- function |()
-
- end function
-
- [oe | Option Explicit]
- option explicit
-
- [for | For Next Statement]
- for | = to
-
- next
-
- [foreach | For Each Statement]
- for each | in
-
- next
-
- [whilewend | While Wend Statement]
- while |
-
- wend
-
- [doloopuntil | Do Loop Until Statement]
- do
- |
- loop until
-
- [dountilloop | Do Until Loop Statement]
- do until |
-
- loop
-
- [class | Class Declaration]
- class |
-
- end class
-
- [proplet | Property Let Declaration]
- property set |()
-
- end property
-
- [propget | Property Get Delclaration]
- property set |()
-
- end property
-
- [propset | Property Set Declaration]
- property set |()
-
- end property
-
-