Compare commits

...

3 Commits

Author SHA1 Message Date
7e4de6d31b Patch level : 12.00 1362
Files correlati     : ba1.exe ba1800a.msk

Commento:
Aggiunta la possibilità di aggiornare campi al programma di importazione file di testo
2024-10-14 21:57:02 +02:00
edb83c9129 Merge branch 'R12.00.1244' of http://192.168.2.5:30000/root/campo-sirio into R12.00.1244 2024-10-14 21:55:53 +02:00
2c7c159ea1 Patch level : 12.00 136
Files correlati     : ba1.exe ba1800a.msk

Commento:
Aggiunta la possibilità di aggiornare campi al programma di importazione file di testo
2024-10-14 21:54:57 +02:00
6 changed files with 384 additions and 256 deletions

View File

@ -16,7 +16,7 @@ int main(int argc,char** argv)
case 4: ba1500(argc,argv); break; // Attivazione moduli
case 5: ba1600(argc,argv); break; // Creazione dischi e fascicolatore
case 6: ba1700(argc,argv); break; // Installazione moduli
case 7: ba1800(argc,argv); break; // Utility(?)
case 7: ba1800(argc,argv); break; // importazione file
case 8: ba1900(argc,argv); break; // Dizionario
default: ba1100(argc,argv); break; // Manutenzione
}

File diff suppressed because it is too large Load Diff

View File

@ -13,5 +13,6 @@
#define F_ZAP 210
#define F_SAVE 250
#define F_IMPORT 251
#define F_UPDATE 252
#define F_COLUMNIZER 300
#define F_FIELDS 301

View File

@ -1,21 +1,28 @@
#include "ba1800.h"
TOOLBAR "" 0 20 0 3
TOOLBAR "" 0 0 0 2
BUTTON F_SAVE 10 2
BEGIN
PROMPT -13 -11 "~Registra"
PROMPT -14 -11 "~Registra"
PICTURE TOOL_SAVEREC
END
BUTTON F_IMPORT 10 2
BEGIN
PROMPT -23 -11 "~Importa"
PROMPT -24 -11 "~Importa"
PICTURE TOOL_IMPORT
END
BUTTON F_UPDATE 10 2
BEGIN
PROMPT -34 -11 "~Aggiorna"
PICTURE BMP_LINK
END
BUTTON DLG_QUIT 10 2
BEGIN
PROMPT -33 -11 ""
PROMPT -44 -11 ""
END
ENDPAGE
@ -25,7 +32,7 @@ PAGE "Importazione" -1 -1 78 23
STRING F_FILE 50
BEGIN
PROMPT 1 1 "File da importare "
FLAGS "B"
FSELECT "*.*"
END
STRING F_INI 50

View File

@ -123,7 +123,8 @@ Item_09 = "Gestione dizionario", "ba2 -6", ""
Item_10 = "Query e Report", [MENU_014], "", 10217
Item_11 = "Firma digitale", "ba8 -6", ""
Item_12 = "Trasferimenti", "ba7 -0 -f", ""
Item_13 = "Teleassistenza", "setup/teamviewerqs.exe", "F", 10236
Item_13 = "Importazione file di testo", "ba1 -7", ""
Item_14 = "Teleassistenza", "setup/teamviewerqs.exe", "F", 10236
[MENU_016]
Caption = "Procedure speciali"

View File

@ -102,7 +102,9 @@ public:
void set_relation(TRelation * rel) ;
void add(const TTracciato_campo& tc, int pos = -1);//aggiunge tracciato campo all'array
void add(TTracciato_campo* tc, int pos = -1);//aggiunge tracciato campo all'array
TTracciato_campo& get(int n);//ritorna il tracciato campo n dell'array (se non c'e' lo crea)
TTracciato_campo& get(int n);//ritorna il tracciato campo n dell'array (se non c'e' lo crea)
// ritorna il numero di campi
const int nfields() const { return _tracciati_campo.items(); }
//ritorna il tracciato campo n dell'array
const TTracciato_campo& get(int n) const {return (TTracciato_campo&)_tracciati_campo[n];}
int get_pos(const char* name) const;