43 lines
632 B
C++
43 lines
632 B
C++
|
#include <applicat.h>
|
||
|
#include <mask.h>
|
||
|
#include <progind.h>
|
||
|
#include <urldefid.h>
|
||
|
|
||
|
|
||
|
|
||
|
class TCreatepart_app : public TApplication
|
||
|
{
|
||
|
protected:
|
||
|
virtual bool create();
|
||
|
virtual bool destroy();
|
||
|
virtual bool menu(MENU_TAG m);
|
||
|
|
||
|
public:
|
||
|
TCreatepart_app() {};
|
||
|
};
|
||
|
|
||
|
bool TCreatepart_app::create()
|
||
|
{
|
||
|
TApplication::create();
|
||
|
dispatch_e_menu(BAR_ITEM(1));
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
bool TCreatepart_app::destroy()
|
||
|
{
|
||
|
return TApplication::destroy();
|
||
|
}
|
||
|
|
||
|
bool TCreatepart_app::menu(MENU_TAG)
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
|
||
|
int sc1200(int argc, char** argv)
|
||
|
{
|
||
|
TCreatepart_app a;
|
||
|
a.run(argc, argv, "Apertura scadenze da saldi");
|
||
|
return 0;
|
||
|
}
|