home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 4_2005-2006.ISO / data / Zips / GUI_-_Grap19575012182005.psc / Form1.frm < prev    next >
Text File  |  2005-12-19  |  2KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   0  'None
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   3090
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3090
  11.    ScaleWidth      =   4680
  12.    ShowInTaskbar   =   0   'False
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.PictureBox picmainskin 
  15.       Appearance      =   0  'Flat
  16.       AutoRedraw      =   -1  'True
  17.       AutoSize        =   -1  'True
  18.       BackColor       =   &H80000005&
  19.       BorderStyle     =   0  'None
  20.       ForeColor       =   &H80000008&
  21.       Height          =   900
  22.       Left            =   0
  23.       Picture         =   "Form1.frx":0000
  24.       ScaleHeight     =   900
  25.       ScaleWidth      =   3015
  26.       TabIndex        =   0
  27.       Top             =   0
  28.       Width           =   3015
  29.    End
  30. End
  31. Attribute VB_Name = "Form1"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Private Sub Form_Load()
  37.     Dim WindowRegion As Long
  38.     PicmainSkin.ScaleMode = vbPixels
  39.     PicmainSkin.AutoRedraw = True
  40.     PicmainSkin.AutoSize = True
  41.     PicmainSkin.BorderStyle = vbBSNone
  42.     Me.BorderStyle = vbBSNone
  43.     'Set PicmainSkin.Picture = LoadPicture(App.Path & "\guilogo1.gif")
  44.     Me.Width = PicmainSkin.Width
  45.     Me.Height = PicmainSkin.Height
  46.     WindowRegion = MakeRegion(PicmainSkin)
  47.     SetWindowRgn Me.hWnd, WindowRegion, True
  48. End Sub
  49.  
  50.