Patch level : 2.0 474

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
Aggiunta traduzione agli effetti


git-svn-id: svn://10.65.10.50/trunk@11153 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2003-05-19 14:15:13 +00:00
parent 18baaa29d0
commit ec475430c6
19 changed files with 454 additions and 436 deletions

View File

@ -1,4 +1,3 @@
//PROGRAMMA PRINCIPALE APPLICAZIONE "GESTIONE EFFETTI"
#include <xvt.h>
#include "ef0.h"

View File

@ -338,7 +338,7 @@ bool TVariazione_effetti::handle_sheet(TMask_field &f, KEY k)
// hanno importo
if (!found)
{ // non permetto di salvare l'effetto
error_box("L'effetto non può contenere righe con importo nullo!");
error_box(TR("L'effetto non può contenere righe con importo nullo!"));
return FALSE;
}
}
@ -355,7 +355,7 @@ bool TVariazione_effetti::datascad_handler(TMask_field& f, KEY k)
{
TDate datafat = row->get(F_DATAFATT-FIRST_FIELD);
if (datascad < datafat)
return f.error_box("La data fattura della riga %d è successiva alla data di scadenza", r+1);
return f.error_box(FR("La data fattura della riga %d è successiva alla data di scadenza"), r+1);
}
}
return TRUE;
@ -384,7 +384,6 @@ bool TVariazione_effetti::codval_handler(TMask_field& f, KEY k)
row.add(" ", sf.cid2index(F_IMPFATTVAL));
}
}
// sf.enable_column(F_IMPFATTVAL, valuta);
sf.enable_column(F_IMPEFFVAL, valuta);
if (f.focusdirty())
sf.force_update();
@ -443,8 +442,6 @@ bool TVariazione_effetti::fatt_handler(TMask_field& f, KEY k)
const real imp = d.totale_doc();
if (d.in_valuta())
{
// real lit = imp * d.get_real("CAMBIO");
// lit.round(0);
const TString16 codval = d.get(DOC_CODVAL);
TCurrency val(imp, codval, d.get_real(DOC_CAMBIO));
val.change_to_firm_val();
@ -509,13 +506,13 @@ bool TVariazione_effetti::impeff_notify(TSheet_field& s, int r, KEY key)
}
//se rimane una sola riga nello sheet non la si può cancellare
if (key == K_DEL && s.items() == 1)
return s.error_box("IMPOSSIBILE CANCELLARE: L'effetto deve contenere almeno una riga!");
return s.error_box(TR("IMPOSSIBILE CANCELLARE: L'effetto deve contenere almeno una riga!"));
return TRUE;
}
int ef0100(int argc, char* argv[])
{
TVariazione_effetti a ;
a.run(argc, argv, "Effetti");
a.run(argc, argv, TR("Effetti"));
return 0;
}

View File

@ -52,25 +52,6 @@ void TEffetto::put_key(TRectype& rec,char tipodist, long ndist, int nrigadist)
// ritorna la prossima chiave utilizzabile
long TEffetto::get_next_key(const long /* codcf */) const
{
/* Fantastica sequela di comandi inutili
static long n = 0;
if (n == 0)
{
TLocalisamfile eff(LF_EFFETTI);
TRectype& curr = eff.curr();
put_key(curr, 9999999L);
const int err = eff.read(_isgreat);
if (err != _isemptyfile)
{
if (err == NOERR)
eff.prev();
if (curr.get_long(EFF_CODCF) == codcf)
n = curr.get_long(EFF_NPROGTR);
}
}
n++;
return n;
*/
long n = 1;
TLocalisamfile eff(LF_EFFETTI);
int err = eff.last();

View File

@ -125,7 +125,7 @@ bool Creazione_Effetti_da_EC::Gen_Notify(TSheet_field& sheet, int r, KEY k)
{
if (app().get_res().is_zero())
{
warning_box("Residuo da ripartire gia' annullato");
warning_box(TR("Residuo da ripartire gia' annullato"));
return FALSE;
}
else
@ -153,7 +153,7 @@ bool Creazione_Effetti_da_EC::Gen_Notify(TSheet_field& sheet, int r, KEY k)
const real new_res = app().get_res() - importo + old_rata;
if (new_res < ZERO)
{
warning_box("Non e' possibile superare l'importo da ripartire");
warning_box(TR("Non e' possibile superare l'importo da ripartire"));
if (old_rata.is_zero())
{
row.add(app().get_res().string(),1);
@ -221,12 +221,12 @@ void Creazione_Effetti_da_EC::main_loop()
{
TSheet_field& sheet =(TSheet_field&)get_msk()->field(F_SHEET_EFF);
if (!_residuo && sheet.items()>0)
message_box("Perform writing procedure...");
message_box(TR("Perform writing procedure..."));
break;
}
case K_F6: //Selects opened counts from E.C.
{
_Partite_aperte = new TArray_sheet(-1,1,0,-1,"Selezione partite aperte","@1|Anno|Numero|Data documento|Saldo@15", 0, 1);
_Partite_aperte = new TArray_sheet(-1,1,0,-1,TR("Selezione partite aperte"),"@1|Anno|Numero|Data documento|Saldo@15", 0, 1);
Load_Partite_Aperte(get_msk()->get_long(F_CODCF));
if (_Partite_aperte->run() == K_ENTER)
{
@ -250,6 +250,6 @@ void Creazione_Effetti_da_EC::main_loop()
int ef0200(int argc, char* argv[])
{
Creazione_Effetti_da_EC a ;
a.run(argc, argv, "Creazione effetti da E.C.");
a.run(argc, argv, TR("Creazione effetti da E.C."));
return 0;
}

View File

@ -154,14 +154,9 @@ void TVariazione_distinte::aggiorna()
long num = row.get_long(shrighe.cid2index(F_NRIBA));
if (!cerca(num))// se non è già presente in memoria
{ // carico l'effetto nell'array
TLocalisamfile eff(LF_EFFETTI);
TRectype & rec = eff.curr();
eff.setkey(1);
rec.zero();
rec.put(EFF_NPROGTR, num);
eff.read();
const TRectype & rec = cache().get(LF_EFFETTI, num);
TEffetto* effetto = new TEffetto(rec);
TEffetto* effetto = new TEffetto((TRectype &) rec);
TArray& righedist = _distinta->righe();
righedist.add(effetto);
}
@ -244,13 +239,13 @@ int TVariazione_distinte::read(TMask& m)
if (eff.rows_r() == 1)
riga.add(rec_r.get(REFF_NRATA));
else
riga.add("Varie");
riga.add(TR("Varie"));
}
else// se l'effetto contiene più di una fattura
{ // non metto i riferimenti al documento ed al numero di rata
riga.add("Varie");
riga.add("Varie");
riga.add("Varie");
riga.add(TR("Varie"));
riga.add(TR("Varie"));
riga.add(TR("Varie"));
}
//gestisco il controllo sulla presenza o meno di una valuta
const TString16 codval(eff.get(EFF_CODVAL));
@ -296,7 +291,7 @@ int TVariazione_distinte::rewrite(const TMask& m)
}
if (items <= to_delete)
{ // non posso cancellare tutti gli effetti di una distinta
error_box("Impossibile escludere tutti gli effetti dalla distinta.\n Utilizzare elimina per cancellarla.");
error_box(TR("Impossibile escludere tutti gli effetti dalla distinta.\n Utilizzare elimina per cancellarla."));
return NOERR;
}
if (to_delete > 0)
@ -509,13 +504,13 @@ void TVariazione_distinte::carica_riba(int tipopag, const bool reset)
if (eff.rows_r() == 1)
riga.add(rec_r.get(REFF_NRATA));
else
riga.add(("Varie"));
riga.add((TR("Varie")));
}
else// se l'effetto contiene più di una fattura
{ // non metto i riferimenti al documento ed al numero di rata
riga.add(("Varie"));
riga.add(("Varie"));
riga.add(("Varie"));
riga.add((TR("Varie")));
riga.add((TR("Varie")));
riga.add((TR("Varie")));
}
riga.add(valuta);
@ -885,6 +880,6 @@ bool TVariazione_distinte::impdist_notify(TSheet_field& s, int r, KEY key)
int ef0300(int argc, char* argv[])
{
TVariazione_distinte a ;
a.run(argc, argv, "Distinte di presentazione");
a.run(argc, argv, TR("Distinte di presentazione"));
return 0;
}

View File

@ -15,7 +15,6 @@ class TEliminazione_effetti: public TSkeleton_application
{
TMask *_msk;
TRelation *_rel;
TLocalisamfile *_reff, *_cession;
TRectype *_from, *_to;
virtual bool create() ;
virtual bool destroy() ;
@ -41,8 +40,6 @@ bool TEliminazione_effetti::create()
{
_msk = new TMask("ef0400a");
_rel = new TRelation(LF_EFFETTI);
_reff = new TLocalisamfile(LF_REFFETTI);
_cession = new TLocalisamfile(LF_CESS);
_rel->first();
_from = new TRectype(_rel->lfile().curr());
_rel->last();
@ -61,8 +58,6 @@ bool TEliminazione_effetti::destroy()
{
delete _msk;
delete _rel;
delete _reff;
delete _cession;
delete _from;
delete _to;
return TRUE;
@ -202,7 +197,7 @@ bool TEliminazione_effetti::conferma_handler(TMask_field& f, KEY k)
TMask &m = f.mask();
if (k == K_SPACE)
{
if (yesno_box("Si desidera veramente eliminare gli effetti selezionati"))
if (yesno_box(TR("Si desidera veramente eliminare gli effetti selezionati")))
elimina();
}
return TRUE;
@ -215,7 +210,7 @@ bool TEliminazione_effetti::annulla_handler(TMask_field& f, KEY k)
TMask &m = f.mask();
if (k == K_SPACE)
{
if (yesno_box("Si desidera veramente annullare i dati inseriti"))
if (yesno_box(TR("Si desidera veramente annullare i dati inseriti")))
m.reset();
}
return TRUE;
@ -224,6 +219,6 @@ bool TEliminazione_effetti::annulla_handler(TMask_field& f, KEY k)
int ef0400(int argc, char* argv[])
{
TEliminazione_effetti a ;
a.run(argc, argv, "Eliminazione Effetti");
a.run(argc, argv, TR("Eliminazione Effetti"));
return 0;
}

View File

@ -244,7 +244,7 @@ void TEmissione::floppy()
ribaini = "riba.ini"; // utilizzo quello generico
if (!ribaini.exist()) // se non esiste ancora!
{
error_box("Impossibile leggere il file %s", (const char*)ribaini);
error_box(FR("Impossibile leggere il file %s"), (const char*)ribaini);
return;
}
@ -262,10 +262,10 @@ void TEmissione::floppy()
bool condition = ok_write();
if (!condition)
error_box("Impossibile continuare dischetto pieno");
error_box(TR("Impossibile continuare dischetto pieno"));
else
{
TProgind pi(n_eff,"Emissione Ri.Ba. su floppy...",FALSE,TRUE);
TProgind pi(n_eff,TR("Emissione Ri.Ba. su floppy..."),FALSE,TRUE);
TAssoc_array& tracciati = _trasfile->tracciati();
header_rb();//intestazione flusso effetti
@ -470,7 +470,7 @@ void TEmissione::print_rb(char tipost, int ndist, char tipodist, int ncopie, con
fcur->freeze();
// se la stampa non si fa a video istanzia puntatore per la gestione
// della barra di attesa
TProgind* pi = is_vis ? NULL : new TProgind(ncopie,"Stampa Effetti...",FALSE,TRUE);
TProgind* pi = is_vis ? NULL : new TProgind(ncopie,TR("Stampa Effetti..."),FALSE,TRUE);
for (int j=0; j < ncopie; j++)
{
if (pi) pi->addstatus(1L); // aggiorna la barra d'attesa
@ -513,7 +513,7 @@ void TEmissione::print_dse(char tipost, int ndist, char tipodist, int ncopie, co
fcur->freeze();
// se la stampa non si fa a video istanzia puntatore per la gestione
// della barra di attesa
TProgind* pi = is_vis ? NULL : new TProgind(ncopie,"Stampa Distinta...",FALSE,TRUE);
TProgind* pi = is_vis ? NULL : new TProgind(ncopie,TR("Stampa Distinta..."),FALSE,TRUE);
for (int j=0; j < ncopie; j++)
{
_base_page_no = 0;
@ -539,8 +539,8 @@ void TEmissione::enable_dettaglio(TForm& form) const
{
if (dett)
{
warning_box("Il modulo %s non prevede la stampa dei dettagli:\n"
"E' necessario aggiungere la sezione RIGHE_EFFETTO",
warning_box(FR("Il modulo %s non prevede la stampa dei dettagli:\n"
"E' necessario aggiungere la sezione RIGHE_EFFETTO"),
(const char*)form.name());
}
}
@ -608,7 +608,7 @@ bool TEmissione::annulla_handler(TMask_field& f, KEY k)
TMask &m = f.mask();
if (k == K_SPACE)
{
if (yesno_box("Vuoi veramente annullare i dati inseriti"))
if (yesno_box(TR("Vuoi veramente annullare i dati inseriti")))
m.reset();
}
return TRUE;
@ -662,8 +662,6 @@ bool TRiba_form::validate(TForm_item &cf, TToken_string &s)
// "!A" fattura o fatture
// "!DATI" numero e data fattura
// "!IMPFATT" importo fattura
//TCursor* fcur = cursor();
//TLocalisamfile &eff = fcur->file(LF_EFFETTI);
TEffetto effetto(cursor()->file().curr());// = eff.curr();
long num = effetto.numero();
const bool in_valuta = effetto.in_valuta();
@ -1200,22 +1198,6 @@ void TRiba_file::validate(TCursor& cur,TRecord_text &rec, TToken_string &s, TStr
real importo = cur.curr(LF_EFFETTI).get(EFF_IMPORTO);
if (_codice_moneta == 'E')
importo *= 100.0;
/* GF only
real importo = cur.curr(LF_EFFETTI).get(EFF_IMPORTOVAL);
if (importo.is_zero())
{
importo = cur.curr(LF_EFFETTI).get_real(EFF_IMPORTO);
importo /= 1936.27;
}
importo *= 100.0;
*/
/* Allore only
real importo = cur.curr(LF_EFFETTI).get(EFF_IMPORTOVAL);
if (importo.is_zero())
importo = cur.curr(LF_EFFETTI).get_real(EFF_IMPORTO);
else
importo *= 100.0;
*/
importo.round(0);
add_tot_importi(importo);
valore = importo.string(13,0);
@ -1246,6 +1228,6 @@ void TRiba_file::validate(TCursor& cur,TRecord_text &rec, TToken_string &s, TStr
int ef0500(int argc, char* argv[])
{
TEmissione a ;
a.run(argc, argv, "Emissione Effetti e Distinte");
a.run(argc, argv, TR("Emissione Effetti e Distinte"));
return 0;
}

View File

@ -96,7 +96,7 @@ void TPrint_effetti_app::st_tot_scad()
_pr.put("_____________________________________________________",46);
printer().print(_pr);
_pr.reset();
_pr.put("TOTALE",46); //sky totdata
_pr.put(TR("TOTALE"),46); //sky totdata
_pr.put(_scad_prec.string(),53);
_pr.put(_tot_data.string(PICTURE_IMPORTO),63);
printer().print(_pr);
@ -107,7 +107,7 @@ void TPrint_effetti_app::st_tot_scad()
// stampa il totale per mese delle data di scadenza
void TPrint_effetti_app::st_tot_mese()
{
_pr.put("TOTALE",46); //sky totmese
_pr.put(TR("TOTALE"),46); //sky totmese
if (_scad_prec.ok())
{
_pr.put(itom(_scad_prec.month()),53);
@ -139,7 +139,7 @@ void TPrint_effetti_app::st_header_ban(const TString& ban)
{
TString80 s = look_tab("%BAN",ban);
if (s.empty())
s = "Banca assente";
s = TR("Banca assente");
_pr.put(s,1);
printer().print(_pr);
_pr.reset();
@ -149,20 +149,20 @@ void TPrint_effetti_app::st_header_ban(const TString& ban)
// (dopo la "rottura" per distinta)
void TPrint_effetti_app::st_header_dist(const char tipodist)
{
TString s = "Distinte";
TString s = TR("Distinte");
switch(tipodist)
{
case 'B':
s << " Salvo Buon Fine";
s << TR(" Salvo Buon Fine");
break;
case 'I':
s << " All'Incasso";
s << TR(" All'Incasso");
break;
case 'S':
s << " Allo Sconto";
s << TR(" Allo Sconto");
break;
case 0:
s = "Nessuna Distinta";
s = TR("Nessuna Distinta");
break;
}
_pr.put(s,1);
@ -184,20 +184,20 @@ void TPrint_effetti_app::preprocess_header()
reset_header();
const long firm = get_firm();
int j = 1;
TLocalisamfile ditte(LF_NDITTE);
ditte.zero();
ditte.put("CODDITTA", firm);
ditte.read();
if (ditte.bad()) ditte.zero();
TString s,
ditta(ditte.get("RAGSOC"));
s = ditta.mid(30,50);
const TRectype & ditte = cache().get(LF_NDITTE, firm);
TString80 s;
TString80 ditta(ditte.get("RAGSOC"));
s = ditta.mid(30);
s.trim();
ditta = ditta.mid(0,30);
ditta.trim();
ditta << " " << s;
set_header(j, "@bDitta: %ld %s@125gPag @#", firm, (const char*) ditta);
set_header(j++, "@b@102gData %s", (const char*) _data_stampa);
if (!s.empty())
{
ditta = ditta.left(30);
ditta.trim();
ditta << " " << s;
}
set_header(j, FR("@bDitta: %ld %s@125gPag @#"), firm, (const char*) ditta);
set_header(j++, FR("@b@102gData %s"), (const char*) _data_stampa);
switch(_pr_type)
{
@ -222,11 +222,11 @@ void TPrint_effetti_app::preprocess_header()
void TPrint_effetti_app::header_scadenza()
{
int j =2;
set_header(j, "@52g@bSTAMPA RI.BA. PER SCADENZA"); j++;
set_header(j, FR("@52g@bSTAMPA RI.BA. PER SCADENZA")); j++;
set_header(j++, (const char *)(TString(_colonne).fill('_')));
TString head = "@b Scadenza Banca Cliente N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.";
TString head = FR("@b Scadenza Banca Cliente N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.");
if (_stampa_bancapp)
head << "@b ABI CAB Banca d'appoggio";
head << FR("@b ABI CAB Banca d'appoggio");
set_header(j++, head);
set_header(j, (const char *)(TString(_colonne).fill('_')));
}
@ -235,11 +235,11 @@ void TPrint_effetti_app::header_scadenza()
void TPrint_effetti_app::header_banca()
{
int j = 2;
set_header(j, "@45g@bSTAMPA RI.BA. PER BANCA D'APPOGGIO"); j++;
set_header(j, FR("@45g@bSTAMPA RI.BA. PER BANCA D'APPOGGIO")); j++;
set_header(j++, (const char *)(TString(_colonne).fill('_')));
TString head = "@b Banca Scadenza Cliente N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.";
TString head = FR("@b Banca Scadenza Cliente N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.");
if (_stampa_bancapp)
head << "@b ABI CAB Banca d'appoggio";
head << FR("@b ABI CAB Banca d'appoggio");
set_header(j++, head);
set_header(j, (const char *)(TString(_colonne).fill('_')));
}
@ -248,12 +248,12 @@ void TPrint_effetti_app::header_banca()
void TPrint_effetti_app::header_distinta()
{
int j = 2;
set_header(j, "@55g@bSTAMPA RI.BA. PER DISTINTE"); j++;
set_header(j, FR("@55g@bSTAMPA RI.BA. PER DISTINTE")); j++;
set_header(j++, (const char *)(TString(_colonne).fill('_')));
set_header(j++, "@b Distinta ");
TString head = "@bTp. Num. N.Riba Scadenza Banca Cliente Importo Imp. in valuta Val Rata Data fattura N.";
set_header(j++, FR("@b Distinta "));
TString head = FR("@bTp. Num. N.Riba Scadenza Banca Cliente Importo Imp. in valuta Val Rata Data fattura N.");
if (_stampa_bancapp)
head << "@b ABI CAB Banca d'appoggio";
head << FR("@b ABI CAB Banca d'appoggio");
set_header(j++, head);
set_header(j, (const char *)(TString(_colonne).fill('_')));
}
@ -262,11 +262,11 @@ void TPrint_effetti_app::header_distinta()
void TPrint_effetti_app::header_cliente()
{
int j = 2;
set_header(j, "@52g@bSTAMPA RI.BA. PER CLIENTE"); j++;
set_header(j, FR("@52g@bSTAMPA RI.BA. PER CLIENTE")); j++;
set_header(j++, (const char *)(TString(_colonne).fill('_')));
TString head = "@b Cliente Scadenza Banca N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.";
TString head = FR("@b Cliente Scadenza Banca N.Riba N.Dist Importo Imp. in valuta Val Rata Data fattura N.");
if (_stampa_bancapp)
head << "@b ABI CAB Banca d'appoggio";
head << FR("@b ABI CAB Banca d'appoggio");
set_header(j++, head);
set_header(j, (const char *)(TString(_colonne).fill('_')));
}
@ -282,13 +282,13 @@ print_action TPrint_effetti_app::postprocess_print(int file, int counter)
st_tot_mese();
if (_tot_banca != 0.0)
{
_pr.put("TOTALE",46);
_pr.put(FR("TOTALE"),46);
_pr.put(_tot_banca.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = (look_tab("%BAN",_ban_prec));
if (s.empty())
s = "Banca assente";
s = FR("Banca assente");
_pr.put(s,52);
printer().print(_pr);
_tot_banca = 0.0;
@ -299,11 +299,11 @@ print_action TPrint_effetti_app::postprocess_print(int file, int counter)
_pr.put("_____________________________________________________",46);
printer().print(_pr);
_pr.reset();
_pr.put("TOTALE",46);
_pr.put(FR("TOTALE"),46);
_pr.put(_tot_distinta.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = "Distinta ";
s = FR("Distinta ");
s << _dist_prec << " " << _tipo_prec ;
_pr.put(s,52);
printer().print(_pr);
@ -318,24 +318,24 @@ print_action TPrint_effetti_app::postprocess_print(int file, int counter)
printer().print(_pr);
_pr.reset();
}
_pr.put("TOTALE",46);
_pr.put(FR("TOTALE"),46);
_pr.put(_tot_tip_dist.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = "Distinte";
s = FR("Distinte");
switch(_tipo_prec)
{
case 'B':
s << " Salvo Buon Fine";
s << FR(" Salvo Buon Fine");
break;
case 'I':
s << " All'Incasso";
s << FR(" All'Incasso");
break;
case 'S':
s << " Allo Sconto";
s << FR(" Allo Sconto");
break;
case 0:
s = "Nessuna Distinta";
s = FR("Nessuna Distinta");
break;
}
_pr.put(s,52);
@ -346,7 +346,7 @@ print_action TPrint_effetti_app::postprocess_print(int file, int counter)
if (_tot_cliente != 0.0)
{
TString ragsoc;
_pr.put("TOTALE",46); //sky totultcli
_pr.put(FR("TOTALE"),46); //sky totultcli
_pr.put(_tot_cliente.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
@ -362,11 +362,11 @@ print_action TPrint_effetti_app::postprocess_print(int file, int counter)
_pr.put("_____________________________________________________",46);
printer().print(_pr);
_pr.reset();
_pr.put("TOTALE ",46);
_pr.put(TR("TOTALE "),46);
_pr.put(_tot_stampa.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
_pr.put("RI.BA. STAMPATE",52);
_pr.put(TR("RI.BA. STAMPATE"),52);
printer().print(_pr);
_pr.reset();
_pr.put("_____________________________________________________",46);
@ -413,7 +413,6 @@ void TPrint_effetti_app::write_bancapp()
const TRectype& rec = current_cursor()->curr();
const TString8 codabi = rec.get(EFF_CODABI);
TString16 codcab; codcab << codabi << rec.get(EFF_CODCAB);
// TString descabi = look_tab("%BAN", codabi); la descrizione dell'abi viene omessa per problemi di spazio
TString desccab = look_tab("%BAN", codcab);
set_row(2,"@133g@pn @pn %s",
FLD(LF_EFFETTI, EFF_CODABI, "@@@@@"),
@ -675,13 +674,13 @@ bool TPrint_effetti_app::preprocess_page(int file, int counter)
if (scad.month() ==_scad_prec.month())
st_tot_mese();
// stampo totale banca
_pr.put("TOTALE",46);
_pr.put(TR("TOTALE"),46);
_pr.put(_tot_banca.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = (look_tab("%BAN",_ban_prec));
if (s.empty())
s = "Banca assente";
s = TR("Banca assente");
_pr.put(s,52);
printer().print(_pr);
_tot_banca = 0.0;
@ -720,11 +719,11 @@ bool TPrint_effetti_app::preprocess_page(int file, int counter)
_pr.put("_____________________________________________________",46);
printer().print(_pr);
_pr.reset();
_pr.put("TOTALE",46);
_pr.put(TR("TOTALE"),46);
_pr.put(_tot_distinta.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = "Distinta ";
s = TR("Distinta ");
s << _tipo_prec << " "<< _dist_prec;
_pr.put(s,52);
printer().print(_pr);
@ -740,24 +739,24 @@ bool TPrint_effetti_app::preprocess_page(int file, int counter)
printer().print(_pr);
_pr.reset();
}
_pr.put("TOTALE",46);
_pr.put(TR("TOTALE"),46);
_pr.put(_tot_tip_dist.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
s = "Distinte";
s = TR("Distinte");
switch(_tipo_prec)
{
case 'B':
s << " Salvo Buon Fine";
s << TR(" Salvo Buon Fine");
break;
case 'I':
s << " All'Incasso";
s << TR(" All'Incasso");
break;
case 'S':
s << " Allo Sconto";
s << TR(" Allo Sconto");
break;
case 0:
s = "Nessuna Distinta";
s = TR("Nessuna Distinta");
break;
}
_pr.put(s,52);
@ -795,7 +794,7 @@ bool TPrint_effetti_app::preprocess_page(int file, int counter)
if (scad.month() ==_scad_prec.month())
st_tot_mese();
// stampo totale cliente
_pr.put("TOTALE",46); //sky totcli
_pr.put(TR("TOTALE"),46); //sky totcli
_pr.put(_tot_cliente.string(PICTURE_IMPORTO),63);
printer().print(_pr);
_pr.reset();
@ -976,14 +975,12 @@ bool TPrint_effetti_app::user_destroy()
{
if (_rel)
delete _rel;
//if (_rec_prec)
// delete _rec_prec;
return TRUE;
}
int ef0600(int argc, char* argv[])
{
TPrint_effetti_app app;
app.run(argc, argv, "Stampe Controllo Effetti");
app.run(argc, argv, TR("Stampe Controllo Effetti"));
return 0;
}

View File

@ -75,13 +75,13 @@ bool TBnp_table_app::user_create()
TTable_application::user_create();
const TString& name = get_tabname();
if (name.empty())
return error_box("Specificare la tabella sulla linea di comando.");
return error_box(TR("Specificare la tabella sulla linea di comando."));
return TRUE;
}
int ef0700(int argc, char* argv[])
{
TBnp_table_app a ;
a.run(argc, argv, "Gestione tabelle");
a.run(argc, argv, TR("Gestione tabelle"));
return 0;
}

View File

@ -82,18 +82,18 @@ class TContabilizzazione_effetti_app : public TSkeleton_application
_total_mov_val;// Same as above but in valuta
TString _desc_inc, _desc_pag; // Descrizioni movimento generato
TMask *_msk; // maschera di selezione dati
TLocalisamfile *_attiv, // file delle attivita' (per far funzionare TRegistro)
*_fcaus, // file delle causale (per far funzionare TCausale)
*_frcaus, // file delle righe causali (per far funzionare TCausale)
*_effetti, // file degli effetti (per TDistinta)
*_reffetti, // file delle righe effetti (per TDistinta)
*_cessionari, // file dei cessionari (per TDistinta)
*_part, // file delle partite (per far funzionare TPartita)
*_scad, // file delle scadenze (per far funzionare TPartita)
*_pags, // file dei pagamenti (per far funzionare TPartita)
*_clifo, // file dei clienti
*_doc, // file dei documenti
*_pcon; // file piano dei conti
// TLocalisamfile *_attiv, // file delle attivita' (per far funzionare TRegistro)
// *_fcaus, // file delle causale (per far funzionare TCausale)
// *_frcaus, // file delle righe causali (per far funzionare TCausale)
// *_effetti, // file degli effetti (per TDistinta)
// *_reffetti, // file delle righe effetti (per TDistinta)
// *_cessionari, // file dei cessionari (per TDistinta)
// *_part, // file delle partite (per far funzionare TPartita)
// *_scad, // file delle scadenze (per far funzionare TPartita)
// *_pags, // file dei pagamenti (per far funzionare TPartita)
// *_clifo, // file dei clienti
// *_doc, // file dei documenti
// *_pcon; // file piano dei conti
TBill _banca, // conto di contropartita della banca
_cliente, // conto di contropartita del cliente
_trandiffcam; // conto di transizione per differenze cambi
@ -191,7 +191,7 @@ bool TContabilizzazione_mask::on_field_event(TOperable_field& f, TField_event e,
const TDate data = f.get();
TEsercizi_contabili esc;
if (esc.date2esc(data) <= 0)
return error_box("La data deve appartenere ad un esercizio valido");
return error_box(TR("La data deve appartenere ad un esercizio valido"));
}
break;
case F_RESET:
@ -335,7 +335,7 @@ void TContabilizzazione_effetti_app::on_config_change()
_sc_enabled = conf.get_bool("GesSal","cg");
if (!has_module(CGAUT) && _sc_enabled)
{
error_box("Impossibile contabilizzare gli effetti se il modulo Contabilita' Generale non e' abilitato");
error_box(TR("Impossibile contabilizzare gli effetti se il modulo Contabilita' Generale non e' abilitato"));
stop_run();
}
}
@ -351,12 +351,10 @@ bool TContabilizzazione_effetti_app::create()
_error = no_error;
_can_write = TRUE;
_msk = new TContabilizzazione_mask();
_clifo = new TLocalisamfile(LF_CLIFO);
_doc = new TLocalisamfile(LF_DOC);
_distinta = new TDistinta;
_movimento = new TMovimentoPN;
_dist_sheet = new TArray_sheet(-1, -1, -4, -4, "Selezione distinte",
"@1|Tipo|Numero distinta@R|Numero effetti@R|ABI@5|CAB@5|Valuta|C/F|Data Dist.");
_dist_sheet = new TArray_sheet(-1, -1, -4, -4, TR("Selezione distinte"),
HR("@1|Tipo|Numero distinta@R|Numero effetti@R|ABI@5|CAB@5|Valuta|C/F|Data Dist."));
_part_array = new TPartite_array;
return TSkeleton_application::create();
}
@ -364,8 +362,6 @@ bool TContabilizzazione_effetti_app::create()
bool TContabilizzazione_effetti_app::destroy()
{
if (_msk) delete _msk;
if (_clifo)delete _clifo;
if (_doc)delete _doc;
if (_caus) delete _caus;
if (_distinta) delete _distinta;
if (_movimento) delete _movimento;
@ -402,7 +398,7 @@ void TContabilizzazione_effetti_app::main_loop()
{
if (!_dist_sheet->one_checked())
{
error_box("Nessuna distinta selezionata");
error_box(TR("Nessuna distinta selezionata"));
continue;
}
_data_op = _msk->get_date(F_DATA_OP);
@ -432,23 +428,23 @@ void TContabilizzazione_effetti_app::display_error()
switch (_error)
{
case clifo_error:
msg.format("Non e' possibile reperire il cliente/fornitore relativamente alla distinta %c %ld. "
"Controllare la riga %d",_distinta->tipodist(), _distinta->ndist(),_cur_dist_row+1);
msg.format(FR("Non e' possibile reperire il cliente/fornitore relativamente alla distinta %c %ld. "
"Controllare la riga %d"),_distinta->tipodist(), _distinta->ndist(),_cur_dist_row+1);
break;
case bank_error:
msg.format("Non e' possibile reperire i conti di contropartita per la banca di presentazione "
"relativamente alla distinta %c %ld. Controllare la tabella e la causale.",_distinta->tipodist(), _distinta->ndist());
msg.format(FR("Non e' possibile reperire i conti di contropartita per la banca di presentazione "
"relativamente alla distinta %c %ld. Controllare la tabella e la causale."),_distinta->tipodist(), _distinta->ndist());
break;
case cau_abb_error:
msg.format("Non e' possibile reperire i conti per gli abbuoni\n"
"o le differenze cambi dalla causale '%s'", _caus->codice());
msg.format(FR("Non e' possibile reperire i conti per gli abbuoni\n"
"o le differenze cambi dalla causale '%s'"), _caus->codice());
break;
case cau_spe_error:
msg.format("Non e' possibile reperire il conto per le spese\n"
"dalla causale '%s'", _caus->codice());
msg.format(FR("Non e' possibile reperire il conto per le spese\n"
"dalla causale '%s'"), _caus->codice());
break;
case datadoc_error:
msg.format("La data distinta %s non appartiene ad un esercizio valido",
msg.format(FR("La data distinta %s non appartiene ad un esercizio valido"),
(const char*)_distinta->data_dist().string());
break;
@ -477,20 +473,20 @@ bool TContabilizzazione_effetti_app::add_cg_row(const TEffetto& eff, const TRect
if (_cliente.tipo() == 'F')
{
if (imp >= ZERO)
desc = "Pag. ft.";
desc = TR("Pag. ft.");
else
desc = "Nota cr.";
desc = TR("Nota cr.");
}
else
{
if (imp >= ZERO)
desc = "Inc. ft.";
desc = TR("Inc. ft.");
else
desc = "Nota cr.";
desc = TR("Nota cr.");
}
desc << ' ' << reff.get(REFF_NFATT);
if (_cliente.tipo() == 'C')
desc << " sc. " << eff.get(EFF_DATASCAD);
desc << TR(" sc. ") << eff.get(EFF_DATASCAD);
c_rec->put(RMV_DESCR, desc);
if (add_desc)
{
@ -683,11 +679,16 @@ void TContabilizzazione_effetti_app::join_rows(TArray& customers, TAssoc_array&
error_type TContabilizzazione_effetti_app::search_clifo_bill(char tipo, const long codcf)
{
_error = no_error;
_clifo->put(CLI_TIPOCF, tipo);
_clifo->put(CLI_CODCF,codcf);
_cliente.set(0,0,0);
if (_clifo->read() == NOERR)
_cliente.set(_clifo->get_int(CLI_GRUPPO),_clifo->get_int(CLI_CONTO),codcf, tipo);
TString16 key;
key.format("%c|%ld", tipo, codcf);
const TRectype & clifo = cache().get(LF_CLIFO, key);
if (clifo.empty())
_cliente.set(0,0,0);
else
_cliente.set(clifo.get_int(CLI_GRUPPO), clifo.get_int(CLI_CONTO), codcf, tipo);
if (!_cliente.ok()) // se non e' valido, reperiscilo dalla riga #1 della causale
{
_caus->bill(1,_cliente); // conto della riga 1
@ -804,8 +805,8 @@ void TContabilizzazione_effetti_app::compile_head_mov()
TEsercizi_contabili esc;
if (esc.date2esc(datadist) <= 0)
{
if (!yesno_box("Attenzione: la data distinta %s non appartiene ad un esercizio valido:\n"
"Si desidera proseguire ugualmente?", (const char*)datadist.string()))
if (!yesno_box(FR("Attenzione: la data distinta %s non appartiene ad un esercizio valido:\n"
"Si desidera proseguire ugualmente?"), (const char*)datadist.string()))
{
_can_write = FALSE;
return;
@ -817,18 +818,18 @@ void TContabilizzazione_effetti_app::compile_head_mov()
des << ' ';
switch (_distinta->tipopag())
{
case 1: des << "rimessa diretta"; break;
case 2: des << "tratta"; break;
case 3: des << "ricevuta bancaria"; break;
case 4: des << "cessione"; break;
case 5: des << "paghero'"; break;
case 6: des << "lettera di credito"; break;
case 7: des << "tratta accettata"; break;
case 8: des << "rapp. interb. dir."; break;
case 9: des << "bonifico"; break;
case 1: des << TR("rimessa diretta"); break;
case 2: des << TR("tratta"); break;
case 3: des << TR("ricevuta bancaria"); break;
case 4: des << TR("cessione"); break;
case 5: des << TR("paghero'"); break;
case 6: des << TR("lettera di credito"); break;
case 7: des << TR("tratta accettata"); break;
case 8: des << TR("rapp. interb. dir."); break;
case 9: des << TR("bonifico"); break;
default: des.rtrim(); break;
}
des << " n." << ndist;
des << TR(" n.") << ndist;
mov.zero();
mov.put(MOV_DESCR,des);
@ -881,10 +882,6 @@ void TContabilizzazione_effetti_app::compile_riga_partita(TRiga_partite& riga, c
riga.put(PART_SEZ,sezione());
const real imp = riga_effetto.get(REFF_IMPORTO);
const real imp_val = riga_effetto.get(REFF_IMPORTOVAL);
/* Non scrivo qui gli importi: li sommo quando faccio i pagamenti
riga.put(PART_IMPORTO,imp);
riga.put(PART_IMPORTOVAL,imp_val);
*/
riga.put(PART_CODVAL,effetto.get(EFF_CODVAL));
riga.put(PART_DATACAM,effetto.get_date(EFF_DATACAMBIO));
real cambio = effetto.get(EFF_CAMBIO);
@ -930,12 +927,18 @@ void TContabilizzazione_effetti_app::compile_riga_pagamento(TRectype& riga_pagam
riga_pagamento.put(PAGSCA_CODABIPR, effetto.get(EFF_CODABIP));
riga_pagamento.put(PAGSCA_CODCABPR, effetto.get(EFF_CODCABP));
// Cerca l'eventuale codice agente sul documento
_doc->put(DOC_PROVV,riga_effetto.get(REFF_PROVV));
_doc->put(DOC_ANNO,riga_effetto.get(REFF_ANNODOC));
_doc->put(DOC_CODNUM,riga_effetto.get(REFF_CODNUM));
_doc->put(DOC_NDOC,riga_effetto.get(REFF_NFATT));
if (_doc->read() == NOERR)
riga_pagamento.put(PAGSCA_CODAG,_doc->get(DOC_CODAG));
TString key(30);
key << riga_effetto.get(REFF_PROVV) << "|";
key << riga_effetto.get(REFF_ANNODOC) << "|";
key << riga_effetto.get(REFF_CODNUM) << "|";
key << riga_effetto.get(REFF_NFATT);
const TRectype & doc = cache().get(LF_DOC, key);
if (!doc.empty())
riga_pagamento.put(PAGSCA_CODAG, doc.get(DOC_CODAG));
}
void TContabilizzazione_effetti_app::compile_saldac(const TEffetto& eff,
@ -1016,16 +1019,7 @@ void TContabilizzazione_effetti_app::compile_saldac(const TEffetto& eff,
{
acc_sal = reff.get_char(REFF_ACCSAL);
if (acc_sal != 'S' && acc_sal != 'A')
{
/*
TRiga_scadenze& riga_scadenza = partita->rata(nriga,nrata);
TImporto residuo_scadenza(riga_scadenza.residuo(FALSE));
if (residuo_scadenza.valore() <= reff.get_real(REFF_IMPORTO))
acc_sal = 'S';
else
*/
acc_sal = 'A'; // Potrebbe succedere che il ACCSAL sia vuoto
}
acc_sal = 'A'; // Potrebbe succedere che il ACCSAL sia vuoto
}
else
{
@ -1088,7 +1082,7 @@ void TContabilizzazione_effetti_app::compile_saldac(const TEffetto& eff,
TBill zio; _caus->bill(13, zio);
zio.put(*row);
TString80 str; str << "ft. " << nfatt;
TString80 str; str << TR("ft. ") << nfatt;
row->put(RMV_DESCR, str);
}
@ -1150,7 +1144,7 @@ error_type TContabilizzazione_effetti_app::write_all(bool change_status)
head.put(MOV_NUMREG,++numreg);
if (_movimento->status() != NOERR)
{
error_box("E' stato rilevato l'errore %d scrivendo il movimento %ld.",_movimento->status(),numreg);
error_box(FR("E' stato rilevato l'errore %d scrivendo il movimento %ld."),_movimento->status(),numreg);
_error = generic_error;
}
@ -1191,7 +1185,7 @@ error_type TContabilizzazione_effetti_app::write_all(bool change_status)
int err = distinta.rewrite();
if (err != NOERR)
{
error_box("E' stato rilevato l'errore %d aggiornando lo stato della distinta %c %ld.",err,distinta.tipodist(),distinta.ndist());
error_box(FR("E' stato rilevato l'errore %d aggiornando lo stato della distinta %c %ld."),err,distinta.tipodist(),distinta.ndist());
_error = generic_error;
}
}
@ -1316,7 +1310,7 @@ void TContabilizzazione_effetti_app::contabilize_bill(const char tipo, const lon
if (!_caus->ok())
{
_error = generic_error;
error_box("Causale '%s' non valida o non presente in parametri effetti", cc);
error_box(FR("Causale '%s' non valida o non presente in parametri effetti"), cc);
return;
}
@ -1461,7 +1455,7 @@ void TContabilizzazione_effetti_app::contabilize()
_total_bills = 0;
const long cur_items = _dist_sheet->items(); // Quante distinte in totale ?
TProgind p(cur_items, "Contabilizzazione effetti", FALSE, TRUE);
TProgind p(cur_items, TR("Contabilizzazione effetti"), FALSE, TRUE);
for (long j = 0; j < cur_items; j++)
{
p.setstatus(j+1);
@ -1476,12 +1470,12 @@ void TContabilizzazione_effetti_app::contabilize()
}
}
if (_total_bills > 0)
message_box("Totale effetti contabilizzati: %ld",_total_bills);
message_box(FR("Totale effetti contabilizzati: %ld"),_total_bills);
}
int ef0800 (int argc, char* argv[])
{
TContabilizzazione_effetti_app a;
a.run(argc,argv,"Contabilizzazione effetti");
a.run(argc,argv,TR("Contabilizzazione effetti"));
return TRUE;
}

View File

@ -34,6 +34,6 @@ int ef0900(int argc, char* argv[])
{
TConf_effetti app;
app.run(argc, argv, "Parametri gestione effetti");
app.run(argc, argv, TR("Parametri gestione effetti"));
return 0;
}

View File

@ -143,7 +143,7 @@ bool TPE_mask::fill_rate()
TRectype& partita = partite.curr();
TProgind pi(items, "Caricamento partite aperte", FALSE, TRUE);
TProgind pi(items, TR("Caricamento partite aperte"), FALSE, TRUE);
if (items > 900) items = 900;
partite.freeze();
@ -442,7 +442,7 @@ bool TPE_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
TLocalisamfile eff(LF_EFFETTI); eff.setkey(4);
TRectype& curr = eff.curr();
curr.put(EFF_TIPODIST, get(F_TIPODIST));
curr.put(EFF_NDIST, 9999999L);
curr.put(EFF_NDIST, 99999L);
const int err = eff.read(_isgreat);
long n = 1L;
if (err != _isemptyfile)
@ -468,8 +468,8 @@ bool TPE_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
{
const TRectype& rec = cur.curr();
if (rec.get_bool(EFF_EFFCONT))
return error_box("La distinta %s e' gia' stata contabilizzata,\n"
"per cui non e' possibile modificarla", (const char*)ef.get());
return error_box(FR("La distinta %s e' gia' stata contabilizzata,\n"
"per cui non e' possibile modificarla"), (const char*)ef.get());
}
}
enable(-3, !ok);
@ -488,7 +488,7 @@ bool TPE_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
}
}
else
return error_box("E' necessario specificare un numero di distinta");
return error_box(TR("E' necessario specificare un numero di distinta"));
}
break;
case F_CONTABILI:
@ -502,7 +502,7 @@ bool TPE_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
}
break;
case DLG_DELREC:
if (e == fe_button && yesno_box("Confermate l'eliminazione della distinta %ld",
if (e == fe_button && yesno_box(FR("Confermate l'eliminazione della distinta %ld"),
get_long(F_DIST)))
{
TSheet_field& sheet = sfield(F_SHEET);
@ -582,6 +582,6 @@ void TPagamento_effetti::print()
int ef0A00(int argc, char* argv[])
{
TPagamento_effetti pe;
pe.run(argc, argv, "Distinte Pagamento");
pe.run(argc, argv, TR("Distinte Pagamento"));
return 0;
}

View File

@ -66,8 +66,8 @@ LINK32=link.exe
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "..\debug"
# PROP Intermediate_Dir "..\debug"
# PROP Output_Dir "..\debug\ce"
# PROP Intermediate_Dir "..\debug\ce"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
@ -133,7 +133,7 @@ SOURCE=..\ce\ce0400a.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce0400a.uml
InputName=ce0400a
@ -145,7 +145,7 @@ InputName=ce0400a
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce0400a.uml
InputName=ce0400a
@ -164,7 +164,7 @@ SOURCE=..\ce\ce0400b.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce0400b.uml
InputName=ce0400b
@ -176,7 +176,7 @@ InputName=ce0400b
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce0400b.uml
InputName=ce0400b
@ -195,7 +195,7 @@ SOURCE=..\ce\ce0500a.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce0500a.uml
InputName=ce0500a
@ -207,7 +207,7 @@ InputName=ce0500a
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce0500a.uml
InputName=ce0500a
@ -226,7 +226,7 @@ SOURCE=..\ce\ce0500b.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce0500b.uml
InputName=ce0500b
@ -238,7 +238,7 @@ InputName=ce0500b
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce0500b.uml
InputName=ce0500b
@ -257,7 +257,7 @@ SOURCE=..\ce\ce0900a.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce0900a.uml
InputName=ce0900a
@ -269,7 +269,7 @@ InputName=ce0900a
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce0900a.uml
InputName=ce0900a
@ -288,7 +288,7 @@ SOURCE=..\ce\cestcac.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestcac.uml
InputName=cestcac
@ -300,7 +300,7 @@ InputName=cestcac
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestcac.uml
InputName=cestcac
@ -319,7 +319,7 @@ SOURCE=..\ce\cestcat.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestcat.uml
InputName=cestcat
@ -331,7 +331,7 @@ InputName=cestcat
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestcat.uml
InputName=cestcat
@ -350,7 +350,7 @@ SOURCE=..\ce\cestccb.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestccb.uml
InputName=cestccb
@ -362,7 +362,7 @@ InputName=cestccb
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestccb.uml
InputName=cestccb
@ -381,7 +381,7 @@ SOURCE=..\ce\cestcce.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestcce.uml
InputName=cestcce
@ -393,7 +393,7 @@ InputName=cestcce
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestcce.uml
InputName=cestcce
@ -412,7 +412,7 @@ SOURCE=..\ce\cestcgr.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestcgr.uml
InputName=cestcgr
@ -424,7 +424,7 @@ InputName=cestcgr
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestcgr.uml
InputName=cestcgr
@ -443,7 +443,7 @@ SOURCE=..\ce\cestcim.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestcim.uml
InputName=cestcim
@ -455,7 +455,7 @@ InputName=cestcim
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestcim.uml
InputName=cestcim
@ -474,7 +474,7 @@ SOURCE=..\ce\cestclm.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestclm.uml
InputName=cestclm
@ -486,7 +486,7 @@ InputName=cestclm
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestclm.uml
InputName=cestclm
@ -505,7 +505,7 @@ SOURCE=..\ce\cestloc.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cestloc.uml
InputName=cestloc
@ -517,7 +517,7 @@ InputName=cestloc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cestloc.uml
InputName=cestloc
@ -536,7 +536,7 @@ SOURCE=..\ce\cesttmc.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cesttmc.uml
InputName=cesttmc
@ -548,7 +548,7 @@ InputName=cesttmc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cesttmc.uml
InputName=cesttmc
@ -567,7 +567,7 @@ SOURCE=..\ce\cetbcac.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcac.uml
InputName=cetbcac
@ -579,7 +579,7 @@ InputName=cetbcac
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcac.uml
InputName=cetbcac
@ -598,7 +598,7 @@ SOURCE=..\ce\cetbcat.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcat.uml
InputName=cetbcat
@ -610,7 +610,7 @@ InputName=cetbcat
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcat.uml
InputName=cetbcat
@ -629,7 +629,7 @@ SOURCE=..\ce\cetbccb.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbccb.uml
InputName=cetbccb
@ -641,7 +641,7 @@ InputName=cetbccb
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbccb.uml
InputName=cetbccb
@ -660,7 +660,7 @@ SOURCE=..\ce\cetbcce.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcce.uml
InputName=cetbcce
@ -672,7 +672,7 @@ InputName=cetbcce
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcce.uml
InputName=cetbcce
@ -691,7 +691,7 @@ SOURCE=..\ce\cetbcgr.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcgr.uml
InputName=cetbcgr
@ -703,7 +703,7 @@ InputName=cetbcgr
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcgr.uml
InputName=cetbcgr
@ -722,7 +722,7 @@ SOURCE=..\ce\cetbcim.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcim.uml
InputName=cetbcim
@ -734,7 +734,7 @@ InputName=cetbcim
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcim.uml
InputName=cetbcim
@ -753,7 +753,7 @@ SOURCE=..\ce\cetbclm.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbclm.uml
InputName=cetbclm
@ -765,7 +765,7 @@ InputName=cetbclm
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbclm.uml
InputName=cetbclm
@ -784,7 +784,7 @@ SOURCE=..\ce\cetbloc.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbloc.uml
InputName=cetbloc
@ -796,7 +796,7 @@ InputName=cetbloc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbloc.uml
InputName=cetbloc
@ -815,7 +815,7 @@ SOURCE=..\ce\cetbtmc.uml
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbtmc.uml
InputName=cetbtmc
@ -827,7 +827,7 @@ InputName=cetbtmc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbtmc.uml
InputName=cetbtmc
@ -854,7 +854,7 @@ SOURCE=..\ce\cetbcac.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcac.rpt
InputName=cetbcac
@ -866,7 +866,7 @@ InputName=cetbcac
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcac.rpt
InputName=cetbcac
@ -885,7 +885,7 @@ SOURCE=..\ce\cetbcat.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcat.rpt
InputName=cetbcat
@ -897,7 +897,7 @@ InputName=cetbcat
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcat.rpt
InputName=cetbcat
@ -916,7 +916,7 @@ SOURCE=..\ce\cetbccb.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbccb.rpt
InputName=cetbccb
@ -928,7 +928,7 @@ InputName=cetbccb
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbccb.rpt
InputName=cetbccb
@ -947,7 +947,7 @@ SOURCE=..\ce\cetbcce.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcce.rpt
InputName=cetbcce
@ -959,7 +959,7 @@ InputName=cetbcce
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcce.rpt
InputName=cetbcce
@ -978,7 +978,7 @@ SOURCE=..\ce\cetbcgr.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcgr.rpt
InputName=cetbcgr
@ -990,7 +990,7 @@ InputName=cetbcgr
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcgr.rpt
InputName=cetbcgr
@ -1009,7 +1009,7 @@ SOURCE=..\ce\cetbcim.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbcim.rpt
InputName=cetbcim
@ -1021,7 +1021,7 @@ InputName=cetbcim
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbcim.rpt
InputName=cetbcim
@ -1040,7 +1040,7 @@ SOURCE=..\ce\cetbclm.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbclm.rpt
InputName=cetbclm
@ -1052,7 +1052,7 @@ InputName=cetbclm
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbclm.rpt
InputName=cetbclm
@ -1071,7 +1071,7 @@ SOURCE=..\ce\cetbloc.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbloc.rpt
InputName=cetbloc
@ -1083,7 +1083,7 @@ InputName=cetbloc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbloc.rpt
InputName=cetbloc
@ -1102,7 +1102,7 @@ SOURCE=..\ce\cetbtmc.rpt
!IF "$(CFG)" == "ce0 - Win32 Release"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\cetbtmc.rpt
InputName=cetbtmc
@ -1114,7 +1114,7 @@ InputName=cetbtmc
!ELSEIF "$(CFG)" == "ce0 - Win32 Debug"
# Begin Custom Build - Compiling rpt $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\cetbtmc.rpt
InputName=cetbtmc

View File

@ -66,8 +66,8 @@ LINK32=link.exe
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "..\debug"
# PROP Intermediate_Dir "..\debug"
# PROP Output_Dir "..\debug\ce"
# PROP Intermediate_Dir "..\debug\ce"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
@ -141,7 +141,7 @@ SOURCE=..\ce\ce1101a.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1101a.uml
InputName=ce1101a
@ -153,7 +153,7 @@ InputName=ce1101a
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1101a.uml
InputName=ce1101a
@ -172,7 +172,7 @@ SOURCE=..\ce\ce1101b.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1101b.uml
InputName=ce1101b
@ -184,7 +184,7 @@ InputName=ce1101b
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1101b.uml
InputName=ce1101b
@ -203,7 +203,7 @@ SOURCE=..\ce\ce1201a.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1201a.uml
InputName=ce1201a
@ -215,7 +215,7 @@ InputName=ce1201a
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1201a.uml
InputName=ce1201a
@ -234,7 +234,7 @@ SOURCE=..\ce\ce1201b.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1201b.uml
InputName=ce1201b
@ -246,7 +246,7 @@ InputName=ce1201b
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1201b.uml
InputName=ce1201b
@ -265,7 +265,7 @@ SOURCE=..\ce\ce1301a.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1301a.uml
InputName=ce1301a
@ -277,7 +277,7 @@ InputName=ce1301a
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1301a.uml
InputName=ce1301a
@ -296,7 +296,7 @@ SOURCE=..\ce\ce1301b.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1301b.uml
InputName=ce1301b
@ -308,7 +308,7 @@ InputName=ce1301b
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1301b.uml
InputName=ce1301b
@ -327,7 +327,7 @@ SOURCE=..\ce\ce1301c.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1301c.uml
InputName=ce1301c
@ -339,7 +339,7 @@ InputName=ce1301c
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1301c.uml
InputName=ce1301c
@ -358,7 +358,7 @@ SOURCE=..\ce\ce1301d.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1301d.uml
InputName=ce1301d
@ -370,7 +370,7 @@ InputName=ce1301d
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1301d.uml
InputName=ce1301d
@ -389,7 +389,7 @@ SOURCE=..\ce\ce1400a.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1400a.uml
InputName=ce1400a
@ -401,7 +401,7 @@ InputName=ce1400a
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1400a.uml
InputName=ce1400a
@ -420,7 +420,7 @@ SOURCE=..\ce\ce1400b.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1400b.uml
InputName=ce1400b
@ -432,7 +432,7 @@ InputName=ce1400b
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1400b.uml
InputName=ce1400b
@ -451,7 +451,7 @@ SOURCE=..\ce\ce1400c.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1400c.uml
InputName=ce1400c
@ -463,7 +463,7 @@ InputName=ce1400c
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1400c.uml
InputName=ce1400c
@ -482,7 +482,7 @@ SOURCE=..\ce\ce1400d.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1400d.uml
InputName=ce1400d
@ -494,7 +494,7 @@ InputName=ce1400d
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1400d.uml
InputName=ce1400d
@ -513,7 +513,7 @@ SOURCE=..\ce\ce1500a.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1500a.uml
InputName=ce1500a
@ -525,7 +525,7 @@ InputName=ce1500a
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1500a.uml
InputName=ce1500a
@ -544,7 +544,7 @@ SOURCE=..\ce\ce1500b.uml
!IF "$(CFG)" == "ce1 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce1500b.uml
InputName=ce1500b
@ -556,7 +556,7 @@ InputName=ce1500b
!ELSEIF "$(CFG)" == "ce1 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce1500b.uml
InputName=ce1500b

View File

@ -66,8 +66,8 @@ LINK32=link.exe
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "..\debug"
# PROP Intermediate_Dir "..\debug"
# PROP Output_Dir "..\debug\ce"
# PROP Intermediate_Dir "..\debug\ce"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
@ -141,7 +141,7 @@ SOURCE=..\ce\ce2100a.uml
!IF "$(CFG)" == "ce2 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce2100a.uml
InputName=ce2100a
@ -153,7 +153,7 @@ InputName=ce2100a
!ELSEIF "$(CFG)" == "ce2 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce2100a.uml
InputName=ce2100a
@ -172,7 +172,7 @@ SOURCE=..\ce\ce2200a.uml
!IF "$(CFG)" == "ce2 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce2200a.uml
InputName=ce2200a
@ -184,7 +184,7 @@ InputName=ce2200a
!ELSEIF "$(CFG)" == "ce2 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce2200a.uml
InputName=ce2200a
@ -203,7 +203,7 @@ SOURCE=..\ce\ce2300a.uml
!IF "$(CFG)" == "ce2 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce2300a.uml
InputName=ce2300a
@ -215,7 +215,7 @@ InputName=ce2300a
!ELSEIF "$(CFG)" == "ce2 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce2300a.uml
InputName=ce2300a
@ -234,7 +234,7 @@ SOURCE=..\ce\ce2500a.uml
!IF "$(CFG)" == "ce2 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce2500a.uml
InputName=ce2500a
@ -246,7 +246,7 @@ InputName=ce2500a
!ELSEIF "$(CFG)" == "ce2 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce2500a.uml
InputName=ce2500a

View File

@ -66,8 +66,8 @@ LINK32=link.exe
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "..\debug"
# PROP Intermediate_Dir "..\debug"
# PROP Output_Dir "..\debug\ce"
# PROP Intermediate_Dir "..\debug\ce"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
@ -153,7 +153,7 @@ SOURCE=..\ce\ce3100a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3100a.uml
InputName=ce3100a
@ -165,7 +165,7 @@ InputName=ce3100a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3100a.uml
InputName=ce3100a
@ -184,7 +184,7 @@ SOURCE=..\ce\ce3200a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3200a.uml
InputName=ce3200a
@ -196,7 +196,7 @@ InputName=ce3200a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3200a.uml
InputName=ce3200a
@ -215,7 +215,7 @@ SOURCE=..\ce\ce3300a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3300a.uml
InputName=ce3300a
@ -227,7 +227,7 @@ InputName=ce3300a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3300a.uml
InputName=ce3300a
@ -246,7 +246,7 @@ SOURCE=..\ce\ce3400a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3400a.uml
InputName=ce3400a
@ -258,7 +258,7 @@ InputName=ce3400a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3400a.uml
InputName=ce3400a
@ -277,7 +277,7 @@ SOURCE=..\ce\ce3500a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3500a.uml
InputName=ce3500a
@ -289,7 +289,7 @@ InputName=ce3500a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3500a.uml
InputName=ce3500a
@ -308,7 +308,7 @@ SOURCE=..\ce\ce3600a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3600a.uml
InputName=ce3600a
@ -320,7 +320,7 @@ InputName=ce3600a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3600a.uml
InputName=ce3600a
@ -339,7 +339,7 @@ SOURCE=..\ce\ce3700a.uml
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3700a.uml
InputName=ce3700a
@ -351,7 +351,7 @@ InputName=ce3700a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3700a.uml
InputName=ce3700a
@ -378,7 +378,7 @@ SOURCE=..\ce\ce3100a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3100a.frm
InputName=ce3100a
@ -390,7 +390,7 @@ InputName=ce3100a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3100a.frm
InputName=ce3100a
@ -409,7 +409,7 @@ SOURCE=..\ce\ce3200a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3200a.frm
InputName=ce3200a
@ -421,7 +421,7 @@ InputName=ce3200a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3200a.frm
InputName=ce3200a
@ -440,7 +440,7 @@ SOURCE=..\ce\ce3300a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3300a.frm
InputName=ce3300a
@ -452,7 +452,7 @@ InputName=ce3300a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3300a.frm
InputName=ce3300a
@ -471,7 +471,7 @@ SOURCE=..\ce\ce3400a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3400a.frm
InputName=ce3400a
@ -483,7 +483,7 @@ InputName=ce3400a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3400a.frm
InputName=ce3400a
@ -502,7 +502,7 @@ SOURCE=..\ce\ce3500a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3500a.frm
InputName=ce3500a
@ -514,7 +514,7 @@ InputName=ce3500a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3500a.frm
InputName=ce3500a
@ -533,7 +533,7 @@ SOURCE=..\ce\ce3500b.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3500b.frm
InputName=ce3500b
@ -545,7 +545,7 @@ InputName=ce3500b
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3500b.frm
InputName=ce3500b
@ -564,7 +564,7 @@ SOURCE=..\ce\ce3600a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3600a.frm
InputName=ce3600a
@ -576,7 +576,7 @@ InputName=ce3600a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3600a.frm
InputName=ce3600a
@ -595,7 +595,7 @@ SOURCE=..\ce\ce3700a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3700a.frm
InputName=ce3700a
@ -607,7 +607,7 @@ InputName=ce3700a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3700a.frm
InputName=ce3700a
@ -626,7 +626,7 @@ SOURCE=..\ce\ce3800a.frm
!IF "$(CFG)" == "ce3 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ce\ce3800a.frm
InputName=ce3800a
@ -638,7 +638,7 @@ InputName=ce3800a
!ELSEIF "$(CFG)" == "ce3 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ce\ce3800a.frm
InputName=ce3800a

63
projects/ef.dsp Executable file
View File

@ -0,0 +1,63 @@
# Microsoft Developer Studio Project File - Name="ef" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Generic Project" 0x010a
CFG=ef - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "ef.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "ef.mak" CFG="ef - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "ef - Win32 Release" (based on "Win32 (x86) Generic Project")
!MESSAGE "ef - Win32 Debug" (based on "Win32 (x86) Generic Project")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
MTL=midl.exe
!IF "$(CFG)" == "ef - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
!ELSEIF "$(CFG)" == "ef - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "ef___Win32_Debug"
# PROP BASE Intermediate_Dir "ef___Win32_Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "ef___Win32_Debug"
# PROP Intermediate_Dir "ef___Win32_Debug"
# PROP Target_Dir ""
!ENDIF
# Begin Target
# Name "ef - Win32 Release"
# Name "ef - Win32 Debug"
# End Target
# End Project

View File

@ -3,7 +3,7 @@ Microsoft Developer Studio Workspace File, Format Version 6.00
###############################################################################
Project: "ef0"=.\Ef0.dsp - Package Owner=<4>
Project: "AgaLib"=.\agalib.dsp - Package Owner=<4>
Package=<5>
{{{
@ -15,3 +15,45 @@ Package=<4>
###############################################################################
Project: "ef"=.\ef.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name ef0
End Project Dependency
}}}
###############################################################################
Project: "ef0"=.\Ef0.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name AgaLib
End Project Dependency
}}}
###############################################################################
Global:
Package=<5>
{{{
}}}
Package=<3>
{{{
}}}
###############################################################################

View File

@ -66,12 +66,12 @@ LINK32=link.exe
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "..\debug"
# PROP Intermediate_Dir "..\debug"
# PROP Output_Dir "..\debug\ef"
# PROP Intermediate_Dir "..\debug\ef"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
# ADD CPP /nologo /MTd /W3 /Gm /Zi /Od /I "..\include" /I "..\xvaga" /I "..\xi" /D "_DEBUG" /D "WIN32" /D "DBG" /D "_WINDOWS" /D "XI_R4" /FR /FD /c
# ADD CPP /nologo /MTd /W3 /Gm /ZI /Od /I "..\include" /I "..\xvaga" /I "..\xi" /D "_DEBUG" /D "WIN32" /D "DBG" /D "_WINDOWS" /D "XI_R4" /FR /FD /c
# SUBTRACT CPP /YX
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
@ -265,7 +265,7 @@ SOURCE=..\ef\bastbnp.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\bastbnp.uml
InputName=bastbnp
@ -277,7 +277,7 @@ InputName=bastbnp
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\bastbnp.uml
InputName=bastbnp
@ -296,7 +296,7 @@ SOURCE=..\ef\batbbnp.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\batbbnp.uml
InputName=batbbnp
@ -308,7 +308,7 @@ InputName=batbbnp
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\batbbnp.uml
InputName=batbbnp
@ -327,7 +327,7 @@ SOURCE=..\ef\ef0100a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0100a.uml
InputName=ef0100a
@ -339,7 +339,7 @@ InputName=ef0100a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0100a.uml
InputName=ef0100a
@ -358,7 +358,7 @@ SOURCE=..\ef\ef0200a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0200a.uml
InputName=ef0200a
@ -370,7 +370,7 @@ InputName=ef0200a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0200a.uml
InputName=ef0200a
@ -389,7 +389,7 @@ SOURCE=..\ef\ef0300a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0300a.uml
InputName=ef0300a
@ -401,7 +401,7 @@ InputName=ef0300a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0300a.uml
InputName=ef0300a
@ -420,7 +420,7 @@ SOURCE=..\ef\ef0300c.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0300c.uml
InputName=ef0300c
@ -432,7 +432,7 @@ InputName=ef0300c
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0300c.uml
InputName=ef0300c
@ -451,7 +451,7 @@ SOURCE=..\ef\ef0400a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0400a.uml
InputName=ef0400a
@ -463,7 +463,7 @@ InputName=ef0400a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0400a.uml
InputName=ef0400a
@ -482,7 +482,7 @@ SOURCE=..\ef\ef0500a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0500a.uml
InputName=ef0500a
@ -494,7 +494,7 @@ InputName=ef0500a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0500a.uml
InputName=ef0500a
@ -513,7 +513,7 @@ SOURCE=..\ef\ef0600a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0600a.uml
InputName=ef0600a
@ -525,7 +525,7 @@ InputName=ef0600a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0600a.uml
InputName=ef0600a
@ -544,7 +544,7 @@ SOURCE=..\ef\ef0800a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0800a.uml
InputName=ef0800a
@ -556,7 +556,7 @@ InputName=ef0800a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0800a.uml
InputName=ef0800a
@ -575,7 +575,7 @@ SOURCE=..\ef\ef0900a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0900a.uml
InputName=ef0900a
@ -587,7 +587,7 @@ InputName=ef0900a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0900a.uml
InputName=ef0900a
@ -606,7 +606,7 @@ SOURCE=..\ef\ef0A00a.uml
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ef0A00a.uml
InputName=ef0A00a
@ -618,7 +618,7 @@ InputName=ef0A00a
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling mask $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ef0A00a.uml
InputName=ef0A00a
@ -649,7 +649,7 @@ SOURCE=..\ef\dse.frm
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\dse.frm
InputName=dse
@ -661,7 +661,7 @@ InputName=dse
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\dse.frm
InputName=dse
@ -680,7 +680,7 @@ SOURCE=..\ef\rb.frm
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\rb.frm
InputName=rb
@ -692,7 +692,7 @@ InputName=rb
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\rb.frm
InputName=rb
@ -711,7 +711,7 @@ SOURCE=..\ef\ribadett.frm
!IF "$(CFG)" == "ef0 - Win32 Release"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exe
TargetDir=\P.32\P_02_00\exe
InputPath=..\ef\ribadett.frm
InputName=ribadett
@ -723,7 +723,7 @@ InputName=ribadett
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# Begin Custom Build - Compiling form $(InputPath)...
TargetDir=\U\Luca\r020200.aga\exed
TargetDir=\P.32\P_02_00\exed
InputPath=..\ef\ribadett.frm
InputName=ribadett
@ -749,33 +749,6 @@ SOURCE=.\Ef0.rc
!ENDIF
# End Source File
# Begin Source File
SOURCE=..\Lib\AgaLib.lib
!IF "$(CFG)" == "ef0 - Win32 Release"
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
# PROP Intermediate_Dir "..\lib\agalib.lib"
# PROP Exclude_From_Build 1
!ENDIF
# End Source File
# Begin Source File
SOURCE=..\Lib\AgaLibD.lib
!IF "$(CFG)" == "ef0 - Win32 Release"
# PROP Exclude_From_Build 1
!ELSEIF "$(CFG)" == "ef0 - Win32 Debug"
!ENDIF
# End Source File
# End Target
# End Project