Loading persistence files at runtime sample

This commit is contained in:
Antonio Linares
2001-09-06 12:53:57 +00:00
parent 4650dd762b
commit 9155c05119

View File

@@ -0,0 +1,24 @@
//
// $Id$
//
// Loading persistence files at runtime sample
#include "hbclass.ch"
function Main()
local oForm3 := TForm3():New()
oForm3:LoadFromFile( "form3.hbf" )
oForm3:ShowModal()
return nil
CLASS TForm3 FROM TForm
DATA aTest PROPERTY
METHOD FormClick( oSender, nX, nY ) INLINE MsgInfo( "Click" )
ENDCLASS