I have a table that contains a list of users and their access to certain forms.

Code:
User       Form
Tom        Form1
Jane       Form1
Jane       Form2
Peter      Form3
This table is read when the application first loads. How can I convert the form string (Form1, Form2, Form3...) to a form name where I can do something like:

Form1.show
Form2.show

Thanks a lot!