|
-
Jun 30th, 2004, 08:54 AM
#1
Thread Starter
Lively Member
Loading Multiple Forms
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()
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|