home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / codeli_1 / setup.exe / _SETUP.1 / frmFormat.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-07-22  |  2.2 KB  |  69 lines

  1. VERSION 5.00
  2. Begin VB.Form frmFormat 
  3.    Caption         =   "Displaying the Windows Format Dialog Box"
  4.    ClientHeight    =   1455
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   5265
  8.    Icon            =   "frmFormat.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   1455
  11.    ScaleWidth      =   5265
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton cmdFormat 
  14.       Caption         =   "&Format Disk"
  15.       Default         =   -1  'True
  16.       Height          =   495
  17.       Left            =   120
  18.       TabIndex        =   2
  19.       Top             =   120
  20.       Width           =   1335
  21.    End
  22.    Begin VB.Label Label1 
  23.       Alignment       =   1  'Right Justify
  24.       AutoSize        =   -1  'True
  25.       Caption         =   "Written for the VB Center Code Library"
  26.       BeginProperty Font 
  27.          Name            =   "Small Fonts"
  28.          Size            =   6.75
  29.          Charset         =   0
  30.          Weight          =   400
  31.          Underline       =   0   'False
  32.          Italic          =   0   'False
  33.          Strikethrough   =   0   'False
  34.       EndProperty
  35.       Height          =   165
  36.       Left            =   2820
  37.       TabIndex        =   1
  38.       Top             =   960
  39.       Width           =   2355
  40.    End
  41.    Begin VB.Label Label2 
  42.       Alignment       =   1  'Right Justify
  43.       AutoSize        =   -1  'True
  44.       Caption         =   "http://www.geocities.com/SiliconValley/Way/6445"
  45.       BeginProperty Font 
  46.          Name            =   "MS Sans Serif"
  47.          Size            =   8.25
  48.          Charset         =   0
  49.          Weight          =   700
  50.          Underline       =   0   'False
  51.          Italic          =   0   'False
  52.          Strikethrough   =   0   'False
  53.       EndProperty
  54.       ForeColor       =   &H00800000&
  55.       Height          =   195
  56.       Left            =   840
  57.       TabIndex        =   0
  58.       Top             =   1200
  59.       Width           =   4365
  60.    End
  61. Attribute VB_Name = "frmFormat"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. Private Sub cmdFormat_Click()
  67. FormatFloppy
  68. End Sub
  69.