Advertisement
C_Volume2 Internet/ HTML #75660

IP Resolver - IP Address Convert to Hostname

This code here is 100% working IP resolver. This is use for finding the hostname by converting those IP numbers into words (Hostname). or words (Hostname) into IP number. EXAMPLE: this IP address "209.75.50.202" will convert to "access-50-202.ixpres.com" or you can use it to convert Hostname to IP address.

AI

Ringkasan AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Kode Sumber
original-source
'How do you call these Functions?
Option Explicit
Private Sub Command1_Click()
  Text1.Text = NameByAddr(Text2)
End Sub

Private Sub Command2_Click()
  Text2.Text = AddrByName("www.yahoo.com")
End Sub

Private Sub Form_Load()
  IP_Initialize
End Sub

Private Sub Form_Unload(Cancel As Integer)
  WSACleanup
End Sub
Komentar Asli (3)
Dipulihkan dari Wayback Machine