Loading persistence files at runtime sample
This commit is contained in:
24
harbour/contrib/hgf/tests/form3res.prg
Normal file
24
harbour/contrib/hgf/tests/form3res.prg
Normal 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
|
||||
Reference in New Issue
Block a user