Re: [U2] Paragraphs and procwrite

2009-06-03 Thread Barry Rogen
environmental responsibility -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of roy Sent: Friday, May 22, 2009 6:15 PM To: u2-users@listserver.u2ug.org Subject: [U2] Paragraphs and procwrite Hi all, Is there a way

RE: [U2] Paragraphs and procwrite

2009-05-26 Thread David A. Green
Of roy Sent: Monday, May 25, 2009 5:18 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Paragraphs and procwrite To explain a little better ... The paragraph calls many other procs and paragraphs as well as a number of basic programs. What I found is that if someone exits a basic program

RE: [U2] Paragraphs and procwrite

2009-05-25 Thread roy
] On Behalf Of phil walker Sent: Sunday, May 24, 2009 8:07 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Paragraphs and procwrite Maybe I have come in late or are missing something in the question but can't you just use: Command = 'paragraph ':arg1 Execute Command Then in the paragraph Do

RE: [U2] Paragraphs and procwrite

2009-05-25 Thread phil walker
- us...@listserver.u2ug.org] On Behalf Of roy Sent: Tuesday, 26 May 2009 1:31 a.m. To: u2-users@listserver.u2ug.org Subject: RE: [U2] Paragraphs and procwrite To explain a little better ... The paragraph calls many other procs and paragraphs as well as a number of basic programs. What I

Re: [U2] Paragraphs and procwrite

2009-05-24 Thread Jacques G.
: Saturday, May 23, 2009 7:45:04 AM Subject: RE: [U2] Paragraphs and procwrite Hi You could use one of the user-defined system variables: e.g. @USER0 E.g. PA CallMyProgram IF @USER0 = SomeFlag GO DoSomething PROGRAM CallMyProgram @USER0 = SomeOtherFlagActually END -Original Message- From

RE: [U2] Paragraphs and procwrite

2009-05-23 Thread Brian Leach
...@listserver.u2ug.org] On Behalf Of roy Sent: 22 May 2009 23:15 To: u2-users@listserver.u2ug.org Subject: [U2] Paragraphs and procwrite Hi all, Is there a way to accomplish passing an argument from a basic program to a paragraph? Something like what procwrite does with a Proc

[U2] Paragraphs and procwrite

2009-05-22 Thread roy
Hi all, Is there a way to accomplish passing an argument from a basic program to a paragraph? Something like what procwrite does with a Proc? Thanks --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Paragraphs and procwrite

2009-05-22 Thread Louie Bergsagel
Many: 1. Have the program create and/or update the paragraph record in the VOC file with a read, insert, and write. 2. Have the program run the paragraph with the appropriate argument, e.g. ARGUMENT = USER.INPUT.PART.NO http://user.input.part.no/ COMMAND = PARAGRAPH.NAME

Re: [U2] Paragraphs and procwrite

2009-05-22 Thread Louie Bergsagel
And of course, the paragraph mentioned in #2 would read the argument using the C2 command, where the number in the Cn prompt represents, in this example, the second word on the command line. e.g. IF C2 # THEN SELECT INVENTORY WITH PART.NO = C2 On Fri, May 22, 2009 at 5:25 PM, Louie Bergsagel