home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 4140
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 6690
- Height = 4545
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 4140
- ScaleWidth = 6690
- Top = 1170
- Width = 6810
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- Dim lpszCountryCode, lpszCityCode As String * 40
- retval& = tapiGetLocationInfo(lpszCountryCode, lpszCityCode)
-
- MsgBox Str(retval&)
-
- MsgBox lpszCountryCode + "/" + lpszCityCode
- End Sub
-