home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / swbtop / form1.frm (.txt) next >
Encoding:
Visual Basic Form  |  1999-02-08  |  1000 b   |  34 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   2190
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3765
  9.    Icon            =   "Form1.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2190
  14.    ScaleWidth      =   3765
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton Command1 
  18.       Caption         =   "Show Modeless Form"
  19.       Height          =   435
  20.       Left            =   930
  21.       TabIndex        =   0
  22.       Top             =   810
  23.       Width           =   1905
  24.    End
  25. Attribute VB_Name = "Form1"
  26. Attribute VB_GlobalNameSpace = False
  27. Attribute VB_Creatable = False
  28. Attribute VB_PredeclaredId = True
  29. Attribute VB_Exposed = False
  30. Option Explicit
  31. Private Sub Command1_Click()
  32.     Form2.Show vbModeless
  33. End Sub
  34.