-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathINICIO.FRM
57 lines (47 loc) · 1.54 KB
/
INICIO.FRM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
VERSION 5.00
Begin VB.Form frmInicio
BorderStyle = 0 'None
ClientHeight = 1155
ClientLeft = 2400
ClientTop = 2235
ClientWidth = 5310
LinkTopic = "Form1"
ScaleHeight = 1155
ScaleWidth = 5310
ShowInTaskbar = 0 'False
Begin VB.PictureBox picMainSkin
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 1350
Left = 0
Picture = "Inicio.frx":0000
ScaleHeight = 1350
ScaleWidth = 5295
TabIndex = 0
Top = 0
Width = 5295
End
End
Attribute VB_Name = "frmInicio"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
CenterWindow hWnd
Call SetWindowPos(Me.hWnd, HWND_TOPMOST, Me.Left, Me.Top, Me.Width, Me.Height, SWP_NOMOVE + SWP_NOSIZE)
Dim WindowRegion As Long
picMainSkin.ScaleMode = vbPixels
picMainSkin.AutoRedraw = True
picMainSkin.AutoSize = True
picMainSkin.BorderStyle = vbBSNone
Me.BorderStyle = vbBSNone
Me.Width = picMainSkin.Width
Me.Height = picMainSkin.Height
WindowRegion = MakeRegion(picMainSkin)
SetWindowRgn Me.hWnd, WindowRegion, True
End Sub