Archivio soggetti: possibilita' di fare la ricerca parziale per cognome,

nome e data di nascita (con caratteri speciali * e ? in cognome e nome)
Patch level         :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@6307 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
cris 1998-03-05 16:08:49 +00:00
parent cdbe8d071b
commit 7055eba8dd
4 changed files with 46 additions and 0 deletions

@ -42,6 +42,8 @@
#define F_TELLAV 138
#define F_TELALT 139
#define F_RICPARZ 140
// pagina 2
#define F_CATNOND1 201
#define F_DESC_CATNOND1 202

@ -38,6 +38,11 @@ BEGIN
CHECKTYPE REQUIRED
END
BUTTON F_RICPARZ 23 1
BEGIN
PROMPT 46 1 "Ricerca parziale"
END
STRING F_COGNOME 25
BEGIN
PROMPT 2 2 "Cognome e nome "

5
at/at0100d.h Executable file

@ -0,0 +1,5 @@
// ricerca soggetto con criteri parziali
#define F_RP_COGNOME 101
#define F_RP_NOME 102
#define F_RP_DATANASC 103

34
at/at0100d.uml Executable file

@ -0,0 +1,34 @@
#include "at0100d.h"
PAGE "Ricerca soggetto con criteri parziali" -1 -1 40 7
STRING F_RP_COGNOME 25
BEGIN
PROMPT 1 1 "Cognome "
FLAGS "U"
END
STRING F_RP_NOME 25
BEGIN
PROMPT 1 2 "Nome "
FLAGS "U"
END
DATE F_RP_DATANASC
BEGIN
PROMPT 1 3 "Nato il "
END
BUTTON DLG_OK 9 2
BEGIN
PROMPT -12 -2 ""
END
BUTTON DLG_CANCEL 9 2
BEGIN
PROMPT -22 -2 ""
END
ENDPAGE
ENDMASK