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 / WINMENU.FRM (.txt) < prev   
Visual Basic Form  |  1998-06-18  |  2KB  |  53 lines

  1. VERSION 5.00
  2. Begin VB.Form frmWinMenu 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   8280
  5.    ClientLeft      =   -9996
  6.    ClientTop       =   1980
  7.    ClientWidth     =   6684
  8.    LinkTopic       =   "frmWinMenu"
  9.    ScaleHeight     =   8280
  10.    ScaleWidth      =   6684
  11.    Begin VB.Menu mnuWindow 
  12.       Caption         =   "&Window"
  13.       WindowList      =   -1  'True
  14.       Begin VB.Menu mnuWindowNewWindow 
  15.          Caption         =   "&New Window"
  16.       End
  17.       Begin VB.Menu mnuWindowCascade 
  18.          Caption         =   "&Cascade"
  19.       End
  20.       Begin VB.Menu mnuWindowTileHorizontal 
  21.          Caption         =   "Tile &Horizontal"
  22.       End
  23.       Begin VB.Menu mnuWindowTileVertical 
  24.          Caption         =   "Tile &Vertical"
  25.       End
  26.       Begin VB.Menu mnuWindowArrangeIcons 
  27.          Caption         =   "&Arrange Icons"
  28.       End
  29.       Begin VB.Menu mnuWindowBar1 
  30.          Caption         =   "-"
  31.       End
  32.    End
  33. Attribute VB_Name = "frmWinMenu"
  34. Attribute VB_GlobalNameSpace = False
  35. Attribute VB_Creatable = False
  36. Attribute VB_PredeclaredId = True
  37. Attribute VB_Exposed = False
  38. Private Sub mnuWindowArrangeIcons_Click()
  39.   Me.Arrange vbArrangeIcons
  40. End Sub
  41. Private Sub mnuWindowCascade_Click()
  42.   Me.Arrange vbCascade
  43. End Sub
  44. Private Sub mnuWindowNewWindow_Click()
  45.   MsgBox "New WIndow Code goes here!"
  46. End Sub
  47. Private Sub mnuWindowTileHorizontal_Click()
  48.   Me.Arrange vbTileHorizontal
  49. End Sub
  50. Private Sub mnuWindowTileVertical_Click()
  51.   Me.Arrange vbTileVertical
  52. End Sub
  53.