Files
harbour-core/harbour/contrib/hbqt/tests/dbstruct.prg
Pritpal Bedi c08fc9c4f1 2012-03-13 16:09 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideuisrcmanager.prg
    * Completed: minimum required components to materialize some 
        project based on this protocol.

  + contrib/hbqt/tests/cls_dbstruct.prg
  + contrib/hbqt/tests/dbstruct.prg
  + contrib/hbqt/tests/dbstruct.ui
  + contrib/hbqt/tests/ideui.hbp
    + Added: a small project where cls_dbstruct.prg is created by 
       hbIDE's UI Src Manager.
  
  ; Note: event is define for only first button. Try with other 
     buttons yourselves and come-out with suggessions.
2012-03-13 23:15:24 +00:00

30 lines
557 B
Plaintext

/*
* $Id$
*/
/*
* Copyright 2012 Pritpal Bedi <bedipritpal@hotmail.com>
* www - http://harbour-project.org
*
*/
/*----------------------------------------------------------------------*/
#include "hbqtgui.ch"
#include "common.ch"
/*----------------------------------------------------------------------*/
FUNCTION main()
LOCAL oStruct
oStruct := ui_dbstruct():new()
oStruct:create()
oStruct:show()
QApplication():exec()
RETURN NIL
/*----------------------------------------------------------------------*/