タイトル | : 多段階配列の宣言の仕方 |
記事No | : 6935 |
投稿日 | : 2008/02/06(Wed) 13:51 |
投稿者 | : おたか |
こんにちは。
次のような多段階配列を使いたいのですが、New宣言しろと怒られます。 でも複雑すぎて、どのように宣言したらいいかわかりません。 どなたか教えてください。
Dim AB(72) As AllMode
Private Structure AllMode Dim bu(30) As XYZV Dim nm As BData End Structure
Public Structure XYZV Dim x As Integer Dim y As Integer Dim z As Integer Dim v As Integer End Structure
Private Structure BData Dim name As String Dim xxx As Integer Dim yyy As Integer End Structure
|