home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / choreo / main.fr_ / main.bin (.txt)
Encoding:
Visual Basic Form  |  1995-08-23  |  1.9 KB  |  71 lines

  1. VERSION 2.00
  2. Begin MDIForm mdifrmMain 
  3.    Caption         =   "CenterView Books"
  4.    ClientHeight    =   10830
  5.    ClientLeft      =   540
  6.    ClientTop       =   660
  7.    ClientWidth     =   14055
  8.    Height          =   11520
  9.    Left            =   480
  10.    LinkTopic       =   "MDIForm1"
  11.    Top             =   30
  12.    Width           =   14175
  13.    Begin Menu mnuFile 
  14.       Caption         =   "&File"
  15.       Begin Menu mnuFileExit 
  16.          Caption         =   "E&xit"
  17.       End
  18.    End
  19.    Begin Menu mnuWindow 
  20.       Caption         =   "&Window"
  21.       WindowList      =   -1  'True
  22.       Begin Menu mnuWindowCascade 
  23.          Caption         =   "&Cascade"
  24.       End
  25.       Begin Menu mnuWindowTile 
  26.          Caption         =   "&Tile"
  27.       End
  28.       Begin Menu mnuWindowArrange 
  29.          Caption         =   "&Arrange Icons"
  30.       End
  31.       Begin Menu mnuSeparator 
  32.          Caption         =   "-"
  33.       End
  34.       Begin Menu mnuWindowCustomerService 
  35.          Caption         =   "&Customer Service"
  36.          Enabled         =   0   'False
  37.       End
  38.       Begin Menu mnuWindowShippingAddress 
  39.          Caption         =   "&Shipping Address"
  40.       End
  41.    End
  42. Sub MDIForm_Load ()
  43.     cfrmCustService.Height = 5700
  44.     cfrmCustService.Width = 7635
  45. End Sub
  46. Sub mnuFileExit_Click ()
  47.     End
  48. End Sub
  49. Sub mnuWindowArrange_Click ()
  50.     'Arrange all form icons
  51.     mdifrmMain.Arrange ARRANGE_ICONS
  52. End Sub
  53. Sub mnuWindowCascade_Click ()
  54.     'Cascade child forms
  55.     mdifrmMain.Arrange CASCADE
  56. End Sub
  57. Sub mnuWindowCustomerService_Click ()
  58.     If iCustService = 0 Then
  59.         cfrmCustService.Enabled = True
  60.         cfrmCustService.Visible = True
  61.         cfrmCustService.WindowState = 0
  62.         iCustService = 1
  63.         If iReviewOrders <> 0 Then
  64.             cfrmCustService.cmb3dShowOrderDetail.Enabled = False
  65.         End If
  66.     End If
  67. End Sub
  68. Sub mnuWindowShippingAddress_Click ()
  69.     cfrmShippingAddr.Show
  70. End Sub
  71.