home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / xresizer / form1.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-02-15  |  2.5 KB  |  85 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   2670
  5.    ClientLeft      =   165
  6.    ClientTop       =   450
  7.    ClientWidth     =   4485
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2670
  10.    ScaleWidth      =   4485
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox Text1 
  13.       Height          =   375
  14.       Left            =   240
  15.       TabIndex        =   4
  16.       Text            =   "Text1"
  17.       Top             =   2040
  18.       Width           =   2295
  19.    End
  20.    Begin VB.CommandButton Command2 
  21.       Caption         =   "Quit"
  22.       Height          =   375
  23.       Left            =   2880
  24.       TabIndex        =   2
  25.       Top             =   2160
  26.       Width           =   1335
  27.    End
  28.    Begin VB.Frame Frame1 
  29.       Caption         =   "Frame1"
  30.       Height          =   1095
  31.       Left            =   240
  32.       TabIndex        =   1
  33.       Top             =   720
  34.       Width           =   3975
  35.       Begin VB.OptionButton Option1 
  36.          Caption         =   "Option1"
  37.          Height          =   375
  38.          Left            =   720
  39.          TabIndex        =   3
  40.          Top             =   360
  41.          Width           =   3015
  42.       End
  43.    End
  44.    Begin VB.Timer Timer1 
  45.       Interval        =   100
  46.       Left            =   3840
  47.       Top             =   0
  48.    End
  49.    Begin VB.Label Label1 
  50.       Alignment       =   2  'Center
  51.       Caption         =   "ActiveResizer OCX Demo....."
  52.       BeginProperty Font 
  53.          Name            =   "MS Sans Serif"
  54.          Size            =   9.75
  55.          Charset         =   0
  56.          Weight          =   700
  57.          Underline       =   0   'False
  58.          Italic          =   0   'False
  59.          Strikethrough   =   0   'False
  60.       EndProperty
  61.       Height          =   372
  62.       Left            =   240
  63.       TabIndex        =   0
  64.       Top             =   120
  65.       Width           =   4092
  66.    End
  67. Attribute VB_Name = "Form1"
  68. Attribute VB_GlobalNameSpace = False
  69. Attribute VB_Creatable = False
  70. Attribute VB_PredeclaredId = True
  71. Attribute VB_Exposed = False
  72. Private Sub Command2_Click()
  73.     End
  74. End Sub
  75. Private Sub Form_Load()
  76.   Set AutoControl1.parentForm = Form1
  77. End Sub
  78. Private Sub Form_Resize()
  79.   AutoControl1.AutoSize             'in form resize event call AutoForm dll function
  80. End Sub
  81. Private Sub Timer1_Timer()
  82. Dim t As Integer
  83.     Label1.Caption = Mid$(Label1.Caption, 2, Len(Label1.Caption) - 1) + Left$(Label1.Caption, 1)
  84. End Sub
  85.