home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / code / design / mstips / dutip.frm < prev    next >
Text File  |  1995-02-27  |  1KB  |  50 lines

  1. VERSION 2.00
  2. Begin Form frmTip 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "(tooltip)"
  5.    ClientHeight    =   855
  6.    ClientLeft      =   3045
  7.    ClientTop       =   2805
  8.    ClientWidth     =   1710
  9.    ControlBox      =   0   'False
  10.    Height          =   1260
  11.    Left            =   2985
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   855
  16.    ScaleWidth      =   1710
  17.    Top             =   2460
  18.    Width           =   1830
  19.    Begin Timer tmrTip 
  20.       Enabled         =   0   'False
  21.       Left            =   60
  22.       Top             =   360
  23.    End
  24.    Begin Label lblTip 
  25.       Caption         =   "(tooltip)"
  26.       FontBold        =   0   'False
  27.       FontItalic      =   0   'False
  28.       FontName        =   "MS Sans Serif"
  29.       FontSize        =   8.25
  30.       FontStrikethru  =   0   'False
  31.       FontUnderline   =   0   'False
  32.       Height          =   195
  33.       Left            =   60
  34.       TabIndex        =   0
  35.       Top             =   60
  36.       Width           =   1575
  37.    End
  38. End
  39. Option Explicit
  40.  
  41. 'This is the generic tooltip form.  It's manipulated
  42. 'at runtime by the routines in DUTIP.BAS.
  43.  
  44. Sub tmrTip_Timer ()
  45.  
  46. Call dutip_PollTips
  47.  
  48. End Sub
  49.  
  50.