home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{82EDCE78-7E49-11D2-8D41-444553540000}#1.0#0"; "DNSLOOKUP.OCX"
- Object = "{3B6DD16A-8EDB-11D2-8D41-444553540000}#1.0#0"; "MYIP.OCX"
- Begin VB.Form MyIPForm
- Caption = "MyIP ActiveX Control Demo"
- ClientHeight = 1410
- ClientLeft = 60
- ClientTop = 375
- ClientWidth = 6195
- LinkTopic = "Form1"
- ScaleHeight = 1410
- ScaleWidth = 6195
- StartUpPosition = 3 'Windows Default
- Begin VB.Frame Frame1
- Height = 1335
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 6135
- Begin VB.Label IPNAmeLabel
- BorderStyle = 1 'Fixed Single
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2640
- TabIndex = 3
- Top = 600
- Width = 3375
- End
- Begin VB.Label IPLabel
- BorderStyle = 1 'Fixed Single
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2640
- TabIndex = 2
- Top = 240
- Width = 3375
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- Caption = " After connected my IP is :"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 240
- Width = 2535
- End
- End
- Begin IPandDNSLookUp.DNSLookUp DNSLookUp1
- Left = 2040
- Top = 2400
- _ExtentX = 1085
- _ExtentY = 1085
- End
- Begin MyIP_ActiveX_Control.MyIP MyIP1
- Left = 840
- Top = 2400
- _ExtentX = 873
- _ExtentY = 661
- End
- Attribute VB_Name = "MyIPForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- MyIP1.Get_IP_Address = True
- IPLabel.Caption = MyIP1.IP_Address_is
- DNSLookUp1.IP_Address_is = MyIP1.IP_Address_is
- DNSLookUp1.Search_Domain_Name = True
- IPNAmeLabel.Caption = DNSLookUp1.Domain_Name_is
- End Sub
-