home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4609 / tx4vb / field3.fr_ / field3.fr
Text File  |  1994-03-24  |  2KB  |  80 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   4095
  5.    ClientLeft      =   1080
  6.    ClientTop       =   1785
  7.    ClientWidth     =   6450
  8.    Height          =   4785
  9.    Left            =   1020
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   4095
  12.    ScaleWidth      =   6450
  13.    Top             =   1155
  14.    Width           =   6570
  15.    Begin TextControl TextControl1 
  16.       Align           =   1  'Align Top
  17.       BackStyle       =   1  'Opaque
  18.       BorderStyle     =   1  'Fixed Single
  19.       ButtonBar       =   "None"
  20.       ClipChildren    =   -1  'True
  21.       ClipSiblings    =   -1  'True
  22.       ControlChars    =   0   'False
  23.       FontName        =   "Arial"
  24.       FontSize        =   12
  25.       FormatSelection =   0   'False
  26.       Height          =   4095
  27.       HideSelection   =   -1  'True
  28.       ImageAttrDlg    =   -1  'True
  29.       InsertionMode   =   -1  'True
  30.       Left            =   0
  31.       PageHeight      =   10000
  32.       PageMarginB     =   1440
  33.       PageMarginL     =   1440
  34.       PageMarginR     =   1440
  35.       PageMarginT     =   1440
  36.       PageWidth       =   10000
  37.       ReadOnly        =   0   'False
  38.       Ruler           =   "None"
  39.       ScrollBars      =   0  'None
  40.       SizeMode        =   0  'Fixed
  41.       StatusBar       =   "None"
  42.       TabIndex        =   0
  43.       TabKey          =   -1  'True
  44.       Top             =   0
  45.       Width           =   6450
  46.       ZoomFactor      =   0  '100%
  47.    End
  48.    Begin Menu mnuBookmark 
  49.       Caption         =   "&Bookmark"
  50.       Begin Menu mnuBookmark_Insert 
  51.          Caption         =   "&Insert..."
  52.       End
  53.       Begin Menu mnuBookmark_Goto 
  54.          Caption         =   "&Go To..."
  55.       End
  56.    End
  57. End
  58. Option Explicit
  59.  
  60. Sub Form_Resize ()
  61.     TextControl1.Height = ScaleHeight
  62. End Sub
  63.  
  64. Sub mnuBookmark_Goto_Click ()
  65.     frmGotoDlg.Show 1
  66. End Sub
  67.  
  68. Sub mnuBookmark_Insert_Click ()
  69.     frmInsertDlg.Show 1
  70. End Sub
  71.  
  72. Sub mnuInsertField_Click ()
  73.     TextControl1.FieldInsert = ""
  74. End Sub
  75.  
  76. Sub TextControl1_FieldDeleted (FieldIndex As Integer)
  77.     DeleteString (FieldIndex)
  78. End Sub
  79.  
  80.