Code:
Private Type tData
    Label As String
    Data As String
End Type


Private Sub Form_Load()
    Dim arrData() As tData
End Sub
I want to do the same as above in c++ (i.e. a dynamic array that holds a struct). I realise I'll be using a struct and vector but I cannot work out the implementation.

Please can somebody give me a few ideas...

Many thanks