home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fbifile / preferen.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  4.3 KB  |  159 lines

  1. VERSION 2.00
  2. Begin Form Preferences 
  3.    Caption         =   "Personal Preferences"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1020
  6.    ClientTop       =   1890
  7.    ClientWidth     =   7365
  8.    ControlBox      =   0   'False
  9.    Height          =   4425
  10.    Left            =   960
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   4020
  16.    ScaleWidth      =   7365
  17.    Top             =   1545
  18.    Width           =   7485
  19.    Begin TextBox body 
  20.       Height          =   285
  21.       Left            =   2760
  22.       TabIndex        =   7
  23.       Top             =   3120
  24.       Width           =   2535
  25.    End
  26.    Begin TextBox fruit 
  27.       Height          =   285
  28.       Left            =   2760
  29.       TabIndex        =   6
  30.       Top             =   2640
  31.       Width           =   2535
  32.    End
  33.    Begin CommandButton Command2 
  34.       Caption         =   "Quit"
  35.       Height          =   495
  36.       Left            =   5640
  37.       TabIndex        =   15
  38.       Top             =   2160
  39.       Width           =   1575
  40.    End
  41.    Begin TextBox tvshow 
  42.       Height          =   285
  43.       Left            =   2760
  44.       TabIndex        =   5
  45.       Top             =   2160
  46.       Width           =   2535
  47.    End
  48.    Begin TextBox singer 
  49.       Height          =   285
  50.       Left            =   2760
  51.       TabIndex        =   4
  52.       Top             =   1680
  53.       Width           =   2535
  54.    End
  55.    Begin CommandButton Command1 
  56.       Cancel          =   -1  'True
  57.       Caption         =   "Continue"
  58.       Height          =   495
  59.       Left            =   5640
  60.       TabIndex        =   8
  61.       Top             =   1200
  62.       Width           =   1575
  63.    End
  64.    Begin TextBox actor 
  65.       Height          =   285
  66.       Left            =   2760
  67.       TabIndex        =   3
  68.       Top             =   1200
  69.       Width           =   2535
  70.    End
  71.    Begin TextBox food 
  72.       Height          =   285
  73.       Left            =   2760
  74.       TabIndex        =   2
  75.       Top             =   720
  76.       Width           =   2535
  77.    End
  78.    Begin TextBox color 
  79.       Height          =   285
  80.       Left            =   2760
  81.       TabIndex        =   1
  82.       Top             =   240
  83.       Width           =   2535
  84.    End
  85.    Begin Label Label7 
  86.       Caption         =   "Favorite body part"
  87.       Height          =   255
  88.       Left            =   600
  89.       TabIndex        =   14
  90.       Top             =   3120
  91.       Width           =   1695
  92.    End
  93.    Begin Label Label6 
  94.       Caption         =   "Favorite fruit/vegetable"
  95.       Height          =   255
  96.       Left            =   600
  97.       TabIndex        =   13
  98.       Top             =   2640
  99.       Width           =   2055
  100.    End
  101.    Begin Label Label5 
  102.       Caption         =   "Favorite TV show"
  103.       Height          =   255
  104.       Left            =   600
  105.       TabIndex        =   12
  106.       Top             =   2160
  107.       Width           =   1815
  108.    End
  109.    Begin Label Label4 
  110.       Caption         =   "Favorite singer/group"
  111.       Height          =   255
  112.       Left            =   600
  113.       TabIndex        =   11
  114.       Top             =   1680
  115.       Width           =   1935
  116.    End
  117.    Begin Label Label3 
  118.       Caption         =   "Favorite actor/actress"
  119.       Height          =   255
  120.       Left            =   600
  121.       TabIndex        =   10
  122.       Top             =   1200
  123.       Width           =   1935
  124.    End
  125.    Begin Label Label2 
  126.       Caption         =   "Favorite food"
  127.       Height          =   255
  128.       Left            =   600
  129.       TabIndex        =   9
  130.       Top             =   720
  131.       Width           =   1695
  132.    End
  133.    Begin Label Label1 
  134.       Caption         =   "Favorite color"
  135.       Height          =   255
  136.       Left            =   600
  137.       TabIndex        =   0
  138.       Top             =   240
  139.       Width           =   1575
  140.    End
  141. Sub command1_click ()
  142.     Preferences.Hide
  143.     misc.Show
  144. End Sub
  145. Sub Command2_Click ()
  146.     End
  147. End Sub
  148. Sub Form_Activate ()
  149.     i% = sndplaysound("preferen.wav", 1)
  150.     color.text = ""
  151.     food.text = ""
  152.     actor.text = ""
  153.     singer.text = ""
  154.     tvshow.text = ""
  155.     fruit.text = ""
  156.     body.text = ""
  157.     color.SetFocus
  158. End Sub
  159.