J
Jerry Spence1
As a base line to my question, a structure can look like this:
Public FullName as xName
Structure xName
Public FirstName as String
Public SecondName as String
Public Title as ?????? (see below)
End Structure
I would like to add into the Structure statement Public Title which could be
a choice of Mr, Mrs, Ms, Sir, Dr etc. How can I form the choices? I would
like it to be like you have "TextBox1.BackColor = " and then as soon as you
type the "=" you get a whole range of choices under Color.White, Color.Black
etc.
So I would type in FullName.Title = TitleConstants.Mr
Hard to explain. I hope you understand what I'm getting at.
-Jerry
Public FullName as xName
Structure xName
Public FirstName as String
Public SecondName as String
Public Title as ?????? (see below)
End Structure
I would like to add into the Structure statement Public Title which could be
a choice of Mr, Mrs, Ms, Sir, Dr etc. How can I form the choices? I would
like it to be like you have "TextBox1.BackColor = " and then as soon as you
type the "=" you get a whole range of choices under Color.White, Color.Black
etc.
So I would type in FullName.Title = TitleConstants.Mr
Hard to explain. I hope you understand what I'm getting at.
-Jerry