home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / VbLander_G1760776222004.psc / frmResult.frm < prev    next >
Text File  |  2004-06-20  |  2KB  |  72 lines

  1. VERSION 5.00
  2. Begin VB.Form frmResult 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "..."
  5.    ClientHeight    =   1980
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   5475
  9.    Icon            =   "frmResult.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1980
  14.    ScaleWidth      =   5475
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton cmdOk 
  18.       Caption         =   "OK"
  19.       Default         =   -1  'True
  20.       Height          =   375
  21.       Left            =   4200
  22.       TabIndex        =   3
  23.       Top             =   1440
  24.       Width           =   1095
  25.    End
  26.    Begin VB.PictureBox picRes 
  27.       AutoSize        =   -1  'True
  28.       Height          =   1470
  29.       Index           =   1
  30.       Left            =   180
  31.       Picture         =   "frmResult.frx":000C
  32.       ScaleHeight     =   1410
  33.       ScaleWidth      =   1410
  34.       TabIndex        =   1
  35.       Top             =   240
  36.       Visible         =   0   'False
  37.       Width           =   1470
  38.    End
  39.    Begin VB.PictureBox picRes 
  40.       AutoSize        =   -1  'True
  41.       Height          =   1470
  42.       Index           =   0
  43.       Left            =   180
  44.       Picture         =   "frmResult.frx":04BE
  45.       ScaleHeight     =   1410
  46.       ScaleWidth      =   1410
  47.       TabIndex        =   0
  48.       Top             =   240
  49.       Visible         =   0   'False
  50.       Width           =   1470
  51.    End
  52.    Begin VB.Label lblRes 
  53.       Caption         =   "..."
  54.       Height          =   675
  55.       Left            =   1860
  56.       TabIndex        =   2
  57.       Top             =   360
  58.       Width           =   3315
  59.    End
  60. End
  61. Attribute VB_Name = "frmResult"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. Option Explicit
  67.  
  68. Private Sub cmdOk_Click()
  69.     Unload Me
  70. End Sub
  71.  
  72.