Files correlati : ve1.exe ve110b.msk ve1700.msk ve1800a.msk ve1900a.msk La lista Documenti avanzata non stampava in certe situazioni perche nel filtro andava un codice numerazione con i doppi apici all'inizio
66 lines
1.0 KiB
C
Executable File
66 lines
1.0 KiB
C
Executable File
BUTTON DLG_PRINT 2 2
|
|
BEGIN
|
|
PROMPT 1 1 "Stampa"
|
|
PICTURE TOOL_PRINT
|
|
MESSAGE EXIT,K_PRINT
|
|
END
|
|
|
|
BUTTON DLG_PREVIEW 2 2
|
|
BEGIN
|
|
PROMPT 2 1 "~Anteprima"
|
|
PICTURE TOOL_PREVIEW
|
|
MESSAGE EXIT,K_VISUALIZE
|
|
END
|
|
|
|
#ifdef EXPORT
|
|
BUTTON DLG_EXPORT 10 2
|
|
BEGIN
|
|
PROMPT 3 1 "~Esporta"
|
|
PICTURE TOOL_EXPORT
|
|
MESSAGE EXIT,K_EXPORT
|
|
END
|
|
#endif
|
|
|
|
#if defined(EXPORT_EXCEL) || defined(ALL_EXPORT)
|
|
BUTTON DLG_EXPORT_EXCEL 10 2
|
|
BEGIN
|
|
PROMPT 4 1 "~Excel"
|
|
PICTURE TOOL_EXCEL
|
|
MESSAGE EXIT,K_EXCEL
|
|
END
|
|
#endif
|
|
|
|
#if defined(EXPORT_PDF) || defined(ALL_EXPORT)
|
|
BUTTON DLG_EXPORT_PDF 10 2
|
|
BEGIN
|
|
PROMPT 5 1 "P~df"
|
|
PICTURE TOOL_PDF
|
|
MESSAGE EXIT,K_PDF
|
|
END
|
|
#endif
|
|
|
|
#if defined(EXPORT_DBF) || defined(ALL_EXPORT)
|
|
BUTTON DLG_EXPORT_DBF 10 2
|
|
BEGIN
|
|
PROMPT 7 1 "D~base"
|
|
PICTURE TOOL_EXPORT
|
|
MESSAGE EXIT,K_DBF
|
|
END
|
|
#endif
|
|
|
|
#if defined(EXPORT_TEXT) || defined(ALL_EXPORT)
|
|
BUTTON DLG_EXPORT_TEXT 10 2
|
|
BEGIN
|
|
PROMPT 8 1 "~Testo"
|
|
PICTURE TOOL_EDIT
|
|
MESSAGE EXIT,K_TEXT
|
|
END
|
|
#endif
|
|
|
|
BUTTON DLG_SETPRINT 2 2
|
|
BEGIN
|
|
PROMPT 9 1 "Imposta"
|
|
PICTURE TOOL_SETPRINT
|
|
END
|
|
|
|
#include <helpbar.h> |