home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / exitwi4r / code.frm (.txt) next >
Encoding:
Visual Basic Form  |  1999-07-12  |  1.2 KB  |  40 lines

  1. VERSION 5.00
  2. Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.1#0"; "RICHTX32.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Code window"
  5.    ClientHeight    =   3240
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   5415
  9.    LinkTopic       =   "Form1"
  10.    MDIChild        =   -1  'True
  11.    ScaleHeight     =   3240
  12.    ScaleWidth      =   5415
  13.    WindowState     =   2  'Maximized
  14.    Begin RichTextLib.RichTextBox RichTextBox1 
  15.       Height          =   3255
  16.       Left            =   0
  17.       TabIndex        =   0
  18.       Top             =   0
  19.       Width           =   5415
  20.       _ExtentX        =   9551
  21.       _ExtentY        =   5741
  22.       _Version        =   327680
  23.       Enabled         =   -1  'True
  24.       ScrollBars      =   3
  25.       TextRTF         =   $"code.frx":0000
  26.    End
  27. Attribute VB_Name = "Form1"
  28. Attribute VB_GlobalNameSpace = False
  29. Attribute VB_Creatable = False
  30. Attribute VB_PredeclaredId = True
  31. Attribute VB_Exposed = False
  32. Private Sub Command1_Click()
  33. l = getcommand(Text1.Text)
  34. Text2.Text = l
  35. End Sub
  36. Private Sub Form_Resize()
  37. RichTextBox1.Width = Me.ScaleWidth
  38. RichTextBox1.Height = Me.ScaleHeight
  39. End Sub
  40.