»

続・配列array() 

InDesign — enjoji.yasujiro @ 11:15 PM

※以下vbscript↓

dim test()
ReDim test(6)                   ’・・・①

test(0) = “生死去来”
test(1) = “棚頭傀儡”
test(2) = “一線断時”
test(3) = “落落磊磊”

msgbox UBound(test)                    ’・・・②
msgbox test(0) & test(1) & test(2) & test(3)

ReDim Preserve test(3)                   ’・・・③
msgbox UBound(test)
msgbox test(0) & test(1) & test(2) & test(3)

ReDim test(3)                     ’・・・④
msgbox UBound(test)
msgbox test(0) & test(1) & test(2) & test(3)

(続きを読む…)

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License.
(c) 2009 鎌倉橋日記 | powered by WordPress with Barecity