[U2] [UV} PORT.STATUS Instruction Number

2011-12-12 Thread Perry Taylor
Does anyone know what it means when PORT.STATUS provides a ridiculously high instruction number? Here is an example... Pid User name. Printer Segment Last command processed 28044 perryt 0xACEB9274 PTEST [ PTEST @ 0xF7746390 ] VLIST of PTEST reveals that

[U2] SB print output question

2011-12-12 Thread Lunt, Bruce
Hi All, This question is for the SB+ users out there. I would normally post it to their list but I forgot the password and I was hoping this could be answered here. :-) What I need to know is where the value is stored for the choice of printed output. The screen will prompt with: Output

Re: [U2] SB print output question

2011-12-12 Thread Dave Davis
@RV.OUT.DEVICE -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Lunt, Bruce Sent: Monday, December 12, 2011 2:33 PM To: u2-users@listserver.u2ug.org Subject: [U2] SB print output question Hi All, This question is

Re: [U2] SB print output question

2011-12-12 Thread Lunt, Bruce
Thank! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Davis Sent: Monday, December 12, 2011 11:35 AM To: U2 Users List Subject: Re: [U2] SB print output question @RV.OUT.DEVICE -Original Message-

Re: [U2] SB print output question

2011-12-12 Thread Lunt, Bruce
I meant: Thanks! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Lunt, Bruce Sent: Monday, December 12, 2011 11:36 AM To: 'U2 Users List' Subject: Re: [U2] SB print output question Thank! -Original

Re: [U2] SB print output question

2011-12-12 Thread Wjhonson
What is a Diff ? What sort of output is that? -Original Message- From: Lunt, Bruce bl...@shaklee.com To: 'U2 Users List' u2-users@listserver.u2ug.org Sent: Mon, Dec 12, 2011 11:36 am Subject: Re: [U2] SB print output question Thank! -Original Message- rom:

[U2] Is SB+ object-oriented?

2011-12-12 Thread Wjhonson
Can Pick BASIC code simulate an object oriented environment? ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Is SB+ object-oriented?

2011-12-12 Thread Israel, John R.
Redback does for web interfacing. John Israel Senior ERP Developer Dayton Superior Corporation 1125 Byers Rd Miamisburg, OH 45342 Office: 937-866-0711 x44380 Fax: 937-865-9182 johnisr...@daytonsuperior.com This message w/attachments (message) is intended solely for the use of the

Re: [U2] SB print output question

2011-12-12 Thread Colin Alfke
Taken from the help output: This outputs the report in DIFF format (comma delimited) in the xxWORK file. Item ids are 'SBDIF.':port:'.':page and are used to transfer SB+ database records into DOS speadsheet programs. It's built into the SB+ Report writer. It's the Data Interchange Format.

Re: [U2] SB print output question

2011-12-12 Thread Wjhonson
Nasty! Comma delimiting is going to cause the downfall of Western Civilization! I wonder if you can optionally tell it to tab delimit -Original Message- From: Colin Alfke alfke...@hotmail.com To: 'U2 Users List' u2-users@listserver.u2ug.org Sent: Mon, Dec 12, 2011 12:21 pm Subject:

Re: [U2] SB print output question

2011-12-12 Thread Charlie Noah
At last! Someone who agrees with me. Comma delimited data has caused me a lot of problems over the years, especially when spreadsheets are involved. Tab delimited is far more rugged. Regards, Charlie Noah On 12-12-2011 2:25 PM, Wjhonson wrote: Nasty! Comma delimiting is going to cause the

Re: [U2] SB print output question

2011-12-12 Thread Israel, John R.
Agreed! John Israel Senior ERP Developer Dayton Superior Corporation 1125 Byers Rd Miamisburg, OH 45342 Office: 937-866-0711 x44380 Fax: 937-865-9182 johnisr...@daytonsuperior.com This message w/attachments (message) is intended solely for the use of the intended recipient(s) and may

Re: [U2] Is SB+ object-oriented?

2011-12-12 Thread Symeon Breen
That's two questions - SB+ and pick basic The answer is no for pick basic. Sb+ is a different ball game altogether. For pick basic however you can apply many oo patterns and techniques into how you code your unibasic- this together with imaginative use of EQU and the creation of functions you

Re: [U2] Is SB+ object-oriented?

2011-12-12 Thread Wjhonson
I think you would need to embed the editor and the compiler into a structure that prevents programmer failure of that sort. -Original Message- From: Symeon Breen syme...@gmail.com To: 'U2 Users List' u2-users@listserver.u2ug.org Sent: Mon, Dec 12, 2011 12:45 pm Subject: Re: [U2] Is

Re: [U2] SB print output question

2011-12-12 Thread Lunt, Bruce
I have another question: This one is about the output itself. What I am doing is creating the report with the Report Writer. When the report is finished the SB+ Print Manager prompts for the Printer Name, Stationary, Assign Options and No of Copies. Well, if I have chosen the 'F' option then I

Re: [U2] SB print output question

2011-12-12 Thread Dave Davis
In the PD.R process - F9-Additional - there is a Display Print Sel Screen that you can set to N to have it omit the prompting. The problem there is you only want it to do this for the F option. I've created a PD.R process where the stationery is calculated using an expression and the F option

Re: [U2] SB print output question

2011-12-12 Thread Lunt, Bruce
Thanks again. That is what I will do because I do still want to be able to send the report to the printer occasionally. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Davis Sent: Monday, December 12, 2011 1:50

Re: [U2] SB print output question

2011-12-12 Thread Boydell, Stuart
Yes, see the /USER.FLAGS process that allows you to suppress the dialog box globally for each user. The reason it asks is to allow you to set the stationery, so, even if you are sending the output to file, it will still control the number of columns. These may be set as defaults so that the

Re: [U2] Is SB+ object-oriented?

2011-12-12 Thread Ross Ferris
Yes - is also supported for real within Cache QM Ross Ferris Stamina Software Visage Better by Design! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Tuesday, 13 December 2011 7:17 AM To:

[U2] TAB.TO.UNIVERSE

2011-12-12 Thread Wjhonson
0001 * 0002 * Writen Dec 2011 by Will Johnson 0003 * Input tab delimited file, output universe file 0004 * BATCH mode does not ask for input at error messages, so it's 0005 *appropriate for PHantoms or any other COMO generating job 0006 * TEST mode

Re: [U2] TAB.TO.UNIVERSE

2011-12-12 Thread Ross Ferris
You are going to end up with key in field 1 with your code Your assumptions in PRINT statements had also better let people know that column # corresponds to field number (with caveat from above) Would also suggest that CONVERT TAB.KEY to @FM IN T.ROW, Followed by a REMOVE for the key may be