Hi

I would like working variables like below

Code:
Private Type AA
  AA01 As String * 2
  AA02 As String * 2
End Type
Private Type BB
   BB01 As String * 4
End Type
Private Sub Form_Load()
  Dim K As AA
  Dim L As BB
  
  K.AA01 = "11"
  K.AA02 = "22"
 
  'Here I want put the data of K inside L
  'Is there some way to do it ?
End Sub