The subnet calculator helps you design networks by taking an IP address and network mask and returning information such as network, broadcast address, and host range.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
Dim ht As New Hashtable
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
For Each text As String In ht.Keys
Debug.WriteLine(text)
Debug.WriteLine(ht.Item(te
Next
End Sub
Private Sub HashTableForm_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
For i As Integer = 0 To 10
Dim htt As New Hashtable
For j As Integer = 0 To 10
htt.Add("Key" & j.ToString, "Value" & j.ToString)
Next
ht.Add("Key" & i.ToString, htt)
Next
End Sub
giving "System.Collections.Hashta
Roger