- data la possibilita' di uscire dai menu che dipendono dal menu manutenzione dichiarazione con il tasto esc - modificato descrizioni causali quadro D - disabilitato scelta ditta dal menu dell'applicazioni - modificato conteggio max per indicatore progressivo delle dichiarazioni selezionate - L.A. - git-svn-id: svn://10.65.10.50/trunk@4099 c028cbd2-c16b-5b4b-a496-9718f37d4682
39 lines
734 B
C++
Executable File
39 lines
734 B
C++
Executable File
// 773100 - Parametri di studio 770
|
|
#include <confapp.h>
|
|
|
|
class M73_App : public TConfig_application
|
|
{
|
|
public:
|
|
virtual bool user_create();
|
|
virtual bool firm_change_enabled() const;
|
|
M73_App() : TConfig_application(CONFIG_STUDIO) {}
|
|
virtual ~M73_App() {}
|
|
};
|
|
|
|
bool M73_App::user_create()
|
|
{
|
|
TString16 section;
|
|
const char* edit_mask = "773100a";
|
|
|
|
section = name();
|
|
section.cut(2);
|
|
|
|
// Forza EdMask in prassis.ini
|
|
TConfig cnf (CONFIG_STUDIO, section);
|
|
cnf.get("EdMask", section, -1, edit_mask);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
bool M73_App::firm_change_enabled() const
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
int m73100 (int argc, char* argv[])
|
|
{
|
|
M73_App appc;
|
|
appc.run(argc, argv, "Parametri Modello 770");
|
|
return 0;
|
|
}
|