home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 November / pcwk_11_98a.iso / Wtestowe / Vistdtk / Install / Data.Z / Userform1.FRM < prev    next >
Text File  |  1997-06-25  |  2KB  |  57 lines

  1. VERSION 4.00
  2. Begin VB.Form UserForm1 
  3.    Caption         =   "Developing Visio Solutions"
  4.    ClientHeight    =   2115
  5.    ClientLeft      =   5715
  6.    ClientTop       =   2445
  7.    ClientWidth     =   4680
  8.    Height          =   2520
  9.    Left            =   5655
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   2115
  12.    ScaleWidth      =   4680
  13.    Top             =   2100
  14.    Width           =   4800
  15.    Begin VB.CommandButton Command1 
  16.       Caption         =   "Done"
  17.       Default         =   -1  'True
  18.       Height          =   495
  19.       Left            =   1440
  20.       TabIndex        =   2
  21.       Top             =   1440
  22.       Width           =   1575
  23.    End
  24.    Begin VB.TextBox TextBox1 
  25.       Height          =   375
  26.       Left            =   240
  27.       TabIndex        =   1
  28.       Text            =   "Text1"
  29.       Top             =   600
  30.       Width           =   3975
  31.    End
  32.    Begin VB.Label Label1 
  33.       Caption         =   "Output:"
  34.       Height          =   375
  35.       Left            =   240
  36.       TabIndex        =   0
  37.       Top             =   240
  38.       Width           =   1215
  39.    End
  40. End
  41. Attribute VB_Name = "UserForm1"
  42. Attribute VB_Creatable = False
  43. Attribute VB_Exposed = False
  44. ' -----------------------------------------------------------------------------
  45. ' Copyright (C) 1997 Visio Corporation. All rights reserved.
  46. '
  47. ' You have a royalty-free right to use, modify, reproduce and distribute
  48. ' the Sample Application Files (and/or any modified version) in any way
  49. ' you find useful, provided that you agree that Visio has no warranty,
  50. ' obligations or liability for any Sample Application Files.
  51. ' -----------------------------------------------------------------------------
  52. Private Sub Command1_Click()
  53.     Unload Me
  54. End Sub
  55.  
  56.  
  57.