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

  1. VERSION 5.00
  2. Begin VB.Form frmbytesreceived 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Bytes Received:"
  5.    ClientHeight    =   3450
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   6015
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    NegotiateMenus  =   0   'False
  14.    ScaleHeight     =   3450
  15.    ScaleWidth      =   6015
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton cmdclose 
  18.       Caption         =   "Close"
  19.       Height          =   255
  20.       Left            =   4800
  21.       TabIndex        =   2
  22.       Top             =   3120
  23.       Width           =   1095
  24.    End
  25.    Begin VB.CommandButton cmdprint 
  26.       Caption         =   "Print"
  27.       Height          =   255
  28.       Left            =   3600
  29.       TabIndex        =   1
  30.       Top             =   3120
  31.       Width           =   1095
  32.    End
  33.    Begin VB.TextBox txtbytes 
  34.       Height          =   2895
  35.       Left            =   120
  36.       Locked          =   -1  'True
  37.       MultiLine       =   -1  'True
  38.       ScrollBars      =   2  'Vertical
  39.       TabIndex        =   0
  40.       Top             =   120
  41.       Width           =   5775
  42.    End
  43. Attribute VB_Name = "frmbytesreceived"
  44. Attribute VB_GlobalNameSpace = False
  45. Attribute VB_Creatable = False
  46. Attribute VB_PredeclaredId = True
  47. Attribute VB_Exposed = False
  48. Private Sub cmdclose_Click()
  49.    Me.Hide
  50.    frmmain.SetFocus
  51. End Sub
  52.