home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD1773.psc / Form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-11-11  |  1.5 KB  |  52 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.PictureBox Picture1 
  13.       Height          =   375
  14.       Left            =   1440
  15.       ScaleHeight     =   315
  16.       ScaleWidth      =   2475
  17.       TabIndex        =   2
  18.       TabStop         =   0   'False
  19.       Top             =   360
  20.       Width           =   2535
  21.    End
  22.    Begin VB.CommandButton Command1 
  23.       Caption         =   "Command1"
  24.       Height          =   735
  25.       Left            =   720
  26.       TabIndex        =   0
  27.       Top             =   960
  28.       Width           =   2535
  29.    End
  30.    Begin VB.Label Label1 
  31.       Caption         =   "Label1"
  32.       Height          =   735
  33.       Left            =   1440
  34.       TabIndex        =   1
  35.       Top             =   2280
  36.       Width           =   2175
  37.    End
  38. Attribute VB_Name = "Form2"
  39. Attribute VB_GlobalNameSpace = False
  40. Attribute VB_Creatable = False
  41. Attribute VB_PredeclaredId = True
  42. Attribute VB_Exposed = False
  43. Option Explicit
  44. Private m_oMDIContainerForm As Form
  45. Public Property Set MDIContainerForm(oForm As Form)
  46.     Set m_oMDIContainerForm = oForm
  47. End Property
  48. Public Sub Menu_Build()
  49.     m_oMDIContainerForm.mnuTop1.Visible = False
  50.     m_oMDIContainerForm.mnuTop2.Visible = False
  51. End Sub
  52.