Re: Help needed with insignificant problem using format and write

2007-08-21 Thread Mathew Snyder
Chas Owens wrote: On 8/20/07, Mathew Snyder [EMAIL PROTECTED] wrote: Paul Lalli wrote: On Aug 20, 3:10 pm, [EMAIL PROTECTED] (Mathew Snyder) wrote: I run a script which creates a small report for different users of a system we have here at work. The report is a simple text document

Re: Help needed with insignificant problem using format and write

2007-08-21 Thread Chas Owens
On 8/21/07, Mathew Snyder [EMAIL PROTECTED] wrote: snip It would appear that for all but the first iteration, this is happening. However, something during the first time through seems to cause the flag to not be what it should. I've tried changing where the TOP is in the script, when it

Re: Help needed with insignificant problem using format and write

2007-08-21 Thread Mathew Snyder
Chas Owens wrote: On 8/21/07, Mathew Snyder [EMAIL PROTECTED] wrote: snip It would appear that for all but the first iteration, this is happening. However, something during the first time through seems to cause the flag to not be what it should. I've tried changing where the TOP is in the

Help needed with insignificant problem using format and write

2007-08-20 Thread Mathew Snyder
I run a script which creates a small report for different users of a system we have here at work. The report is a simple text document formated with, of all things, the format function. It uses a TOP to create a header for each of our customers which a user has worked with. For some reason the

Re: Help needed with insignificant problem using format and write

2007-08-20 Thread Paul Lalli
On Aug 20, 3:10 pm, [EMAIL PROTECTED] (Mathew Snyder) wrote: I run a script which creates a small report for different users of a system we have here at work. The report is a simple text document formated with, of all things, the format function. It uses a TOP to create a header for each of

Re: Help needed with insignificant problem using format and write

2007-08-20 Thread Mathew Snyder
Paul Lalli wrote: On Aug 20, 3:10 pm, [EMAIL PROTECTED] (Mathew Snyder) wrote: I run a script which creates a small report for different users of a system we have here at work. The report is a simple text document formated with, of all things, the format function. It uses a TOP to create

Re: Help needed with insignificant problem using format and write

2007-08-20 Thread Chas Owens
On 8/20/07, Mathew Snyder [EMAIL PROTECTED] wrote: Paul Lalli wrote: On Aug 20, 3:10 pm, [EMAIL PROTECTED] (Mathew Snyder) wrote: I run a script which creates a small report for different users of a system we have here at work. The report is a simple text document formated with, of

Using format

2003-03-17 Thread Ruben Montes
Hi everybody, should I include any header or use a specific library to use the instruction format? I'm receiving the following error and i think it can be that... Format not terminated at 17032003.pl line 73, at end of line Missing right curly or square bracket at 17032003.pl line 73, at end

RE: Using format

2003-03-17 Thread Hanson, Rob
PROTECTED] Sent: Monday, March 17, 2003 11:54 AM To: '[EMAIL PROTECTED]' Subject: Using format Hi everybody, should I include any header or use a specific library to use the instruction format? I'm receiving the following error and i think it can be that... Format not terminated at 17032003.pl

using format

2003-03-17 Thread Ruben Montes
hello, here's the code: format ENT_TOP = Num. Interface Description Admin StatusOper Status == . and this is error I get: Format not terminated at 17032003.pl line 77, at end of line

RE: using format

2003-03-17 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Ruben Montes wrote: hello, here's the code: format ENT_TOP = Num. Interface Description Admin StatusOper Status == . and this is error I get: Format not terminated at

FW: Focing a page break using format statements

2003-02-13 Thread Maureen E Fischer
I am having a problem knowing how to force a top of page. I was using format statements for my report by I can change it to printf if there is a way. My report is for various clients and I want to run the job once for all the clients but go to top of page and start the page numbers over

Focing a page break using format statements

2003-02-11 Thread Maureen E Fischer
Hi, I am outputting a report and using format statements to do it. Whenever the client changes I want to do a page break, initialize the page numbers at 1, and write the top of page format. While my code is writing out the top of page format and assigning the correct page

Re: Using format()

2002-02-26 Thread William.Ampeh
#!/opt/local/bin/perl $CUR_TIME=`date +%B-%Y`; $TITLE=Annual Report on Car Sales; select (STDOUT); $~ = STDOUT; for ($i = 1; $i 10; $i++) { $color = Red; if ( $i % 2 ) { $color = Blue}; $col1 = ${color}_car_col_1; $col2 = ${color}_car_col_2; $col3 = ${color}_car_col_3;

Using format()

2002-02-25 Thread slhgkh5
I would appreciate it if someone could provide an example of using the format() within a script. Thanks for your help -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]