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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top