home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / ADSDK.ZIP / Samples / WinNT / PrintQueue / App / frmConnect.frm (.txt) next >
Encoding:
Visual Basic Form  |  1999-03-17  |  1.6 KB  |  56 lines

  1. VERSION 5.00
  2. Begin VB.Form frmConnect 
  3.    Caption         =   "Connect to Computer"
  4.    ClientHeight    =   1245
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4485
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   1245
  10.    ScaleWidth      =   4485
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton cmdCancel 
  13.       Cancel          =   -1  'True
  14.       Caption         =   "Cancel"
  15.       Height          =   375
  16.       Left            =   2310
  17.       TabIndex        =   3
  18.       Top             =   750
  19.       Width           =   1065
  20.    End
  21.    Begin VB.CommandButton cmdOK 
  22.       Caption         =   "OK"
  23.       Default         =   -1  'True
  24.       Height          =   375
  25.       Left            =   960
  26.       TabIndex        =   2
  27.       Top             =   750
  28.       Width           =   1095
  29.    End
  30.    Begin VB.TextBox txtComputerName 
  31.       Height          =   300
  32.       Left            =   180
  33.       TabIndex        =   1
  34.       Top             =   345
  35.       Width           =   4065
  36.    End
  37.    Begin VB.Label lblComputer 
  38.       Caption         =   "Computer Name"
  39.       Height          =   225
  40.       Left            =   195
  41.       TabIndex        =   0
  42.       Top             =   90
  43.       Width           =   3450
  44.    End
  45. Attribute VB_Name = "frmConnect"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Private Sub cmdCancel_Click()
  51. End Sub
  52. Private Sub cmdOK_Click()
  53.   Tag = txtComputerName
  54.   Hide
  55. End Sub
  56.