Patch level : 10.0 163
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.2 patch 1262 git-svn-id: svn://10.65.10.50/trunk@17637 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
e1946f1bf2
commit
81669c8140
@ -1,9 +1,6 @@
|
||||
#include <applicat.h>
|
||||
#include <isam.h>
|
||||
#include <progind.h>
|
||||
#include <prefix.h>
|
||||
// prototipi
|
||||
#include "bainsta.h"
|
||||
|
||||
|
||||
#include "bainst.h"
|
||||
|
||||
|
||||
@ -13,7 +10,8 @@ int main(int argc,char** argv)
|
||||
|
||||
int r = 0;
|
||||
if (argc < 2) return 0;
|
||||
TFixed_string mod(argv[2]);
|
||||
TString4 mod;
|
||||
mod.strncpy(argv[2], 2);
|
||||
mod.lower();
|
||||
|
||||
if (mod == "cg")
|
||||
@ -24,6 +22,8 @@ int main(int argc,char** argv)
|
||||
r=bainst17(argc, argv);// pre/post installazione avis
|
||||
else if (mod == "in")
|
||||
r=bainst18(argc, argv);// pre/post installazione intra
|
||||
else if (mod == "vd")
|
||||
r=bainst23(argc, argv);// pre/post installazione vendite al dettaglio
|
||||
else if (mod == "ve")
|
||||
r=bainst31(argc, argv);// pre/post installazione vendite:
|
||||
else if (mod == "mg")
|
||||
@ -38,7 +38,6 @@ int main(int argc,char** argv)
|
||||
r=bainst39(argc, argv);// pre/post installazione MRP
|
||||
else
|
||||
r=bainst00(argc, argv);// pre/post installazione base
|
||||
exit(r);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -5,6 +5,7 @@ int bainst07(int argc, char** argv);
|
||||
int bainst11(int argc, char** argv);
|
||||
int bainst17(int argc, char** argv);
|
||||
int bainst18(int argc, char** argv);
|
||||
int bainst23(int argc, char** argv);
|
||||
int bainst31(int argc, char** argv);
|
||||
int bainst32(int argc, char** argv);
|
||||
int bainst35(int argc, char** argv);
|
||||
|
16
ba/bainst23.cpp
Executable file
16
ba/bainst23.cpp
Executable file
@ -0,0 +1,16 @@
|
||||
#include <modaut.h>
|
||||
|
||||
#include "bainstlib.h"
|
||||
|
||||
class TInstall_VD : public TInstallmodule_app
|
||||
{
|
||||
protected:
|
||||
virtual int module_number() const { return VDAUT; }
|
||||
};
|
||||
|
||||
int bainst23(int argc, char** argv)
|
||||
{
|
||||
TInstall_VD app;
|
||||
app.run(argc, argv);
|
||||
return 0;
|
||||
}
|
1
ba/bainst23.h
Executable file
1
ba/bainst23.h
Executable file
@ -0,0 +1 @@
|
||||
#include "bainsta.h"
|
18
ba/bainst23.uml
Executable file
18
ba/bainst23.uml
Executable file
@ -0,0 +1,18 @@
|
||||
#include "bainst23.h"
|
||||
|
||||
PAGE "Installazione VD" -1 -1 78 8
|
||||
|
||||
BOOL F_DEFAULTSDATA
|
||||
BEGIN
|
||||
PROMPT 2 2 "Carica le tabelle del modulo Vendite al dettaglio"
|
||||
END
|
||||
|
||||
BUTTON DLG_OK 10 2
|
||||
BEGIN
|
||||
PROMPT -11 -1 "~Conferma"
|
||||
MESSAGE EXIT,K_ENTER
|
||||
PICTURE BMP_OK
|
||||
END
|
||||
|
||||
ENDPAGE
|
||||
ENDMASK
|
@ -33,7 +33,7 @@ class TStd_filename : public TFilename
|
||||
{
|
||||
public:
|
||||
bool check(bool verbose=FALSE,const char * name=NULL);
|
||||
~TStd_filename () {}
|
||||
|
||||
TStd_filename () : TFilename(){}
|
||||
TStd_filename (const char * n) : TFilename(n){}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user