Help !!! hashtable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can i use a hashtable created on form1 to form2
How can i view all the values and keys in the hashtable

Hashtable called sampHash and is already filled

Thanks you
 
equip,

You will have to pass the hashtable to the instance of form2 that you
created somehow, either through a property, or a method. Forms in .NET are
just like any other object. When you want one object to be able to
reference something that another object has, you have to pass it to the
object somehow.

Hope this helps.
 
Back
Top