home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / disk22 / vbasic / resize.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-04-29  |  961 b   |  34 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Ejemplo del evento Resize"
  4.    ClientHeight    =   2850
  5.    ClientLeft      =   1980
  6.    ClientTop       =   2190
  7.    ClientWidth     =   4965
  8.    Height          =   3255
  9.    Left            =   1920
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   2850
  12.    ScaleWidth      =   4965
  13.    Top             =   1845
  14.    Width           =   5085
  15.    Begin VB.TextBox Text1 
  16.       Height          =   495
  17.       Left            =   1920
  18.       MultiLine       =   -1  'True
  19.       ScrollBars      =   3  'Both
  20.       TabIndex        =   0
  21.       Text            =   "Resize.frx":0000
  22.       Top             =   1200
  23.       Width           =   1215
  24.    End
  25. Attribute VB_Name = "Form1"
  26. Attribute VB_Creatable = False
  27. Attribute VB_Exposed = False
  28. Private Sub Form_Resize()
  29.   Text1.Left = 0
  30.   Text1.Top = 0
  31.   Text1.Width = Form1.ScaleWidth
  32.   Text1.Height = Form1.ScaleHeight
  33. End Sub
  34.