forked from lee-soft/ViStart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LayerdWindowHandles.cls
43 lines (36 loc) · 957 Bytes
/
LayerdWindowHandles.cls
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "LayerdWindowHandles"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Public theDC As Long
Public oldBitmap As Long
Public mainBitmap As Long
Private winSize As SIZEL
Private srcPoint As POINTL
Public Function SetSize(newSize As SIZEL)
winSize = newSize
End Function
Public Function GetSize() As SIZEL
GetSize = winSize
End Function
Public Function SetPoint(newPoint As POINTL)
srcPoint = newPoint
End Function
Public Function GetPoint() As POINTL
GetPoint = srcPoint
End Function
Private Sub Class_Terminate()
SelectObject theDC, oldBitmap
DeleteObject mainBitmap
DeleteObject oldBitmap
'DeleteDC theDC
End Sub