Use of persistence files to build a form

This commit is contained in:
Antonio Linares
2001-09-05 06:57:44 +00:00
parent d5824414fb
commit 39f7128798

View File

@@ -0,0 +1,29 @@
//
// $Id$
//
// Use of persistence files to build a form
#include "hbclass.ch"
#include "hbpers.ch"
function Main()
local oForm3 := TForm3():New()
oForm3:ShowModal()
return nil
CLASS TForm3 FROM TForm
METHOD New()
ENDCLASS
METHOD New() CLASS TForm3
Super:New()
#include "form3.hbf" // Notice this is just a persistence ascii file
// renamed as .hbf = Harbour form
return Self