home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD93548272000.psc / DirectXForm.frm < prev    next >
Encoding:
Text File  |  2000-08-27  |  1023 b   |  36 lines

  1. VERSION 5.00
  2. Begin VB.Form DirectXForm 
  3.    BackColor       =   &H80000007&
  4.    BorderStyle     =   0  'None
  5.    ClientHeight    =   825
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   3255
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    Picture         =   "DirectXForm.frx":0000
  14.    ScaleHeight     =   825
  15.    ScaleWidth      =   3255
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   3  'Windows Default
  18. End
  19. Attribute VB_Name = "DirectXForm"
  20. Attribute VB_GlobalNameSpace = False
  21. Attribute VB_Creatable = False
  22. Attribute VB_PredeclaredId = True
  23. Attribute VB_Exposed = False
  24.  
  25. Private Sub Form_Load()
  26.  
  27. 'You're probably wondering why theres no code here.
  28. 'All of the code in this program exists outside
  29. 'of the form because subroutines that are in modules
  30. 'can be called from anywhere, while subs and functions
  31. 'in forms can only be called from within that form
  32.  
  33. End Sub
  34.  
  35.  
  36.