GFSPack/Testfrm.frm
VERSION 5.00
Begin VB.Form Testfrm
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4650
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4650
StartUpPosition = 3 'Windows‑Standard
Begin VB.CommandButton Command1
Caption = "unpack Calc.exe"
Height = 375
Left = 2760
TabIndex = 0
Top = 2760
Width = 1815
End
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.
Private Sub Command1_Click()
'on error resume next
Debug.Print SPACK_UnpackFile(App.Path + "\" + "SPack_Test.dat", True, Nothing, "CALC.EXE", App.Path + "\" + "CALC.EXE")
End Sub
[END OF FILE]