home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / choreo / main.fr_ / main.bin
Text File  |  1995-08-22  |  2KB  |  79 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. End
  43.  
  44. Sub MDIForm_Load ()
  45.     cfrmCustService.Height = 5700
  46.     cfrmCustService.Width = 7635
  47. End Sub
  48.  
  49. Sub mnuFileExit_Click ()
  50.     End
  51. End Sub
  52.  
  53. Sub mnuWindowArrange_Click ()
  54.     'Arrange all form icons
  55.     mdifrmMain.Arrange ARRANGE_ICONS
  56. End Sub
  57.  
  58. Sub mnuWindowCascade_Click ()
  59.     'Cascade child forms
  60.     mdifrmMain.Arrange CASCADE
  61. End Sub
  62.  
  63. Sub mnuWindowCustomerService_Click ()
  64.     If iCustService = 0 Then
  65.         cfrmCustService.Enabled = True
  66.         cfrmCustService.Visible = True
  67.         cfrmCustService.WindowState = 0
  68.         iCustService = 1
  69.         If iReviewOrders <> 0 Then
  70.             cfrmCustService.cmb3dShowOrderDetail.Enabled = False
  71.         End If
  72.     End If
  73. End Sub
  74.  
  75. Sub mnuWindowShippingAddress_Click ()
  76.     cfrmShippingAddr.Show
  77. End Sub
  78.  
  79.