home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / VB98 / TEMPLATE / MENUS / EDITMENU.FRM (.txt) next >
Visual Basic Form  |  1998-06-18  |  2KB  |  72 lines

  1. VERSION 5.00
  2. Begin VB.Form frmEditMenu 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   2868
  5.    ClientLeft      =   -9996
  6.    ClientTop       =   2880
  7.    ClientWidth     =   4332
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2868
  10.    ScaleWidth      =   4332
  11.    Begin VB.Menu mnuEdit 
  12.       Caption         =   "&Edit"
  13.       Begin VB.Menu mnuEditUndo 
  14.          Caption         =   "&Undo"
  15.          Shortcut        =   ^Z
  16.       End
  17.       Begin VB.Menu mnuEditBar1 
  18.          Caption         =   "-"
  19.       End
  20.       Begin VB.Menu mnuEditCut 
  21.          Caption         =   "Cu&t"
  22.          Shortcut        =   ^X
  23.       End
  24.       Begin VB.Menu mnuEditCopy 
  25.          Caption         =   "&Copy"
  26.          Shortcut        =   ^C
  27.       End
  28.       Begin VB.Menu mnuEditPaste 
  29.          Caption         =   "&Paste"
  30.          Shortcut        =   ^V
  31.       End
  32.       Begin VB.Menu mnuEditPasteSpecial 
  33.          Caption         =   "Paste &Special..."
  34.       End
  35.       Begin VB.Menu mnuEditBar2 
  36.          Caption         =   "-"
  37.       End
  38.       Begin VB.Menu mnuEditDSelectAll 
  39.          Caption         =   "Select &All"
  40.          Shortcut        =   ^A
  41.       End
  42.       Begin VB.Menu mnuEditInvertSelection 
  43.          Caption         =   "&Invert Selection"
  44.       End
  45.    End
  46. Attribute VB_Name = "frmEditMenu"
  47. Attribute VB_GlobalNameSpace = False
  48. Attribute VB_Creatable = False
  49. Attribute VB_PredeclaredId = True
  50. Attribute VB_Exposed = False
  51. Private Sub mnuEditCopy_Click()
  52.   MsgBox "Place Copy Code here!"
  53. End Sub
  54. Private Sub mnuEditCut_Click()
  55.   MsgBox "Place Cut Code here!"
  56. End Sub
  57. Private Sub mnuEditDSelectAll_Click()
  58.   MsgBox "Place Select All Code here!"
  59. End Sub
  60. Private Sub mnuEditInvertSelection_Click()
  61.   MsgBox "Place Invert Selection Code here!"
  62. End Sub
  63. Private Sub mnuEditPaste_Click()
  64.   MsgBox "Place Paste Code here!"
  65. End Sub
  66. Private Sub mnuEditPasteSpecial_Click()
  67.   MsgBox "Place Paste Special Code here!"
  68. End Sub
  69. Private Sub mnuEditUndo_Click()
  70.   MsgBox "Place Undo Code here!"
  71. End Sub
  72.