home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / IMDB_tool_2054503182007.psc / frmInputCode.frm < prev    next >
Text File  |  2004-09-26  |  2KB  |  52 lines

  1. VERSION 5.00
  2. Begin VB.Form frmInputCode 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Input IMDB Movie ID"
  5.    ClientHeight    =   1305
  6.    ClientLeft      =   5295
  7.    ClientTop       =   5460
  8.    ClientWidth     =   4470
  9.    BeginProperty Font 
  10.       Name            =   "Tahoma"
  11.       Size            =   8.25
  12.       Charset         =   0
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    Icon            =   "frmInputCode.frx":0000
  19.    LinkTopic       =   "Form1"
  20.    MaxButton       =   0   'False
  21.    MinButton       =   0   'False
  22.    ScaleHeight     =   1305
  23.    ScaleWidth      =   4470
  24.    ShowInTaskbar   =   0   'False
  25.    Begin VB.CommandButton Command1 
  26.       Caption         =   "Get Movie Info"
  27.       Height          =   375
  28.       Left            =   2580
  29.       TabIndex        =   1
  30.       Top             =   660
  31.       Width           =   1635
  32.    End
  33.    Begin VB.TextBox txtCode 
  34.       Height          =   315
  35.       Left            =   180
  36.       TabIndex        =   0
  37.       Text            =   "tt0133093"
  38.       Top             =   300
  39.       Width           =   4035
  40.    End
  41. End
  42. Attribute VB_Name = "frmInputCode"
  43. Attribute VB_GlobalNameSpace = False
  44. Attribute VB_Creatable = False
  45. Attribute VB_PredeclaredId = True
  46. Attribute VB_Exposed = False
  47. Private Sub Command1_Click()
  48. Dim XXX As String
  49. AddQueueEntry txtCode.Text
  50. Unload Me
  51. End Sub
  52.