VB可不可以定义这样的数据结构:
itype as integer if itype = 0 then dim a as integer else dim a as single dim b as single end if
追问:多谢, 这个不可以写在 type 定义里吧
itype as integer if itype = 0 then dim a as integer else dim a as single dim b as single end if
追问:多谢, 这个不可以写在 type 定义里吧
答案:不可以,但可以这样
itype as integer
if itype = 0 then
cint(a)
else
csng(a)
csng(b)
end if
上一个:VB 如何放大或缩小一个给定的图片啊?注意不是放大安装图片的框,而是图片本身
下一个:用VB的程序,一运行就死机,怎么回事?