RE: [U2] [UV] Paragraph

2007-12-07 Thread Barry Rogen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Leach Sent: Friday, December 07, 2007 8:24 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] Paragraph Barry You could write a very short program to do it, then execute

Re: [U2] [UV] Paragraph

2007-12-07 Thread Derek Falkner
Yes, you can use inline prompting to read a record, an attribute, value or sub-value from a file. The syntax is: F(filename,itemid{,attribute{,value{,subvalue}}}),text It's been a while since I last used this and who knows what changes have been made since release 7! I don't

RE: [U2] [UV] Paragraph

2007-12-07 Thread Brian Phillips
Use an inline prompt: | SYNTAX | |[control,]... text [, option] | |control Specifies the characteristics of the prompt. |

RE: [U2] [UV] Paragraph

2007-12-07 Thread Jerry Banker
Use the syntax. A,F(filename,recordname,attribute,value,subvalue),variablename Look it up in the online help under ... Jerry Banker Sr Programmer Analyst Affiliated Acceptance Corp Sunrise Beach, MO 1-800-233-8483 www.affiliated.org -Original Message- From: Barry Rogen [mailto:[EMAIL

RE: [U2] [UV] Paragraph

2007-12-07 Thread Brian Leach
Barry You could write a very short program to do it, then execute that. Write the record and a return value to an @variable, something like... PROGRAM READFILE Get(Arg.) FileName Else STOP Get(Arg.) ItemName Else STOP Get(Arg.) FieldNo Else FieldNo = 0 @USER0 = @SYSTEM.RETURN.CODE = @False

RE: [U2] [UV] Paragraph

2007-12-07 Thread Barry Rogen
] On Behalf Of Derek Falkner Sent: Friday, December 07, 2007 9:22 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] [UV] Paragraph Yes, you can use inline prompting to read a record, an attribute, value or sub-value from a file. The syntax is: F(filename,itemid{,attribute{,value

RE: [U2] [UV] Paragraph

2007-12-07 Thread gerry-u2ug
VAL=TRANS(FILENAME,RECORDID,FIELDNUMBER,OPTIONS) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barry Rogen Sent: December 7, 2007 08:04 AM To: u2-users@listserver.u2ug.org Subject: [U2] [UV] Paragraph Is there a way to read from a file from within a

RE: [U2] [UV] Paragraph

2007-12-07 Thread Barry Rogen
:[EMAIL PROTECTED] On Behalf Of Jerry Banker Sent: Friday, December 07, 2007 9:00 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] Paragraph Use the syntax. A,F(filename,recordname,attribute,value,subvalue),variablename Look it up in the online help under ... Jerry Banker Sr Programmer

RE: [U2] [UV] Paragraph

2007-12-07 Thread Barry Rogen
:[EMAIL PROTECTED] On Behalf Of Brian Phillips Sent: Friday, December 07, 2007 8:58 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] Paragraph Use an inline prompt: | SYNTAX | |[control

RE: [U2] [UV] Paragraph

2007-12-07 Thread Stevenson, Charles
Is there a way to read from a file from within a Paragraph ? Jerry's answer is generally easiest: A,F(filename,recordname,attribute,value,subvalue),variablename or F(filename,recordname,attribute,value,subvalue),variablename ___ Re. Brian's program idea: Good idea for more

RE: [U2] [UV] Paragraph

2007-12-07 Thread gerry-u2ug
Oops - never mind -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gerry-u2ug Sent: December 7, 2007 09:06 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] Paragraph VAL=TRANS(FILENAME,RECORDID,FIELDNUMBER,OPTIONS) -Original Message