home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / Carles_P_V2083999202007.psc / Form1.frm < prev    next >
Text File  |  2007-09-20  |  2KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3060
  5.    ClientLeft      =   240
  6.    ClientTop       =   570
  7.    ClientWidth     =   4560
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3060
  10.    ScaleWidth      =   4560
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox Text1 
  13.       BeginProperty Font 
  14.          Name            =   "Tahoma"
  15.          Size            =   15.75
  16.          Charset         =   0
  17.          Weight          =   400
  18.          Underline       =   0   'False
  19.          Italic          =   0   'False
  20.          Strikethrough   =   0   'False
  21.       EndProperty
  22.       Height          =   2655
  23.       Left            =   600
  24.       MultiLine       =   -1  'True
  25.       ScrollBars      =   2  'Vertical
  26.       TabIndex        =   0
  27.       Text            =   "Form1.frx":0000
  28.       Top             =   240
  29.       Width           =   3735
  30.    End
  31.    Begin Project1.ucScrollbar ucScrollbar1 
  32.       Height          =   2655
  33.       Left            =   240
  34.       Top             =   240
  35.       Width           =   255
  36.       _ExtentX        =   450
  37.       _ExtentY        =   4683
  38.       Max             =   10
  39.       Style           =   2
  40.    End
  41. End
  42. Attribute VB_Name = "Form1"
  43. Attribute VB_GlobalNameSpace = False
  44. Attribute VB_Creatable = False
  45. Attribute VB_PredeclaredId = True
  46. Attribute VB_Exposed = False
  47. Private Sub Form_Load()
  48.     Me.Text1.Text = "this is just to prove that the custom scrollbar has the same visual look as this textbox's scrollbars. As you can see, when the Areo theme is applied in Vista, the scrollbars look the same =D"
  49. End Sub
  50.