vb里的type?

来源:百度知道 编辑:UC知道 时间:2024/05/11 18:39:06
Type CTRLTBL_S
IGRP As Integer
INEXT As Integer
IBACK As Integer
IDOWN As Integer
CTRL As Control
End Type

Tpye类型表示什么意思?

自定义结构用的

Type STUDENT
name as string
old as byte
sex as string*2
address as string
tel as string
End Type

然后进行定义

dim stu as STUDENT

stu.name = "诸葛亮"
stu.old = 26
stu.sex = "男"
stu.address = "隆中"
stu.tel = "1234567"