home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Ejemplo del evento Resize"
- ClientHeight = 2850
- ClientLeft = 1980
- ClientTop = 2190
- ClientWidth = 4965
- Height = 3255
- Left = 1920
- LinkTopic = "Form1"
- ScaleHeight = 2850
- ScaleWidth = 4965
- Top = 1845
- Width = 5085
- Begin VB.TextBox Text1
- Height = 495
- Left = 1920
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 0
- Text = "Resize.frx":0000
- Top = 1200
- Width = 1215
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Resize()
- Text1.Left = 0
- Text1.Top = 0
- Text1.Width = Form1.ScaleWidth
- Text1.Height = Form1.ScaleHeight
- End Sub
-