sup
i have a register application with many different products that i'd like to assign different properties to. i already have things like
VB Code:
  1. 'Product stuff
  2.     Public Const pro As String = "PRODUCT"
  3.     Public Const pro_sm As Integer = 3.79
  4.     Public Const pro_lg As Integer = 5.99

but i would like to have them contain properties like
VB Code:
  1. Dim pro As Combo
and define exactly what Combo means, in the same way the application knows what Integer or String means.
in other words, i want to create my own object (i think)

as you can see, i'm very confused as to what i need to do, but any help, or link to other thread/help is greatly appreciated.

thanks
stephen