home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / sightmap / map.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-01-15  |  2.5 KB  |  84 lines

  1. VERSION 5.00
  2. Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
  3. Begin VB.Form frmMap 
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Map"
  6.    ClientHeight    =   6285
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   9915
  10.    Icon            =   "Map.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MDIChild        =   -1  'True
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   6285
  16.    ScaleWidth      =   9915
  17.    Begin VB.CommandButton cmdExcel 
  18.       Caption         =   "Print"
  19.       Height          =   375
  20.       Left            =   4320
  21.       TabIndex        =   1
  22.       Top             =   5760
  23.       Width           =   735
  24.    End
  25.    Begin MSComctlLib.TreeView tvMap 
  26.       Height          =   5415
  27.       Left            =   360
  28.       TabIndex        =   0
  29.       Top             =   240
  30.       Width           =   9135
  31.       _ExtentX        =   16113
  32.       _ExtentY        =   9551
  33.       _Version        =   393217
  34.       Style           =   7
  35.       Appearance      =   1
  36.    End
  37.    Begin VB.Label lblRoot 
  38.       Height          =   255
  39.       Left            =   1080
  40.       TabIndex        =   3
  41.       Top             =   5880
  42.       Width           =   1815
  43.    End
  44.    Begin VB.Label Label1 
  45.       Caption         =   "Root:"
  46.       Height          =   255
  47.       Left            =   360
  48.       TabIndex        =   2
  49.       Top             =   5880
  50.       Width           =   615
  51.    End
  52. Attribute VB_Name = "frmMap"
  53. Attribute VB_GlobalNameSpace = False
  54. Attribute VB_Creatable = False
  55. Attribute VB_PredeclaredId = True
  56. Attribute VB_Exposed = False
  57. Option Explicit
  58. 'Map.frm
  59. '--------------------------------------------------------------------------
  60. '<Purpose>
  61. '<Revision>
  62. '       $Revision: $
  63. '<Mod Log>
  64. '       $Log: $
  65. '--------------------------------------------------------------------------
  66. Private hSite As Form
  67. Public Property Get SiteHandle() As Form
  68.     Set SiteHandle = hSite
  69. End Property
  70. Public Property Let SiteHandle(ByVal hForm As Form)
  71.     Set hSite = hForm
  72. End Property
  73. '--------------------------------------------------------------------------
  74. '<Purpose>
  75. '<Syntax>
  76. '<Assumptions>
  77. '<Returns>
  78. '<Author>
  79. '   HBW
  80. '--------------------------------------------------------------------------
  81. Private Sub cmdExcel_Click()
  82.     Call MakeExcelFile(tvMap)
  83. End Sub
  84.