ARRAY EN UN structure
Publicado por ifer (19 intervenciones) el 14/09/2004 01:54:30
antes funcionaba:
Private type MI_ESTRUCTURA
W1A(2) As Double
End type
ahora:
Private Structure MI_ESTRUCTURA
dim W1A(2) As Double
End Structure
falla porque no admite aun array dentro de una estructura,
como le hago?
Private type MI_ESTRUCTURA
W1A(2) As Double
End type
ahora:
Private Structure MI_ESTRUCTURA
dim W1A(2) As Double
End Structure
falla porque no admite aun array dentro de una estructura,
como le hago?
Valora esta pregunta


0