home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / articles / vbbultn / source / warning.frm (.txt) < prev   
Encoding:
Visual Basic Form  |  1994-12-01  |  1.5 KB  |  48 lines

  1. VERSION 2.00
  2. Begin Form Warning 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "File verification not performed"
  5.    ClientHeight    =   2085
  6.    ClientLeft      =   2460
  7.    ClientTop       =   3195
  8.    ClientWidth     =   5325
  9.    Height          =   2490
  10.    Left            =   2400
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2085
  15.    ScaleWidth      =   5325
  16.    Top             =   2850
  17.    Width           =   5445
  18.    Begin CommandButton Command1 
  19.       Caption         =   "Ok"
  20.       Height          =   435
  21.       Left            =   1950
  22.       TabIndex        =   2
  23.       Top             =   1500
  24.       Width           =   1545
  25.    End
  26.    Begin Label Label1 
  27.       Caption         =   "You may experience problems if you continue. To insure proper operation, close this application and run the XXX.EXE application ."
  28.       Height          =   615
  29.       Index           =   1
  30.       Left            =   30
  31.       TabIndex        =   1
  32.       Top             =   810
  33.       Width           =   5295
  34.    End
  35.    Begin Label Label1 
  36.       Caption         =   "Warning! This application was loaded without verification of the required DLLs and custom controls."
  37.       Height          =   435
  38.       Index           =   0
  39.       Left            =   30
  40.       TabIndex        =   0
  41.       Top             =   240
  42.       Width           =   5295
  43.    End
  44. Option Explicit
  45. Sub Command1_Click ()
  46. Unload Me
  47. End Sub
  48.