home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / AutoMousie506111232002.psc / Form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2002-01-19  |  2.4 KB  |  73 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "Donations"
  4.    ClientHeight    =   2190
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3345
  8.    Icon            =   "Form2.frx":0000
  9.    LinkTopic       =   "Form2"
  10.    MaxButton       =   0   'False
  11.    ScaleHeight     =   2190
  12.    ScaleWidth      =   3345
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.Label Label5 
  15.       Caption         =   "Thanks for your support :)"
  16.       Height          =   255
  17.       Left            =   120
  18.       TabIndex        =   4
  19.       Top             =   1800
  20.       Width           =   1935
  21.    End
  22.    Begin VB.Label Label4 
  23.       Caption         =   "Tyner, Ky. 40486"
  24.       Height          =   255
  25.       Left            =   120
  26.       TabIndex        =   3
  27.       Top             =   1440
  28.       Width           =   1335
  29.    End
  30.    Begin VB.Label Label3 
  31.       Caption         =   "1707 Ledger Fork Rd."
  32.       Height          =   255
  33.       Left            =   120
  34.       TabIndex        =   2
  35.       Top             =   1080
  36.       Width           =   1695
  37.    End
  38.    Begin VB.Label Label2 
  39.       Caption         =   "Danny Pryor"
  40.       Height          =   255
  41.       Left            =   120
  42.       TabIndex        =   1
  43.       Top             =   720
  44.       Width           =   975
  45.    End
  46.    Begin VB.Label Label1 
  47.       Caption         =   "If you would like to make a donation then you may do so by sending it to:"
  48.       Height          =   495
  49.       Left            =   120
  50.       TabIndex        =   0
  51.       Top             =   0
  52.       Width           =   3135
  53.    End
  54. Attribute VB_Name = "Form2"
  55. Attribute VB_GlobalNameSpace = False
  56. Attribute VB_Creatable = False
  57. Attribute VB_PredeclaredId = True
  58. Attribute VB_Exposed = False
  59. Option Explicit
  60. Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
  61. Private Const SWP_NOMOVE = 2
  62. Private Const SWP_NOSIZE = 1
  63. Private Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
  64. Private Const HWND_TOPMOST = -1
  65. Private Const HWND_NOTOPMOST = -2
  66. Private Sub Form_Load()
  67. Call SetWindowPos(Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)
  68. End Sub
  69. Private Sub Form_Unload(Cancel As Integer)
  70. MsgBox " Help keep freeware FREE , please support us " & _
  71.     " Thank you"
  72. End Sub
  73.