akilhesh, your suggestion enables me to have 10 records...


however what would the code look like if i didnt know how many records there were? like this instead??

Option Explicit

'~~~ Creating the type
Private Type Student
strName As String
intMark As Integer
End Type

Private Sub Form_Load()

'~~~ Creating the "records"
Dim Students() As Student