Don't know how much you need, but see if you can use any of this:
http://p2p.wrox.com/topic.asp?TOPIC_ID=13521
It's simple to use in
VB. Make a new exe, add a class module, name it TC1 and add the class code to this. In the exe form, add a commandbutton and this code:
Private Sub Command1_Click()
Dim TC As TC1
Set TC = New TC1
TC.FirstName = "myFirstName"
TC.LastName = "andMyLastName"
MsgBox TC.BothNames
Set TC = Nothing
End Sub
..and from here, what you can do within the class, you'll have to have help from someone else. ;)