home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / articles / vbbultn / source / tooltip.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-12-21  |  1.2 KB  |  41 lines

  1. VERSION 2.00
  2. Begin Form ToolTipForm 
  3.    BackColor       =   &H0080FFFF&
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   240
  6.    ClientLeft      =   3630
  7.    ClientTop       =   2790
  8.    ClientWidth     =   1095
  9.    ControlBox      =   0   'False
  10.    Height          =   645
  11.    Left            =   3570
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   240
  16.    ScaleWidth      =   1095
  17.    Top             =   2445
  18.    Width           =   1215
  19.    Begin Label ToolTipLab 
  20.       AutoSize        =   -1  'True
  21.       BackColor       =   &H0080FFFF&
  22.       Caption         =   "Label1"
  23.       FontBold        =   0   'False
  24.       FontItalic      =   0   'False
  25.       FontName        =   "MS Sans Serif"
  26.       FontSize        =   8.25
  27.       FontStrikethru  =   0   'False
  28.       FontUnderline   =   0   'False
  29.       ForeColor       =   &H00000000&
  30.       Height          =   195
  31.       Left            =   30
  32.       TabIndex        =   0
  33.       Top             =   0
  34.       Width           =   480
  35.    End
  36. Option Explicit
  37. Sub Form_Load ()
  38.     ToolTipLab.Left = 1 * Screen.TwipsPerPixelX
  39.     ToolTipLab.Top = 0
  40. End Sub
  41.