home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
windties
/
vbtdisk2
/
tbox1.$$$
< prev
next >
Wrap
INI File
|
1993-08-10
|
2KB
|
81 lines
[Project Heading]
'**********************************************************************************
'* MAINTENANCE HISTORY:
'* Project Name: Coder:
'*
'* Version Client:
'*
'* Comments:
'*
'***********************************************************************************
'Prefex map
'txt text box 'pic picture box 'ar array
'chk check box 'cmd command button 'h handle
'cbo combo box 'dir directory list box 'p pointer
'mnu menu 'drv drive list box 't type
'lbl label 'fil files list box 'grd grid
'fra frame 'pcb picture clip (PTK) 'gph graph
'frm form 'opt option (radio) button 'tmr timer
'lst list box 'vsb vertical scrollbar 'hsb horizontal scrollbar
[Divider]
'************** START NEW PROCESS *************
[Std Dim]
Defint A-M
DifStr N-Z
Dim fileNum%, counter%, x%, y%
Dim fileName$, Msg$, fline$
[For/Next]
For i% = 0 to 10
Next i%
[For/Next 2X]
For i% = 0 To 10
For j% = 0 To 10
Next j%
Next i%
[If/Then]
If CONDITION then
else
End If
[Do While]
Do While CONDITION
Loop
[Do Until]
Do Until CONDITION
Loop
[Select Case]
Select Case VARIABLE
Case VAL1
Case VAL2
Case Else
End Select
[Do Events]
w% = DoEvents()
[Mid$]
Mid$(VAR$, START%, LENGTH%)
[Type]
Type MYTYPE
End Type