In what case can i use the Type statment and how can i use it?
I have 3 strings that i need a function to search in a string...
Can i put them under Type? like this:
VB Code:
  1. Public Type Tags
  2.     ert1 As String
  3.     ert2 As String
  4.     PNM As String
  5. End Type
  6. Dim Tag as Tags
I'm not sure, but i think this code declairs a var called Tag as Tags (value options are the ert1, ert2, PNM)
Is that right?