Patch level : 12.0 nopatch

Files correlati     :
Commento        :

Aggiunta esportazione tsto e dbase alla barra delle stampe con relativi tasti di uscita
This commit is contained in:
Alessandro Bonazzi 2021-11-05 00:58:55 +01:00
parent 47fd81deea
commit 3dfcd20fe8
2 changed files with 35 additions and 4 deletions

View File

@ -2,6 +2,7 @@ BUTTON DLG_PRINT 2 2
BEGIN BEGIN
PROMPT 1 1 "Stampa" PROMPT 1 1 "Stampa"
PICTURE TOOL_PRINT PICTURE TOOL_PRINT
MESSAGE EXIT,K_PRINT
END END
#ifdef EXPORT #ifdef EXPORT
@ -9,22 +10,43 @@ BUTTON DLG_EXPORT 10 2
BEGIN BEGIN
PROMPT 2 1 "~Esporta" PROMPT 2 1 "~Esporta"
PICTURE TOOL_EXPORT PICTURE TOOL_EXPORT
MESSAGE EXIT,K_EXPORT
END END
#endif #endif
#ifdef EXPORT_EXCEL #ifdef EXPORT_EXCEL
BUTTON DLG_EXPORT_EXCEL 10 2 BUTTON DLG_EXPORT_EXCEL 10 2
BEGIN BEGIN
PROMPT 3 1 "~Esporta" PROMPT 3 1 "~Excel"
PICTURE TOOL_EXCEL PICTURE TOOL_EXCEL
MESSAGE EXIT,K_EXCEL
END END
#endif #endif
#ifdef EXPORT_PDF #ifdef EXPORT_PDF
BUTTON DLG_EXPORT_PDF 10 2 BUTTON DLG_EXPORT_PDF 10 2
BEGIN BEGIN
PROMPT 4 1 "~Esporta" PROMPT 4 1 "P~df"
PICTURE TOOL_PDF PICTURE TOOL_PDF
MESSAGE EXIT,K_PDF
END
#endif
#ifdef EXPORT_DBF
BUTTON DLG_EXPORT_DBF 10 2
BEGIN
PROMPT 6 1 "D~base"
PICTURE TOOL_EXPORT
MESSAGE EXIT, K_DBF
END
#endif
#ifdef EXPORT_TEXT
BUTTON DLG_EXPORT_TEXT 10 2
BEGIN
PROMPT 6 1 "~Testo"
PICTURE TOOL_EDIT
MESSAGE EXIT, K_TEXT
END END
#endif #endif
@ -38,6 +60,7 @@ BUTTON DLG_PREVIEW 2 2
BEGIN BEGIN
PROMPT 6 1 "~Anteprima" PROMPT 6 1 "~Anteprima"
PICTURE TOOL_PREVIEW PICTURE TOOL_PREVIEW
MESSAGE EXIT,K_VISUALIZE
END END
#include <helpbar.h> #include <helpbar.h>

View File

@ -23,5 +23,13 @@
#define K_NO 20000+'N' #define K_NO 20000+'N'
#define K_YES 20000+'Y' #define K_YES 20000+'Y'
#define K_PRINT 20080 // 20000+'P'
#define K_EXPORT 20069 // 20000+'E'
#define K_EXCEL 20088 // 20000+'X'
#define K_PDF 20070 // 20000+'F'
#define K_TEXT 20084 // 20000+'T'
#define K_DBF 20068 // 20000+'D'
#define K_VISUALIZE 20086 // 20000+'V'
/* @END */ /* @END */
#endif #endif