以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 数组 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=55188) |
-- 作者:shanmao -- 发布时间:2014/8/12 14:31:00 -- 数组 我想定义这种类型的数组, 但是下面这个是错的,怎么改? Dim wzs() As integer ={(62,27,54,19),(62,73,54,19),(160,27,79,19),(160,73,79,19),(283,27,54,19),(637,12,103,19)} |
-- 作者:Bin -- 发布时间:2014/8/12 14:36:00 -- http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=39806&skin=0 |
-- 作者:有点甜 -- 发布时间:2014/8/12 14:37:00 -- http://foxtable.com/bbs/dispbbs.asp?boardid=2&Id=55178
|
-- 作者:shanmao -- 发布时间:2014/8/12 14:38:00 -- 额,我这个就是一维数组,不是二维。每个括号就是一个值,赋值给setbounds的。 |
-- 作者:Bin -- 发布时间:2014/8/12 14:41:00 -- 只有二维数组才能这样 不然你就用LISt Dim lis As new List( of Integer()) Dim wzs1() As Integer ={62,27,54,19} lis.Add(wzs1) |
-- 作者:Bin -- 发布时间:2014/8/12 14:42:00 -- 看3楼 |