GFSaveMemory/Testfrm.frm

VERSION 5.00
Begin VB.Form Testfrm
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   3 'Windows‑Standard
End
Attribute VB_Name = "Testfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'(c)2001 by Louis. Test form for GFSaveMemorymod.
Dim hDC1 As Long
Dim hDC2 As Long

Private Sub Form_Load()
    'on error resume next
    hDC1 = GFSM_CreateCompatibleDC(Testfrm.hDC)
    hDC2 = GFSM_CreateCompatibleDC(Testfrm.hDC)
    Call GFSM_DeleteDC(hDC1)
End Sub

Private Sub Form_Unload(Cancel As Integer)
    'on error resume next
    Call GFSM_Terminate
End Sub


[END OF FILE]