home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / Free / Prg / API23.exe / Form1.frm (.txt) next >
Encoding:
Visual Basic Form  |  1998-12-07  |  1.6 KB  |  58 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.Data Data1 
  13.       Caption         =   "Data1"
  14.       Connect         =   "Access"
  15.       DatabaseName    =   ""
  16.       DefaultCursorType=   0  'DefaultCursor
  17.       DefaultType     =   2  'UseODBC
  18.       Exclusive       =   0   'False
  19.       Height          =   375
  20.       Left            =   3000
  21.       Options         =   0
  22.       ReadOnly        =   0   'False
  23.       RecordsetType   =   1  'Dynaset
  24.       RecordSource    =   ""
  25.       Top             =   240
  26.       Width           =   1140
  27.    End
  28.    Begin VB.ListBox List1 
  29.       Height          =   645
  30.       Left            =   120
  31.       TabIndex        =   1
  32.       Top             =   120
  33.       Width           =   1455
  34.    End
  35.    Begin VB.CommandButton Command1 
  36.       Caption         =   "Command1"
  37.       Height          =   495
  38.       Left            =   1080
  39.       TabIndex        =   0
  40.       Top             =   1560
  41.       Width           =   2175
  42.    End
  43.    Begin VB.Image Image1 
  44.       Height          =   615
  45.       Left            =   1680
  46.       Top             =   240
  47.       Width           =   855
  48.    End
  49. Attribute VB_Name = "Form1"
  50. Attribute VB_GlobalNameSpace = False
  51. Attribute VB_Creatable = False
  52. Attribute VB_PredeclaredId = True
  53. Attribute VB_Exposed = False
  54. Option Explicit
  55. Private Sub Command1_Click()
  56.     MakeTransparent Form1
  57. End Sub
  58.