Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Symeon Breen
I use camel case in all the languages i program in. In unibasic i have capitalised verbs because i do not have the setting set to allow lowercase verb useage. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Boydell, Stuart
Same Also leading capital letter for SubroutineLabels: No underscores, dots or other extraneous characters. File handle variables are just another variable so follow the camelCase rule but I prefix them with fv: open 'MY.FILE.NAME' to fvMyFileName Cheers, Stuart Boydell

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Les Hewkin
Does anyone else remember the days when there was only UPPER case on terminals and line printers? Our internal standard says use upper case only, we have twenty year old programs. When switching from an old program to a new one written in wobbly case you tend to miss read the code. We do have

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Symeon Breen
Wobbly case - lol Yes i remember years ago we had a chain printer that only printed caps - we moved to a new machine and the print runs came out all funny lots of characters missing, it took us ages to figure out it was only printing the caps chars, the old machine uppercased everything in the

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Brian Leach
Hi I use mixed case using the same capitalization as for Delphi and VB (rather than camelCase for C# and Java). OpenSeq NumberOfFields = DCount(SomeVariable, @FM) However I use upper case to distinguish things that are 'special' e.g. equate literals, file and select variables, common variables

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Brian Leach
Of course it doesn't help the example when your mail client screws up your formatting... No, I didn't put the Loop on the same line. sigh Brian Execute SSELECT BOOK_TITLES, SELECT. SLIST Fin = @False Loop ReadNext TitleId From SLIST Else Fin = @True End Until Fin Do

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Symeon Breen
An important point there from Brian on editors, yes the editors we use (no one writes code in ed do they?) will colour highlight verbs, literals, comments, variables etc + do case insensitive searches.. -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] What Program Am I?

2009-06-25 Thread Brett Callacher
Agreed about use of SYSTEM(9001), however as it is not clear on the platform there is one caveat if you are using UniObjects. You may need to ensure that you are using at least UV 10.2.4 as some previous versions did a hang on consecutive calls to this function (Issue 8283). Am not sure when

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Ron Hutchings
Yeah, no one would be silly enough to still be using ED. Just because you can count on it being on every client machine since it is delivered with the standard system. Nobody could possibly be more productive in ED then any of the color sensitive editors that may not lock records while two

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Joshua Gallant
People use something other than ED? For the most part, all programmers on our staff do use the ED editor but there are a few of us who like the functions like syntax highlighting, etc. We code in all UPPER case here. We've had programs around for 30 years so the base programs were always

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Symeon Breen
Probably ot here - but i was NOT saying it was silly, I agree you can count on ED and i do use ED / AE every day i am working on a u2 box, but when it comes to sitting down and writing, or debugging some code i think most people do use a more visual editor, the one that comes free with u2, (old

[U2] wGet question for Robert Porter

2009-06-25 Thread u2list0512
Sorry, this is a re-post with a more specific subject I have opted for the wGet method. I give up trying to make any other version work. This one does with one very minor exception. I redirect the output to a type 1 file. Problem is, the filename it creates is 50 characters in length and I

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Norman Morgan
You're probably right about ED. After all, EDLIN is probably still lurking somewhere in the belly of all that Windows flash and dazzle. Lowest common denominator and all that... After 16 years in the MV world, I've never really learned ED, because I was introduced to Pick/D3 and SB+ at the same

Re: [U2] wGet question for Robert Porter

2009-06-25 Thread George Gallen
I've used the following: 0047:SITE=http://wwwapps.ups.com/WebTracking/; 0048:PART1=OnlineTool?submit=TrackInquiryNumber1=:TRKID 0049:PART2=InquiryNumber2=InquiryNumber3=InquiryNumber4= 0050:PART3=InquiryNumber5=TypeOfInquiryNumber=T 0051:PART4=ups_HTML_License=:ACCESSKEY 0052:

Re: [U2] Unix mail server?

2009-06-25 Thread Burwell, Ed
Here's a high-level view of what I'm envisioning: 1. Our Unidata application sends an email to the outside world, giving the recipient certain options. 2. The recipient hits REPLY, types a few characters and hits SEND. 3. Our rs/6000 receives the email and put it somewhere. 4. Our Unidata

Re: [U2] wGet question for Robert Porter

2009-06-25 Thread u2list0512
/mailman/listinfo/u2-users ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users __ Information from ESET NOD32 Antivirus, version of virus signature database 4188 (20090625

Re: [U2] Unix mail server?

2009-06-25 Thread George Gallen
as others have said, regarding opening the server up to the net, what you could also do is. 1. configure SENDMAIL on the rs/6000 to masquarade your domain as another server, and use a relay server. 2. configure hosts.allow/SENDMAIL to ONLY allow receipt of email from that relay server. 3.

Re: [U2] Unix mail server?

2009-06-25 Thread Larry Hiscock
As an alternative to #4, you could also create an alias that pipes the incoming mail to a script (which in turn could fire off a phantom) to process the received mail and do something with it. Larry Hiscock Western Computer Services -Original Message- From:

Re: [U2] wGet question for Robert Porter

2009-06-25 Thread Bob Witney
Antivirus, version of virus signature database 4188 (20090625) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com Curt Lashley 2803 North Boulevard Tampa, FL 33602 Cell: (813) 293-2878 or (800) 886-2878 Home: (813) 226-2878 or (800) 524-2878 Fax: (813) 229-2878

Re: [U2] Unix mail server?

2009-06-25 Thread Brutzman, Bill
Check out the new demo on Adobe Live Cycle Services. While its cost is too steep for a lot of us (~$100k), Adobe projects some interesting ideas like... when the outside recipient gets the eMail with an Acrobat 9 pdf attachment, clicking on boxes inside the attachment launches into the hosted

Re: [U2] wGet question for Robert Porter

2009-06-25 Thread Steve Romanow
Try here http://www.perzl.org/aix/ for all your aix FOSS needs. Bob Witney wrote: This doesn't appear to be in aix 5.3 ?? bob ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] wGet new failure

2009-06-25 Thread u2list0512
-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users __ Information from ESET NOD32 Antivirus, version of virus signature database 4188 (20090625) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com Curt Lashley

Re: [U2] wGet new failure

2009-06-25 Thread Steve Romanow
u2list0...@curt.com wrote: ok, I tried this method and I am back to my original problem. When it executes the DOS /c (I am running Win Server 2k3), it never comes back to me It hangs until I End Task on CMD.EXE These instructions are based on a unix server. Do you have wget.exe installed on

Re: [U2] wGet new failure

2009-06-25 Thread u2list0512
Yes, Robert gave me a link for WGET for Windows and I installed it. Curt Lashley 2803 North Boulevard Tampa, FL 33602 Cell: (813) 293-2878 or (800) 886-2878 Home: (813) 226-2878 or (800) 524-2878 Fax: (813) 229-2878 ___ U2-Users mailing list

Re: [U2] wGet new failure

2009-06-25 Thread Steve Romanow
u2list0...@curt.com wrote: Yes, Robert gave me a link for WGET for Windows and I installed it. Curt Lashley 2803 North Boulevard Tampa, FL 33602 Cell: (813) 293-2878 or (800) 886-2878 Home: (813) 226-2878 or (800) 524-2878 Fax: (813) 229-2878 ___

Re: [U2] wGet new failure

2009-06-25 Thread George Gallen
also try adding in -T x where x is the # of seconds to set for a read timeout. (add in -T 4) if the site can't be reached within 4 seconds it should return. George -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread kishor
I didn't know how lucky I was being able to use Brian's MVDeveloper to code with. I had become dependant on it. It was a great time saver. I am now working on Univision and using ED, all the programs are in upper case which I don't mind, but there is no indentation and there are many

Re: [U2] Using ED

2009-06-25 Thread Brutzman, Bill
Using ED as an editor to write programs reminds me of the story of the blind man. 0. The man came to Jesus for help. 1. Jesus spat on the dry ground. 2. ...Rubbed the mud in his eyes. 3. ...Told him to wash it off. When the man washed his eyes, he could see. In this little parable, those

Re: [U2] Using ED

2009-06-25 Thread George Gallen
I Use EditPlus, but I have found one major flaw that ED can do without a problem. If you want to add say, 4 spaces to the beginning a block of lines (to indent a block), you can't do that. whereas in ED, you would just set , and r///b (or use a #) Anyone found a way to do this in

Re: [U2] Using ED

2009-06-25 Thread Edward Brown
Try ultraedit, it has a column mode that can handle this sort of thing. Ed -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen Sent: 25 June 2009 16:18 To: U2 Users List Subject: Re: [U2] Using ED I Use

Re: [U2] Using ED

2009-06-25 Thread Steve Romanow
Edward Brown wrote: Try ultraedit, it has a column mode that can handle this sort of thing. Ed -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen Sent: 25 June 2009 16:18 To: U2 Users List Subject: Re:

Re: [U2] Using ED

2009-06-25 Thread Norman Morgan
I keep going on about WED, but it has several handy tricks up its sleeve. Highlight a block of text, then click a button to indent (or un-indent) the whole block by one tab distance (whatever you defined that to be). Similarly, entire blocks of text can be commented out (or un-commented) with a

Re: [U2] Using ED

2009-06-25 Thread Steve Romanow
Norman Morgan wrote: Note: I am also an UltraEdit fan, using it exclusively instead of Notepad in Windows. You may not need it often, but when you do the hex mode is a lifesaver. UE is also the king of Opening Large Files. I have had several hundred meg text files open with UE. Find in

Re: [U2] Using ED

2009-06-25 Thread Robert Porter
Not sure if I'm reading your question right, but E+ can indent pretty easily. Highlight the lines to indent and CTRL+I or Edit - Format - Increase Indent The # of spaces is controlled under Document - Tab/Indent I love E+, great little extendable editor. Plus when used with WinSCP let's me

Re: [U2] Using ED

2009-06-25 Thread Robert Porter
One other neat feature we use on E+ that we use all the time... If you open a file that is being written to such as a log file, and leave it open as you switch programs. When you come back to E+ it can check to see if it has changed on the server and prompt you to reload it. Comes in very handy

Re: [U2] Using ED

2009-06-25 Thread Steve Romanow
Robert Porter wrote: One other neat feature we use on E+ that we use all the time... If you open a file that is being written to such as a log file, and leave it open as you switch programs. When you come back to E+ it can check to see if it has changed on the server and prompt you to reload it.

Re: [U2] Using ED

2009-06-25 Thread George Gallen
Didn't realize you could substitute spaces for tabs with that one. George -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Robert Porter Sent: Thursday, June 25, 2009 12:05 PM To: U2 Users List Subject: Re:

Re: [U2] Mixed Case UV Basic Programming Standards.

2009-06-25 Thread Jo Lester
For editing, I am happy using UltraEdit from IDMcomp.com. You can choose color coded syntax to be BASIC - Universe from the view menu. Easy to use; it is a full screen editor with ftp abilities. Currently UltraEdit alone is priced at $49.95. IDM's UltraCompare adds another phenomenal tool to

Re: [U2] wGet new failure

2009-06-25 Thread Glen Batchelor
___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users __ Information from ESET NOD32 Antivirus, version of virus signature database 4188 (20090625) __ The message was checked by ESET NOD32 Antivirus. http

Re: [U2] Unix mail server?

2009-06-25 Thread Glen Batchelor
As been suggested, the alias pipe is probably the best option for a simple mail capturing solution. This will mean configuring an MTA (I can help with Postfix) on the U2 server. You will need to manually parse the envelope, though, unless you stick a MIME extractor in the middle. You could do

Re: [U2] Using ED

2009-06-25 Thread Results
[AD] New series in International Spectrum: IDEs Editors. First up, Brian Leach [/AD] Note, the series was actually started before this thread. Nathan must be psychic. - Chuck ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] Using ED

2009-06-25 Thread David A Barrett
Back in the early 90's, I had a stint working with Unidata, and I became addicted to the AE editor. It's virtually identical to ED but has a few really nice enhancements. Things like the EV command and the global searches with the / command instead of C/SOMETHING/SOMETHING/999. I was in

Re: [U2] XML mapping to multiple files records

2009-06-25 Thread Kathleene M Hunter
Call a subroutine that parses the data. I have done it several times. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Joshua Gallant Sent: Tuesday, June 23, 2009 10:49 AM To: U2 Users List Subject: Re: [U2] XML

Re: [U2] XML mapping to multiple files records

2009-06-25 Thread Joshua Gallant
Thanks for the responses. I was trying to use the tools built into UniVerse rather than parse through everything which I have done on past projects. I feel the XML.TODB program or the XMLTODB function should be able to handle this no problem but seems to have an issue with multiple records. I

Re: [U2] Unix mail server? [ad]

2009-06-25 Thread Tony G
Ed - Your description describes the raison d'ĂȘtre of NebulaMail. You'll find a link to this and other POP3/IMAP solutions here: http://www.pickwiki.com/cgi-bin/wiki.pl?SendAnEmail Due to ever decreasing demand for tools (despite high demand for solutions), I haven't kept NebulaMail up to date on

Re: [U2] What Program Am I?

2009-06-25 Thread Tony G
From: HENDERSON MIKE From (IIRC) 10.0 onwards, there's the SYSTEM(9001) pseudo-variable which contains the UV CALL Stack. It's formatted a bit funny, but there may be a routine on the Pickwiki to make it a sensible format. That reminds me: PickWiki also mentions the UD program CALL.STACK

Re: [U2] Using ED

2009-06-25 Thread Symeon Breen
The EV command in AE is a lifesaver when looking at MV data ! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of David A Barrett Sent: 25 June 2009 20:45 To: u2-users@listserver.u2ug.org Subject: Re: [U2] Using ED Back

Re: [U2] Using EditPlus [was Using ED]

2009-06-25 Thread Boydell, Stuart
Yes, easily - 1 of 4 different ways I can think of off the top of my head - either: 1. Highlight the block and press Ctrl-I (In Preferences, have your tabs set to use spaces instead of the tab character - Set tab to be 4 spaces or whatever your preferred indent size is). 2. Highlight the