Patch level : 12.0 nopatch
Files correlati : Commento : Aggiornate le printbar per le repapp
This commit is contained in:
parent
6c50bcaaa0
commit
74ab2387d9
@ -5,46 +5,53 @@ BEGIN
|
|||||||
MESSAGE EXIT,K_PRINT
|
MESSAGE EXIT,K_PRINT
|
||||||
END
|
END
|
||||||
|
|
||||||
|
BUTTON DLG_PREVIEW 2 2
|
||||||
|
BEGIN
|
||||||
|
PROMPT 2 1 "~Anteprima"
|
||||||
|
PICTURE TOOL_PREVIEW
|
||||||
|
MESSAGE EXIT, K_VISUALIZE
|
||||||
|
END
|
||||||
|
|
||||||
#ifdef EXPORT
|
#ifdef EXPORT
|
||||||
BUTTON DLG_EXPORT 10 2
|
BUTTON DLG_EXPORT 10 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 2 1 "~Esporta"
|
PROMPT 3 1 "~Esporta"
|
||||||
PICTURE TOOL_EXPORT
|
PICTURE TOOL_EXPORT
|
||||||
MESSAGE EXIT,K_EXPORT
|
MESSAGE EXIT,K_EXPORT
|
||||||
END
|
END
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXPORT_EXCEL
|
#if defined(EXPORT_EXCEL) || defined(ALL_EXPORT)
|
||||||
BUTTON DLG_EXPORT_EXCEL 10 2
|
BUTTON DLG_EXPORT_EXCEL 10 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 3 1 "~Excel"
|
PROMPT 4 1 "~Excel"
|
||||||
PICTURE TOOL_EXCEL
|
PICTURE TOOL_EXCEL
|
||||||
MESSAGE EXIT,K_EXCEL
|
MESSAGE EXIT,K_EXCEL
|
||||||
END
|
END
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXPORT_PDF
|
#if defined(EXPORT_PDF) || defined(ALL_EXPORT)
|
||||||
BUTTON DLG_EXPORT_PDF 10 2
|
BUTTON DLG_EXPORT_PDF 10 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 4 1 "P~df"
|
PROMPT 5 1 "P~df"
|
||||||
PICTURE TOOL_PDF
|
PICTURE TOOL_PDF
|
||||||
MESSAGE EXIT,K_PDF
|
MESSAGE EXIT,K_PDF
|
||||||
END
|
END
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXPORT_DBF
|
#if defined(EXPORT_DBF) || defined(ALL_EXPORT)
|
||||||
BUTTON DLG_EXPORT_DBF 10 2
|
BUTTON DLG_EXPORT_DBF 10 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 6 1 "D~base"
|
PROMPT 7 1 "D~base"
|
||||||
PICTURE TOOL_EXPORT
|
PICTURE TOOL_EXPORT
|
||||||
MESSAGE EXIT, K_DBF
|
MESSAGE EXIT, K_DBF
|
||||||
END
|
END
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXPORT_TEXT
|
#if defined(EXPORT_TEXT) || defined(ALL_EXPORT)
|
||||||
BUTTON DLG_EXPORT_TEXT 10 2
|
BUTTON DLG_EXPORT_TEXT 10 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 6 1 "~Testo"
|
PROMPT 8 1 "~Testo"
|
||||||
PICTURE TOOL_EDIT
|
PICTURE TOOL_EDIT
|
||||||
MESSAGE EXIT, K_TEXT
|
MESSAGE EXIT, K_TEXT
|
||||||
END
|
END
|
||||||
@ -52,15 +59,8 @@ END
|
|||||||
|
|
||||||
BUTTON DLG_SETPRINT 2 2
|
BUTTON DLG_SETPRINT 2 2
|
||||||
BEGIN
|
BEGIN
|
||||||
PROMPT 5 1 "Imposta"
|
PROMPT 9 1 "Imposta"
|
||||||
PICTURE TOOL_SETPRINT
|
PICTURE TOOL_SETPRINT
|
||||||
END
|
END
|
||||||
|
|
||||||
BUTTON DLG_PREVIEW 2 2
|
|
||||||
BEGIN
|
|
||||||
PROMPT 6 1 "~Anteprima"
|
|
||||||
PICTURE TOOL_PREVIEW
|
|
||||||
MESSAGE EXIT,K_VISUALIZE
|
|
||||||
END
|
|
||||||
|
|
||||||
#include <helpbar.h>
|
#include <helpbar.h>
|
22
src/include/bprintbar.h
Normal file
22
src/include/bprintbar.h
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#if defined(EXPORT) || defined(EXPORT_EXCEL) || defined(EXPORT_PDF) || defined(EXPORT_DBF) || defined(EXPORT_TEXT) || defined(ALL_EXPORT)
|
||||||
|
STRING DLG_OUTPUT 255 64
|
||||||
|
BEGIN
|
||||||
|
PROMPT 1 -3 "Output "
|
||||||
|
DSELECT
|
||||||
|
END
|
||||||
|
#endif
|
||||||
|
|
||||||
|
STRING DLG_REPORT 256 66
|
||||||
|
BEGIN
|
||||||
|
PROMPT 1 -2 "Report "
|
||||||
|
FLAGS "B"
|
||||||
|
RSELECT CLASS_NAME
|
||||||
|
CHECKTYPE REQUIRED
|
||||||
|
WARNING "Impossibile trovare un report compatibile"
|
||||||
|
END
|
||||||
|
|
||||||
|
STRING DLG_PROFILE 50
|
||||||
|
BEGIN
|
||||||
|
PROMPT 1 -1 "Profilo "
|
||||||
|
PSELECT
|
||||||
|
END
|
Loading…
x
Reference in New Issue
Block a user