Hello, here is the menu with the changes needed to run the Epidata.exe You may enter the text processing mode (notepad or eped) and to do other changes. Save the backup copy first!!!
Vladimir P.
Save the following between asterixes as EPI6.MNU
************ EPI6 MENU BEGIN POPUP "&Programs" BEGIN MENUITEM "&EPED word processor^#14", DoEped MENUITEM "E&PIDATA^#14", DoEpidata MENUITEM "&ANALYSIS of data^#14", DoAnalysis MENUITEM SEPARATOR MENUITEM "CHEC&K customize entry^#14", DoCheck MENUITEM "&IMPORT files^#14", DoImport MENUITEM "E&XPORT files^#14", DoExport MENUITEM "&MERGE files^#14", DoMerge MENUITEM SEPARATOR MENUITEM "&STATCALC calculator", DoStatcalc MENUITEM "&CSAMPLE analyze surveys", DoCsample MENUITEM "EPI&TABLE calculator", DoEpitable MENUITEM "EPIN&UT anthropometry^#14",DoEpinut MENUITEM SEPARATOR MENUITEM "&VALIDATE duplicate entry", DoValidate MENUITEM "&QUIT", IDQUIT END POPUP "&Tutorials" BEGIN MENUITEM "&Making a questionnaire", DoEpedTutor MENUITEM "E&ntering data", DoEnterTutor MENUITEM "Analyzing data, Part &1", DoAnalysisTutor1 MENUITEM "Analyzing data, Part &2", DoAnalysisTutor2 MENUITEM "&An Epidemic", DoEpidemic MENUITEM SEPARATOR MENUITEM "Set&Up", DoSetupTut END POPUP "Ex&les" BEGIN MENUITEM "Re&lational hierarchy", DoHPV MENUITEM "&Reports", DoReports MENUITEM "&Matched Case-Control Data",DoMatched MENUITEM SEPARATOR POPUP "&Nutritional Anthropometry" BEGIN MENUITEM "&Simple Data Entry", DoNutri MENUITEM "&U.S. Data Entry", DoMeasure MENUITEM "&European Entry", DoEurope MENUITEM "&Anthropometric .PGM", DoEpiAnth MENUITEM "EpiNut &NUTTEST.REC", DoEpiNutNutri END MENUITEM SEPARATOR POPUP "&Sample Records in a File" Begin MENUITEM "&Systematic Sample", DoSSample MENUITEM "&Random Sample" DoRsample End MENUITEM "&Generate Artificial Data",DoGenerate MENUITEM "Mailing La&bels", DoLabels MENUITEM "Epi Info &file structure",DoStruc MENUITEM SEPARATOR MENUITEM "Sur&veillance System", DoNETSS MENUITEM "&Epiglue", DoEpiGlue MENUITEM SEPARATOR MENUITEM "Set&Up", DoSetupEx END POPUP "&Manual" BEGIN MENUITEM "&Contents", EPI6CON MENUITEM "&General Index", EPI6IND MENUITEM "&Functional Index", EPI6FUN MENUITEM "&New in Version 6", EPI6NEW MENUITEM "New in Version 6.0&4", EPI6UPD MENUITEM "&Title Page and Notes", EPI6TITP END MENUEDIT EPISETUP END
* Comments are preceded by asterisks.
* The following are functions to perform when an item is chosen. * Every function MUST have a BEGIN and END. If they are not * paired exactly, the results will be strange.
DoEped BEGIN * FILEPARAM "*.*","Select a file for EPED" PARAMETER "EPED parameter(s) ","<A
"
IF NOT EXIST %EIDIR%\EPI6\EPED.EXE GOTO NOFILE EPED %1 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\EPED.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END END
DoEpidata BEGIN * FILEPARAM "*.REC","Select a file for ENTER" PARAMETER "ENTER parameter(s) ","<A
"
IF NOT EXIST %EIDIR%\EPI6\Epidata.EXE GOTO NOFILE Epidata %1 %2 %3 %4 %5 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\Epidata.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END END
DoAnalysis BEGIN * FILEPARAM "*.PGM","Select a program to run" PARAMETER "ANALYSIS parameter(s) ","<A
"
IF NOT EXIST %EIDIR%\EPI6\ANALYSIS.EXE GOTO NOFILE Analysis %1 %2 %3 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\ANALYSIS.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END END
DoCheck BEGIN * FILEPARAM "*.REC","Select a file for CHECK" PARAMETER "CHECK parameter(s) ","<A
"
IF NOT EXIST %EIDIR%\EPI6\CHECK.EXE GOTO NOFILE Check %1 %2 %3 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\CHECK.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END END
DoImport BEGIN PARAMETER "IMPORT <Output (.REC) file> <Input file> <Format> 1: Fixed length, 2: Comma delimited, 3: Lotus 123, 4: dBase","<A
"
IF NOT EXIST %EIDIR%\EPI6\IMPORT.EXE GOTO NOFILE Import %1 %2 %3 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\IMPORT.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoExport BEGIN PARAMETER "EXPORT <Input file>.REC <Output file> <Format> 1-SYSTAT 2-SAS 3-DELIM 4-LOTUS 5-SPSSX 6-EPISTAT 7-dBaseII 8-III 9-IV 10-BASIC 11-SPSS-PC 12-FIX 13-STATPAC 14-MULTLR 15-EGRET","<A
"
IF NOT EXIST %EIDIR%\EPI6\EXPORT.EXE GOTO NOFILE Export %1 %2 %3 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\EXPORT.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoMerge BEGIN PARAMETER "MERGE <File 1> <File 2> <Output file> <Option> {Merge variable} {Y/N} Options: 1-Concatenate 2-Join 3-Update 4-Revise","<A
"
IF NOT EXIST %EIDIR%\EPI6\MERGE.EXE GOTO NOFILE Merge %1 %2 %3 %4 %5 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\MERGE.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoCsample BEGIN IF NOT EXIST %EIDIR%\EPI6\CSAMPLE.EXE GOTO NOFILE CSAMPLE GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\CSAMPLE.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoSTATCALC BEGIN IF NOT EXIST %EIDIR%\EPI6\STATCALC.EXE GOTO NOFILE STATCALC GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\STATCALC.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoEpiTable BEGIN IF NOT EXIST %EIDIR%\EPI6\EPITABLE.EXE GOTO NOFILE EPITABLE GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\EPITABLE.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
doEpinut Begin PARAMETER "EPINUT <File name>.REC {/A=<Age variable> /S=<Sex variable> ? /W=<Weight variable> /H=<Height variable>}","<A
"
IF NOT EXIST %EIDIR%\EPI6\EPINUT.EXE GOTO NOFILE epinut %1 %2 %3 %4 %5 %6 GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\EPINUT.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END end
DoValidate BEGIN IF NOT EXIST %EIDIR%\EPI6\VALIDATE.EXE GOTO NOFILE VALIDATE GOTO END :NOFILE ECHO Could not locate %EIDIR%\EPI6\VALIDATE.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END End
DoEpedTutor BEGIN IF NOT EXIST TutEped.epa GOTO NOFILE1 Eped /TutEped.epa GOTO END :NOFILE1 ECHO Could not locate TUTEPED.EPA ECHO Try SETUP on TUTORIALS or EXAMPLES menu :END End
DoEnterTutor BEGIN IF NOT EXIST TUTENTER.BAT GOTO NOFILE1 IF NOT EXIST FIRST.QES GOTO NOFILE2 TUTENTER GOTO END :NOFILE1 ECHO Could not locate TUTENTER.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE GOTO END :NOFILE2 ECHO A questionnaire, FIRST.QES, must be present. ECHO Please do MAKING A QUESTIONNAIRE first or choose SETUP on TUTORIALS menu PAUSE :END End
DoAnalysisTutor1 BEGIN IF NOT EXIST Tutor1.PGM GOTO NOFILE1 Analysis Tutor1 GOTO END :NOFILE1 ECHO Could not locate TUTOR1.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoAnalysisTutor2 BEGIN IF NOT EXIST Tutor2.PGM GOTO NOFILE1 Analysis Tutor2 GOTO END :NOFILE1 ECHO Could not locate TUTOR2.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoEpidemic BEGIN IF NOT EXIST EPIDEMIC.BAT GOTO NOFILE EPIDEMIC.BAT GOTO END :NOFILE ECHO Could not locate EPIDEMIC.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoNETSS BEGIN cd %EIDIR%\NETSS IF NOT EXIST NETSS.MNU GOTO NONETSS REM n: REM cd \apps\netss NETSS REM call home cd %EIDIR%\EPI6 GOTO END :NONETSS ECHO Could not locate %EIDIR%\NETSS\NETSS.MNU menu file for NETSS. ECHO Was it installed? ECHO Set EIDIR if \NETSS is not off the root (see README.604). ECHO If you are running on a LAN see README.604 ECHO NETSS must be run from NETSS directory cd %EIDIR%\EPI6 PAUSE :END End
DoEpiglue Begin IF NOT EXIST %EIDIR%\EPI6\EPIGLUE.EXE GOTO NOGLUE EPIGLUE GOTO END :NOGLUE ECHO Could not locate %EIDIR%\EPI6\EPIGLUE.EXE ECHO Was it installed? Is there a PATH to its location? ECHO Set EIDIR if \EPI6 is not off the root (see README.604). PAUSE :END End
DoHPV BEGIN IF NOT EXIST HOUSE.REC GOTO NOFILE1 ENTER House GOTO END :NOFILE1 ECHO Could not locate sample file HOUSE.REC ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoReports BEGIN IF NOT EXIST REPORT.PGM GOTO NOFILE1 Analysis REPORT GOTO END :NOFILE1 ECHO Could not locate sample file REPORT.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoMatched Begin IF NOT EXIST MATCHEX.PGM GOTO NOFILE1 Analysis MATCHEX GOTO END :NOFILE1 ECHO Could not locate sample file MATCHEX.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoStruc Begin IF NOT EXIST FSTRUC.REC GOTO NOFILE1 ENTER FSTRUC VIEW FSTRUC.REC GOTO END :NOFILE1 ECHO Could not locate sample file FSTRUC.REC ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoGenerate Begin IF NOT EXIST ARTIFACT.BAT GOTO NOFILE ARTIFACT.BAT GOTO END :NOFILE ECHO Could not locate ARTIFACT.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoNutri Begin IF NOT EXIST NUTRI.BAT GOTO NOFILE NUTRI.BAT GOTO END :NOFILE ECHO Could not locate NUTRI.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoMeasure Begin IF NOT EXIST MEASURE.BAT GOTO NOFILE MEASURE.BAT GOTO END :NOFILE ECHO Could not locate MEASURE.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END end
DoEurope Begin IF NOT EXIST EUROPE.BAT GOTO NOFILE EUROPE.BAT GOTO END :NOFILE ECHO Could not locate EUROPE.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoEpiAnth Begin IF NOT EXIST EPIANTH.PGM GOTO NOFILE1 Analysis epianth GOTO END :NOFILE1 ECHO Could not locate sample file EPIANTH.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoEpiNutNutri Begin DIALOG "EPINUT will be run in batch mode. All nutrition indices will be added to the file NUTTEST.REC which includes AGE, SEX WEIGHT and HEIGHT information for a survey of 420 children aged 6-59 months." IF NOT EXIST NUTTEST.REC GOTO NOFILE1 EPINUT NUTTEST GOTO END :NOFILE1 ECHO Could not locate sample file NUTTEST.REC ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoSSample Begin IF NOT EXIST SSAMPLE.PGM GOTO NOFILE1 Analysis SSAMPLE GOTO END :NOFILE1 ECHO Could not locate sample file SSAMPLE.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoRsample Begin IF NOT EXIST RSAMPLE.PGM GOTO NOFILE1 Analysis RSAMPLE GOTO END :NOFILE1 ECHO Could not locate sample file RSAMPLE.PGM ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
DoLabels Begin IF NOT EXIST LABELS.BAT GOTO NOFILE LABELS.BAT GOTO END :NOFILE ECHO Could not locate LABELS.BAT ECHO Try SETUP on TUTORIALS or EXAMPLES menu PAUSE :END End
EPI6CON BEGIN HELP %EIDIR%\EPI6\EPI6CON.HLP END
EPI6IND BEGIN HELP %EIDIR%\EPI6\EPI6IND.HLP END
EPI6FUN BEGIN HELP %EIDIR%\EPI6\EPI6FUN.HLP END
EPI6NEW BEGIN IF NOT EXIST %EIDIR%\EPI6\EPI6MAN1.HLP GOTO NOFILE1 IF NOT EXIST %EIDIR%\EPI6\BINDER.EXE GOTO NOFILE2 BINDER %EIDIR%\EPI6\EPI6MAN1 17 GOTO END :NOFILE1 ECHO Could not locate file EPI6MAN1.HLP ECHO Was it installed? PAUSE GOTO END :NOFILE2 ECHO Could not locate BINDER.EXE ECHO Was it installed? PAUSE :END END
EPI6UPD BEGIN %EIDIR%\EPI6\EPED %EIDIR%\EPI6\README.604 END
EPI6TITP BEGIN IF NOT EXIST %EIDIR%\EPI6\EPI6MAN1.HLP GOTO NOFILE1 IF NOT EXIST %EIDIR%\EPI6\BINDER.EXE GOTO NOFILE2 BINDER %EIDIR%\EPI6\EPI6MAN1 1 GOTO END :NOFILE1 ECHO Could not locate file EPI6MAN1.HLP ECHO Was it installed? PAUSE GOTO END :NOFILE2 ECHO Could not locate BINDER.EXE ECHO Was it installed? PAUSE :END END
DoSetupTut BEGIN IF NOT EXIST EPI6.EXE GOTO TRYCHANGE COPY EPI6.SCR EPI6.$$$ IF NOT EXIST EPI6.$$$ GOTO TRYCHANGE ECHO Present directory is \EPI6 and you have write privileges. If files are ECHO missing, you may need to install them from the distribution disks. ERASE EPI6.$$$ GOTO DONE :TRYCHANGE cd ..\EPI6 IF EXIST EPI6.EXE GOTO CHANGED IF NOT EXIST %EIDIR%\EPI6\EPI6.EXE GOTO CANNOT CLS ECHO Will copy tutorial files to your current directory, requiring ECHO about 435 K of disk space. If this is NOT OK please press ECHO Ctrl-C. To continue, press Enter.. PAUSE ECHO ON copy %EIDIR%\EPI6*.EPA copy %EIDIR%\EPI6*.REC copy %EIDIR%\EPI6*.QES copy %EIDIR%\EPI6*.BAT copy %EIDIR%\EPI6*.CHK copy %EIDIR%\EPI6*.PGM copy %EIDIR%\EPI6*.RPT copy %EIDIR%\EPI6\DESCRIBE.HLP copy %EIDIR%\EPI6\PERSON.HLP copy %EIDIR%\EPI6\HOUSE.HLP copy %EIDIR%\EPI6\FIRSTHLP.HLP copy %EIDIR%\EPI6\MARK.COM copy %EIDIR%\EPI6\REMOVE.COM ECHO OFF GOTO COPIED :CANNOT ECHO Cannot find Epi Info directory. If one exists, ECHO please set up a PATH command in AUTOEXEC.BAT ECHO containing its drive and directory. See README.604 ECHO file for instructions to set up an environment ECHO variable called EIDIR if \EPI6 is not from the ECHO root directory. Otherwise you may need to install ECHO all or part of Epi Info before continuing. GOTO DONE :CHANGED ECHO Changed directory to \EPI6. GOTO DONE :COPIED ECHO Tutorial and example files copied to current directory. ECHO If a problem occurred, check how much disk space is left. :DONE PAUSE END
DoSetupEx BEGIN IF NOT EXIST EPI6.EXE GOTO TRYCHANGE COPY EPI6.SCR EPI6.$$$ IF NOT EXIST EPI6.$$$ GOTO TRYCHANGE ECHO Present directory is \EPI6 and you have write privileges. If files are ECHO missing, you may need to install them from the distribution disks. ERASE EPI6.$$$ GOTO DONE :TRYCHANGE cd ..\EPI6 IF EXIST EPI6.EXE GOTO CHANGED IF NOT EXIST %EIDIR%\EPI6\EPI6.EXE GOTO CANNOT CLS ECHO Will copy tutorial files to your current directory, requiring ECHO about 435 K of disk space. If this is NOT OK please press ECHO Ctrl-C. To continue, press Enter.. PAUSE ECHO ON copy %EIDIR%\EPI6*.EPA copy %EIDIR%\EPI6*.REC copy %EIDIR%\EPI6*.QES copy %EIDIR%\EPI6*.BAT copy %EIDIR%\EPI6*.CHK copy %EIDIR%\EPI6*.PGM copy %EIDIR%\EPI6*.RPT copy %EIDIR%\EPI6\DESCRIBE.HLP copy %EIDIR%\EPI6\PERSON.HLP copy %EIDIR%\EPI6\HOUSE.HLP copy %EIDIR%\EPI6\FIRSTHLP.HLP copy %EIDIR%\EPI6\MARK.COM copy %EIDIR%\EPI6\REMOVE.COM ECHO OFF GOTO COPIED
:CANNOT ECHO Cannot find Epi Info directory. If one exists, ECHO please set up a PATH command in AUTOEXEC.BAT ECHO containing its drive and directory. See README.604 ECHO file for instructions to set up an environment ECHO variable called EIDIR if \EPI6 is not from the ECHO root directory. Otherwise you may need to install ECHO all or part of Epi Info before continuing. GOTO DONE :CHANGED ECHO Changed directory to \EPI6. GOTO DONE :COPIED ECHO Tutorial and example files copied to current directory. ECHO If a problem occurred, check how much disk space is left. :DONE PAUSE END
*The Stringtable or Hint Table provides a line of help text at the * bottom of the screen for each function included in the table. *The Stringtable and the hints are optional. STRINGTABLE BEGIN DoEPED "® Create questionnaires or write and edit text" DoEpidata "® Make .REC files from .QES files; Epidata, EDIT data" DoANALYSIS "® Do LISTs/FREQuencies/TABLES/Statistics/Graphs" DoCHECK "® Add range checking/skip patterns/legal values/coding" DoMERGE "® Append/Combine/Update/Restructure data files" DoCSAMPLE "® Analyze data from complex sample surveys" DoIMPORT "® Import other program data files into Epi Info" DoEXPORT "® Export Epi Info .REC files into other program formats" DoVALIDATE "® Compare two data files for verification" DoSTATCALC "® Calculator for 2 x 2 tables/sample size/chi sq. for trend" DoEPITABLE "® Calculator for various epidemiologic statistics" doEpinut "® Process files to add nutritional calculations" IDQUIT "® Leave Epi Info and return to DOS or another menu" DoEpedTutor "® Interactive tutorial on making a questionnaire" DoEnterTutor "® Interactive tutorial on entering data" DoAnalysisTutor1 "® Interactive tutorial for analysis--part 1" DoAnalysisTutor2 "® Interactive tutorial for analysis--part 2" DoEpidemic "® Interactive tutorial, epidemic investigation " DoNETSS "® Sample surveillance system for state health departments" DoEpiglue "® Sample menu, input, and output options for Epiglue" DoHPV "® House/Person/Visit forms -- linked automatically" DoReports "® Using the report generator to format output" DoCSAMPLESample "® Example from a stratified cluster sample" DoMatched "® Matched analysis of toxic shock case-control study" DoStruc "® Sample file to show details of Epi Info .REC files" DoGenerate "® Program to generate random data to specifications" DoNut "® Questionnaire to enter nutritional anthropometric data" DoCentile "® Analysis program to calculate percentiles" DoZscore "® Analysis program to calculate nutritional z scores" DoLabels "® Analysis program to print mailing labels" EPI6IND "® Index of the entire electronic manual" Epi6New "® Manual section telling new features of Epi 6" Epi6con "® Table of content of the entire electronic manual" Epi6Fun "® Functional index of the entire electronic manual" Epi6Upd "® Updates and errata of the the new Epi Info version 6.04" Epi6titp "® Title Page and Notes of the Epi Info 6.03 manual" DoNutri "® Simple Data Entry of nutrition data in Epi Info" DoMeasure "® Data entry of nutrition data in Epi Info, U.S. format" DoEurope "® Data entry of nutrition data in Epi Info, European format" DoEpianth "® Analysis of nutrition indices in Epi Info analysis program" DoEpiNutNutri "® Batch processing of nutrition indices in Epinut" DoSSample "® Program file for drawing a systematic sample of records" DoRSample "® Program file for drawing a random sample or records" DoSetupTut "® Copies tutorial and example files to current directory" DoSetupEx "® Copies tutorial and example files to current directory" END ***************** ----- Original Message ----- From: epidata-list@lists.umanitoba.ca To: epidata-list@lists.umanitoba.ca Sent: Tuesday, February 22, 2005 7:33 PM Subject: [EpiData-list] Command line processing
Greetings.
I was wondering if Command Line Processing is available. I noticed EpiC 'stuff'. I was thinking something like EpiData <filename> for DataEntry in a BAT file or through .MNU Or EpIDataStat.exe <filename.pgm> etc. Thinking of a system which would be MENU driven. Obviously, I haven't tried any of this. Has anyone else?
Thanks, kelly _______________________________________________ EpiData-list mailing list EpiData-list@lists.umanitoba.ca http://lists.umanitoba.ca/mailman/listinfo/epidata-list