I Have a Small form (frmAddItemNumber) with a text box (txtAdditemNumber) and a command button(cmdAddItemNumber)

This is what I need the form to do.
1) Connect to the database (Complete)
2) Store the value entered into textbox to database. (Complete)
3) Load a blank form so the user can draw on it. Must be a different form for each value entered in the textbox. (Not Complete)

Any Ideas on how to do #3. Someone told me that I could use a hashtable but I could not get it to work.

Dim NewForm As New Form1
Dim MyHashTable As New Hashtable
MyHashTable.Add(1, NewForm)
Dim CurrentForm As frmAddItemNumber = MyHashTable(1)
CurrentForm.Show()