I'm new to Visual basic. I am currently writing a small program that stores a person's name and email address into a simple database. See code below
Code:
Module Code
Module Module1
Structure EmailDataBase
<VBFixedString(25)> Public name As String
<VBFixedString(50)> Public email As String
End Structure
Public EmailContact As