Node Class in VB

Back to home page 

Option Explicit

Public dir As String, nextitem As Integer, typeofitem As String, link As Node, track As Integer

 

 

 

Public Sub printnode()

 

MsgBox dir & " " & nextitem & " " & typeofitem & " " & track

 

End Sub