|
初めて質問させていただきます。
よろしくお願いします。
さて、題名の件について、ご教示ください。
下記のように構造体を定義しました。
' 格納用構造体定義
Private recItems() As RecItem
' 格納用構造体_2
Private Type RecChecks
strItem As String
intChkCnt As Integer
intStatus As Integer
End Type
' 格納用構造体_1
Private Type RecItem
strItem As String
intPosition As Integer
strJPName As String
strDBName As String
intDigit As Integer
recCheck() As RecChecks
End Type
上記構造体の配列を再定義したいのですが
【格納用構造体_1】の中に【格納用構造体_2】の再定義を行なう、即ち
ReDim recItems.recCheck(6)
ReDim recItems(100)
なんて風にすることは可能ですか?
上記で試してみましたが
[修飾子が不正です]というエラーが発生してしまいました...
ご教授の程、よろしくお願い致します。
|
|