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

  1. VERSION 5.00
  2. Begin VB.Form frmSRTBTest 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Super Richtext Box With Spell Checker"
  5.    ClientHeight    =   10365
  6.    ClientLeft      =   2610
  7.    ClientTop       =   1545
  8.    ClientWidth     =   10350
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   10365
  13.    ScaleWidth      =   10350
  14.    Begin VB.Frame Frame1 
  15.       Caption         =   "HTML"
  16.       Height          =   2415
  17.       Index           =   1
  18.       Left            =   240
  19.       TabIndex        =   3
  20.       Top             =   7800
  21.       Width           =   9855
  22.       Begin VB.TextBox Text2 
  23.          Height          =   2055
  24.          Left            =   120
  25.          Locked          =   -1  'True
  26.          MultiLine       =   -1  'True
  27.          TabIndex        =   4
  28.          Top             =   240
  29.          Width           =   9615
  30.       End
  31.    End
  32.    Begin VB.Frame Frame1 
  33.       Caption         =   "Rich Text"
  34.       Height          =   2415
  35.       Index           =   0
  36.       Left            =   240
  37.       TabIndex        =   1
  38.       Top             =   5280
  39.       Width           =   9855
  40.       Begin VB.TextBox Text1 
  41.          Height          =   2055
  42.          Left            =   120
  43.          Locked          =   -1  'True
  44.          MultiLine       =   -1  'True
  45.          TabIndex        =   2
  46.          Top             =   240
  47.          Width           =   9615
  48.       End
  49.    End
  50.    Begin superRTBTest.superRTB superRTB1 
  51.       Height          =   5100
  52.       Left            =   120
  53.       TabIndex        =   0
  54.       Top             =   120
  55.       Width           =   10095
  56.       _ExtentX        =   17806
  57.       _ExtentY        =   8996
  58.       ShowBorder      =   0   'False
  59.    End
  60. End
  61. Attribute VB_Name = "frmSRTBTest"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. Private Sub superRTB1_Changed()
  67. Text1 = superRTB1.TextRTF
  68. Text2 = superRTB1.TextHTML
  69. End Sub
  70.