home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l407 / 5.ddi / MDINPAD.FR_ / MDINPAD.bin (.txt)
Encoding:
Visual Basic Form  |  1993-04-28  |  3.9 KB  |  138 lines

  1. VERSION 2.00
  2. Begin MDIForm frmMDI 
  3.    Caption         =   "Address Database"
  4.    ClientHeight    =   5160
  5.    ClientLeft      =   870
  6.    ClientTop       =   1695
  7.    ClientWidth     =   5715
  8.    Height          =   5850
  9.    Left            =   810
  10.    LinkTopic       =   "MDIForm1"
  11.    Top             =   1065
  12.    Width           =   5835
  13.    Begin PictureBox Picture1 
  14.       Align           =   2  'Align Bottom
  15.       Height          =   495
  16.       Left            =   0
  17.       ScaleHeight     =   465
  18.       ScaleWidth      =   5685
  19.       TabIndex        =   1
  20.       Top             =   4665
  21.       Width           =   5715
  22.       Begin CommandButton Command2 
  23.          Caption         =   " >>"
  24.          Height          =   360
  25.          Left            =   2910
  26.          TabIndex        =   5
  27.          Top             =   75
  28.          Width           =   855
  29.       End
  30.       Begin CommandButton Command1 
  31.          Caption         =   "<<"
  32.          Height          =   360
  33.          Left            =   1935
  34.          TabIndex        =   4
  35.          Top             =   75
  36.          Width           =   825
  37.       End
  38.       Begin TextBox Text2 
  39.          Height          =   285
  40.          Left            =   3870
  41.          TabIndex        =   3
  42.          Text            =   "Total Records : 3"
  43.          Top             =   120
  44.          Width           =   1725
  45.       End
  46.       Begin TextBox Text1 
  47.          Height          =   285
  48.          Left            =   120
  49.          TabIndex        =   2
  50.          Text            =   "Current Record : 1"
  51.          Top             =   120
  52.          Width           =   1695
  53.       End
  54.    End
  55.    Begin PictureBox picToolbar 
  56.       Align           =   1  'Align Top
  57.       BackColor       =   &H8000000F&
  58.       Height          =   435
  59.       Left            =   0
  60.       ScaleHeight     =   405
  61.       ScaleWidth      =   5685
  62.       TabIndex        =   0
  63.       Top             =   0
  64.       Width           =   5715
  65.       Begin Image imgFileOpenButton 
  66.          Height          =   330
  67.          Left            =   330
  68.          Picture         =   MDINPAD.FRX:0000
  69.          Top             =   45
  70.          Width           =   360
  71.       End
  72.       Begin Image imgFileNewButton 
  73.          Height          =   330
  74.          Left            =   45
  75.          Picture         =   MDINPAD.FRX:0182
  76.          Top             =   45
  77.          Width           =   360
  78.       End
  79.    End
  80.    Begin Menu mnuFile 
  81.       Caption         =   "&File"
  82.       Begin Menu mnuFNew 
  83.          Caption         =   "&New"
  84.       End
  85.       Begin Menu mnuFOpen 
  86.          Caption         =   "&Open"
  87.       End
  88.       Begin Menu mnuDash 
  89.          Caption         =   "-"
  90.       End
  91.       Begin Menu mnuFExit 
  92.          Caption         =   "E&xit"
  93.       End
  94.    End
  95.    Begin Menu mnuWindow 
  96.       Caption         =   "&Window"
  97.       Begin Menu mnuWindowTile 
  98.          Caption         =   "&Tile"
  99.       End
  100.       Begin Menu mnuWindowCascade 
  101.          Caption         =   "&Cascade"
  102.       End
  103.    End
  104. Sub imgCopyButton_Click ()
  105. End Sub
  106. Sub imgCutButton_Click ()
  107. End Sub
  108. Sub imgPasteButton_Click ()
  109. End Sub
  110. Sub MDIForm_Load ()
  111.     ReDim NewDoc(2) As New Form2
  112.     Height = Screen.Height - (1 / 6 * Screen.Height)
  113.     Width = Screen.Width - (1 / 2.5 * Screen.Width)
  114.     Left = Screen.Width / 3 - Width / 2
  115.     Top = Screen.Height / 2 - Height / 2
  116.     For i = 0 To 2
  117.         NewDoc(i).Show
  118.     Next i
  119.     frmMdi.Arrange 0
  120.     NewDoc(0).Caption = "Andrew Fuller"
  121.     NewDoc(0).txtName = "AndrewFuller"
  122.     NewDoc(1).Caption = "Michael Suyama"
  123.     NewDoc(1).txtName = "Michael Suyama"
  124.     NewDoc(2).Caption = "Nancy Davolio"
  125.     NewDoc(2).txtName = "Nancy Davolio"
  126. End Sub
  127. Sub mnuFExit_Click ()
  128.     End
  129. End Sub
  130. Sub mnuFOpen_Click ()
  131. filename$ = "Addrss.txt"
  132. Open filename$ For Input As #1
  133. End Sub
  134. Sub mnuOptions_Click ()
  135. End Sub
  136. Sub mnuOToolbar_Click ()
  137. End Sub
  138.