home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / bit / listserv / dbasel / 1149 < prev    next >
Encoding:
Text File  |  1992-11-05  |  2.1 KB  |  50 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!gatech!paladin.american.edu!auvm!QMRELAY.MAIL.CORNELL.EDU!TOM_SCOTT
  3. Message-ID: <DBASE-L%92110507532907@NMSUVM1.BITNET>
  4. Newsgroups: bit.listserv.dbase-l
  5. Date:         Thu, 5 Nov 1992 09:53:11 U
  6. Sender:       "Discussion on the use of the dBase language and related
  7.               dialects" <DBASE-L@NMSUVM1.BITNET>
  8. From:         Tom Scott <tom_scott@QMRELAY.MAIL.CORNELL.EDU>
  9. Subject:      Re: Re- HELP WITH CAPTURE CO
  10. Lines: 38
  11.  
  12.                                 RE>Re: HELP WITH CAPTURE COMMA
  13. College of Engineering                           Thomas Scott - (607) 255-0966
  14.                                                  FAX: (607) 255-9606
  15.                                                  E-mail:
  16. LU7Y@CornellC.cit.cornell
  17.                                                  edu
  18.  
  19. QM:Tom_Scott@QMRELAY.mail.cornell
  20.                                                  edu
  21. Carpenter Hall Annex_
  22. >>IF Mc_type = 'PI'
  23. >>    RUN CAPTURE P=1 >NUL
  24. >>ENDIF
  25. >>
  26. >>note:  mAYBE i AM DUMB FOR ASKING - WHAT IS CAPTURE?
  27.  
  28. >Capture is an 'EXTERNAL' program not related to clipper.  The programmer used
  29. >it to perform a function (maybe a screen capture?).  Your might want to type
  30. >CAPTURE at the C prompt and see how it reacts.
  31.  
  32. Correct!  It's been awhile since I've set up a Novell network, but if I
  33. remember
  34. correctly, CAPTURE is a Novell command that specifies which printer (or printer
  35. port) to print to.  In this case, it's trying to send to LPT1.
  36.  
  37. This is the breakdown of the statement:
  38.          RUN  (allows your dBase/Fox/Clipper prog to execute a DOS-level
  39. command)
  40.          CAPTURE  (Novell command to capture or designate a printer)
  41.          P=1  (Printer = LPT1)
  42.          > NUL   (Redirecting screen output to DOS variable NUL, which
  43. suppresses
  44.                        the screen output)
  45.  
  46. Check to see if your network printer is hooked up to LPT1 of the machine it's
  47. hooked up to.  Or, have the net administrator check the way the printers are
  48. designated using either the Novell SYSCON or PCONSOLE utilities, to make sure
  49. you should be designating LPT1.
  50.