RE: [U2] Run a program in Silent mode

2005-04-28 Thread Marilyn Hilb
PROTECTED] Sent: Wednesday, April 27, 2005 6:29 PM To: u2-users@listserver.u2ug.org Subject:Re: [U2] Run a program in Silent mode I don't do Unidata, but if there are such things as procs in Unidata - which I take it there are from reading Allen Elwood's reply - you could also simply

[U2] Run a program in Silent mode

2005-04-27 Thread Burwell, Edward
Hello, Is there a simple UniBasic command (kinda like ECHO OFF) that would cause all PRINT @(x,y) statements to be suppressed? I have a program that prints to the screen that I want to run in an automatic mode and I want it to not print to the screen. We are on UniData 6 - aix. Thanks. Ed

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Pingilley, Ron
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burwell, Edward Sent: Wednesday, April 27, 2005 12:22 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Run a program in Silent mode Hello, Is there a simple UniBasic command (kinda like ECHO OFF) that would

Re: [U2] Run a program in Silent mode

2005-04-27 Thread Manu Fernandes
Hello, The UniBasicHUSH command enables or disables terminal output Manu Fernandes Infodata S.`r.l. - Original Message - From: Burwell, Edward [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, April 27, 2005 7:21 PM Subject: [U2] Run a program in Silent mode Hello

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Burwell, Edward
Sweet! Thanks!!! :-) -Original Message- From: Pingilley, Ron [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 1:41 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Run a program in Silent mode Ed, Try HUSH. Here's the help for it: HUSH statement

Re: [U2] Run a program in Silent mode

2005-04-27 Thread karlp
How about HUSH ON (then HUSH OFF at the end) Karl quote who=Burwell, Edward Hello, Is there a simple UniBasic command (kinda like ECHO OFF) that would cause all PRINT @(x,y) statements to be suppressed? I have a program that prints to the screen that I want to run in an automatic mode and

Re: [U2] Run a program in Silent mode

2005-04-27 Thread Dianne Ackerman
You could try HUSH -Dianne Burwell, Edward wrote: Hello, Is there a simple UniBasic command (kinda like ECHO OFF) that would cause all PRINT @(x,y) statements to be suppressed? I have a program that prints to the screen that I want to run in an automatic mode and I want it to not print to the

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Lance Jahnke
HUSH ON / HUSH OFF in universe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burwell, Edward Sent: Wednesday, April 27, 2005 12:22 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Run a program in Silent mode Hello, Is there a simple UniBasic

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Ed Clark
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Burwell, Edward Sent: Wednesday, April 27, 2005 12:22 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Run a program in Silent mode Hello, Is there a simple UniBasic command (kinda like ECHO OFF) that would cause all PRINT @(x,y

Re: [U2] Run a program in Silent mode

2005-04-27 Thread Gordon J Glorfield
It's been a while since I worked on UniData but I believe you are looking for HUSH ON/OFF. Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 [EMAIL PROTECTED] wrote on 04/27/2005 01:21:39 PM: Hello, Is there a simple UniBasic command (kinda like

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Burwell, Edward
HUSH did the trick! Thanks to you all! -Original Message- From: Ed Clark [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 2:09 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Run a program in Silent mode You could use HUSH ON and HUSH OFF within the program, or you could

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Brutzman, Bill
I change all of the PRINT @(x,y) to crt @(x,y). --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Burwell, Edward Sent: Wednesday, April 27, 2005 1:22 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Run a program

RE: [U2] Run a program in Silent mode

2005-04-27 Thread Allen E. Elwood
: RE: [U2] Run a program in Silent mode I change all of the PRINT @(x,y) to crt @(x,y). --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Burwell, Edward Sent: Wednesday, April 27, 2005 1:22 PM To: 'u2-users

Re: [U2] Run a program in Silent mode

2005-04-27 Thread Joe Walter
) THEN PRINT @(X,Y) hope this helps. joey walter - Original Message - From: Allen E. Elwood [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, April 27, 2005 5:51 PM Subject: RE: [U2] Run a program in Silent mode You could also pass a parameter from the PROC and read