RE: [U2] [UD] running a subroutine

2004-10-22 Thread Allen E. Elwood
Now, lets not GOTO there, shall we? ;-D -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mark Johnson Sent: Friday, October 22, 2004 19:53 To: [EMAIL PROTECTED] Subject: Re: [U2] [UD] running a subroutine Ditto: This could be replaced with my single PRINT s

Re: [U2] [UD] running a subroutine

2004-10-22 Thread Mark Johnson
Ditto: This could be replaced with my single PRINT statement. The whole jist of this single PRINT line program is that virtually ANYTHING can be put on one disposable program line and used over and over. These 2 examples only work with OCONV/ICONV. How about some boolean test programs, [] test pro

Re: [U2] [UD] running a subroutine

2004-10-22 Thread Mark Johnson
Again, that could be replaced with my disposable single line PRINT statement without having to remember where you put it. > So...create more intelligent test programs -- Data driven software is a > wonderful thing! I wrote this one (OCONV.TEST) to do just the sort of > things you've noted above:

Re: [U2] UniObjects and Delphi

2004-10-22 Thread Results
Ron, Bryan's article was the key. Since the ActiveX component registers under a different name than the filename, I thought I was missing some key software. - Chuck "UnioaifCtrl" Barouch Ron White wrote: I will look for the project file. Meanwhile, you might take a look at Bryan Thorell's

Re: [U2] UniObjects and Delphi

2004-10-22 Thread Ron White
I will look for the project file. Meanwhile, you might take a look at Bryan Thorell's article on Delphi and UniObjects. It is a little dated but it might help. http://www.sunergossoftware.com/delphi_&_uniobjects_1.htm Ron White - Original Message - From: "Results" <[EMAIL PROTECTED]> To:

[U2] Re: [UV] Moving TRANS file

2004-10-22 Thread Ray Wurlod
Assuming you're not using a Distributed file, try: UPDATE VOC SET F2 = '/newpathname/' || @ID WHERE F2 = '/oldpathname/' || @ID; UPDATE VOC SET F3 = '/newpathname/D_' || @ID WHERE F3 = '/oldpathname/D_' || @ID; (The || is SQL's concatenation operator.) --- u2-users mailing list [EMAIL PROTECT

Re: [U2] [UV] UO.NET

2004-10-22 Thread gerry
well, i guess you ( unsuprisingly ) got that closed down quick enough :-( - Original Message - From: "Warren Haroldson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 22, 2004 03:04 pm Subject: RE: [U2] [UV] UO.NET > Look at what I found wandering the net unsupervise

RE: [U2] RE:[UV] Moving TRANS

2004-10-22 Thread Bob Woodward
And don't forget to do a SEARCH on your source code files (all of them) in case someone hard-coded an OS path in any of your programs. I suppose they could have done the same in your PROC files so you better check them as well. BobW --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe p

[U2] RE:[UV] Moving TRANS

2004-10-22 Thread Piers Angliss
At this time on a Friday evening, you can't possibly mean this weekend. So, identify all your uv accounts over the next week and, for each one, scan the VOC looking for any references in F2 to the TRANS file. Make a note of them and, when you make the move, go back and change each one to point to

RE: [U2] [UV] UO.NET

2004-10-22 Thread Allen E. Elwood
Wow, took 8mins and 14 seconds to download 154mb's. Gosh I love my Time Warner cable connection. Thanks for the link Warren!!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Warren Haroldson Sent: Friday, October 22, 2004 12:05 To: [EMAIL P

Re: [U2] UniObjects and Delphi

2004-10-22 Thread Results
Ron, Would you be willing to share the Unit code? I'm having trouble attaching the dll so that I can get at the underlying routines. - Chuck Ron White wrote: I have in the past but not for any major project. Worked well. Ron White --- u2-users mailing list [EMAIL PROTECTED] To unsubscri

RE: [U2] [UV] UO.NET

2004-10-22 Thread Warren Haroldson
Look at what I found wandering the net unsupervised... ftp://ftp.software.ibm.com/software/informixU2/fixes/ the ...client... does have OU.Net. Warren Haroldson -Original Message- From: Donald Kibbey [mailto:[EMAIL PROTECTED] Sent: Friday, October 22, 2004 11:31 AM To: [EMAIL PROTECTE

Re: [U2] Alas .NET

2004-10-22 Thread Ron White
From a message from Leroy Dreyfuss dated 08-30-2004 "At our conference, you will receive plenty of information on the subject. You will get plenty of information, but you must order new copies of UniData 6.1 or Universe 10.1 to receive it. It is not a separate offering any more than the original Un

Re: [U2] [UV] UO.NET

2004-10-22 Thread Ron White
From a message from Leroy Dreyfuss dated 08-30-2004: "At our conference, you will receive plenty of information on the subject. You will get plenty of information, but you must order new copies of UniData 6.1 or Universe 10.1 to receive it. It is not a separate offering any more than the original U

RE: [U2] [UV] UO.NET

2004-10-22 Thread Marc Harbeson
LOL There's the free demo of Microsoft's next version of their product too. I'm pretty sure it supports .NET - but wait, the current version already does! ROTFL. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Olson Sent: Friday, October 22, 200

Re: [U2] [UV] UO.NET

2004-10-22 Thread Will
Due to file expansion over the years we need to move the TRANS file on file system /dev/vg01/lvol1 mounted on /u1, to a newly installed hard drive which is on file system /dev/vg01/lvol4 mounted on /uv4. What are the recommended steps to complete this process safely and securely so that all of

Re: [U2] UniObjects and Delphi

2004-10-22 Thread Ron White
I have in the past but not for any major project. Worked well. Ron White - Original Message - From: "Results" <[EMAIL PROTECTED]> To: "U2 Users Discussion List" <[EMAIL PROTECTED]> Sent: Friday, October 22, 2004 11:10 AM Subject: [U2] UniObjects and Delphi Anyone using UniObjects with D

RE: [U2] [UD] running a subroutine

2004-10-22 Thread Burwell, Edward
001:PROMPT "" 002: 10 PRINT STR("-",79) 003:PRINT "'O'conv or 'I'conv ":;INPUT OI 004:IF OI="" THEN STOP 005:IF OI#"O" AND OI#"I" THEN GO 10 006:IF OI="O" THEN ELB="OCONV" 007:IF OI="I" THEN ELB="ICONV" 008: 20 PRINT STR("-",79) 009:PRINT "enter conversion ":;INPUT CONV

Re: [U2] [UD] running a subroutine

2004-10-22 Thread TPellitieri
> Date: Fri, 22 Oct 2004 09:12:12 -0400 > From: "Mark Johnson" <[EMAIL PROTECTED]> > > I still maintain my opinion of most of these "stupid' test programs because > many of them look like this: > > 001 PROMPT '" > 002 INPUT ANS > 003 PRINT OCONV(ANS,"MD2,$Z") > 004 END > and another one looks like

RE: [U2] [UV] UO.NET

2004-10-22 Thread Peter Olson
you probable right. i guess i can wait. hu... where are those Oracle cd's i had... This e-mail, including attachments, may include confidential and/or proprietary information, and may be used only by the person or entity to which it is addressed. If the reader of this e-mail is not the inte

RE: [U2] [UV] UO.NET

2004-10-22 Thread Allen E. Elwood
And how much was it for UD6.1, if I may be so bold to ask? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of George Smith Sent: Friday, October 22, 2004 07:00 To: [EMAIL PROTECTED] Subject: RE: [U2] [UV] UO.NET I broke down and purchased 6.1 (Unidata), it is

[U2] Internal Subroutine

2004-10-22 Thread Ron Hutchings
We ran across a call to a routine named $CP$ and can find no references to it. Can anyone shed some light on this? We are running Universe 9.6. _ Dont just search. Find. Check out the new MSN Search! http://search.msn.click-url.c

[U2] Accuterm

2004-10-22 Thread iggchamp
I am trying to get the MsgBox to work in Accuterm and can't seem to capture the results. Can anyone see anything wrong with this... EQU STX TO CHAR(2), CR TO CHAR(13), ESC TO CHAR(27) MESSAGE = \"This is just a test"\ SCRIPT = 'MsgBox(':MESSAGE:',vbOkCancel)' ECHO OFF PRINT ESC:STX:'P':SCRI

[U2] I am out of office on Friday, Oct 22, with no email access. Please use phone to contact me, 404-48-1581.

2004-10-22 Thread Deborah A Perry
I will be out of the office starting 10/22/2004 and will not return until 10/25/2004. General questions, contact Sue Van Aalst at 913.599.8801 For sales support, contact Louis Tur at 813.356.3615 Additional Contacts: * Technical U2 Product Support - visitm www.ibm.com/software/data/u2/support/u

RE: [U2] [UV] UO.NET

2004-10-22 Thread Donald Kibbey
I would not mind sending it to a "backup site" if someone from IBM will bless the effort. Though, I have to think if IBM has not made it available then they simply don't want it wondering around the net unsupervised... Don Kibbey Financial Systems Manager Finnegan, Henderson, Farabow, Garrett

RE: [U2] [UV] UO.NET

2004-10-22 Thread Peter Olson
here too but as far as uo.net goes does it matter what client cd it comes from ? is there a get.host.type() method like in the java environment? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Nick Cipollina Sent: Friday, October 22, 2004 11:25 AM To

[U2] UniObjects and Delphi

2004-10-22 Thread Results
Anyone using UniObjects with Delphi? -- - Charles Barouch (718) 762-3884 x 1 - Key Ally Voice Mail [EMAIL PROTECTED] - Consulting services [EMAIL PROTECTED] - News [EMAIL PROTECTED] - U2-Users Moderator [EMAIL PROTECTED]- Zeus Data Integration Mount Olymp

RE: [U2] [UV] UO.NET

2004-10-22 Thread Peter Olson
if anyone wants to store a "backup copy" of it off site. i'd be more then happy to supply the drive space :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Marc Harbeson Sent: Friday, October 22, 2004 11:17 AM To: [EMAIL PROTECTED] Subject: RE: [U2] [UV] UO.

[U2] UVBasic connect to a Access database

2004-10-22 Thread vance
Hello all, Is anybody familiar with a way to connect a MVBasic app to an access database or datasource ? Can I connect from with a UV app to another datasource via ODBC ? Any transport will do really. I was thinking of writing an outside app to do the data connection to pass and retr for the uvapp

RE: [U2] EDI anyone?

2004-10-22 Thread Glen B
Most of the Aerospace and government agencies we deal with regularly are using web portals now for procurement and supply chain management. EDI/VAN is disappearing, as more large companies put their funds together to get out of their EDI sink holes. The costs of VANs, and operating an EDI infrastr

RE: [U2] [UV] UO.NET

2004-10-22 Thread Peter Olson
"...that we will have to wait..." thanks! This e-mail, including attachments, may include confidential and/or proprietary information, and may be used only by the person or entity to which it is addressed. If the reader of this e-mail is not the intended recipient or his or her authorized ag

RE: [U2] [UV] UO.NET

2004-10-22 Thread Marc Harbeson
I'm wandering just how long it could possibly take to release a PE version of a product that has been thru the release process already? Can IBM move any slower on PE? This is like watching paint dry! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karja

RE: [U2] [UV] UO.NET

2004-10-22 Thread Nick Cipollina
I actually need it for UniVerse and not UniData. Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karjala Koponen Sent: Friday, October 22, 2004 10:24 AM To: [EMAIL PROTECTED] Subject: RE: [U2] [UV] UO.NET Nick, Peter, You can

Re: [U2] [UV] Adding a Hard Drive

2004-10-22 Thread Will
--- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] [UD] running a subroutine

2004-10-22 Thread Tom Dodds
Having been a full time consultant since 1978 I know the pain. I have been very fortunate, I have only had a few periods of extended droughts. This last year has been the worst, but you have to learn to save and rat hole money for the bad times, learn to market even when you are so busy you can no

RE: [U2] Universe on windows

2004-10-22 Thread uniVerse mailing list
They probably aren't running it in production as xp is a desktop environment not a server environment and can only do 10 connections, so unless you are a really small company then that 10 connection limit would soon get (b)reached. (and we use it for development/demonstration purposes on xp) Andy

RE: [U2] [UV] UO.NET

2004-10-22 Thread Karjala Koponen
Nick, Peter, You can get UO.NET from the UniData 6.1 client utilities CD. If you're on UniVerse I expect that you might have a harder time getting an upgrade CD to UniData than a UniData user would. Other than that I believe that we will have to wait for the UniData 6.1 personal edition to ge

RE: [U2] Universe on windows

2004-10-22 Thread Mike Dallaire
Susan, We have 30+ single user UniVerse systems running on laptops for various customers. They have been running XP for quite some time now, the only issue we saw was the calendar lookup in SB+. This was also a problem with Win 2000 (so it is not XP specific). Mike Dallaire Mortgage Builder Softw

RE: [U2] [UV] UO.NET

2004-10-22 Thread George Smith
I broke down and purchased 6.1 (Unidata), it is on the CD. grs -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Cipollina Sent: Friday, October 22, 2004 8:30 AM To: [EMAIL PROTECTED] Subject: RE: [U2] [UV] UO.NET I too would like this information. Th

Re: [U2] Universe on windows

2004-10-22 Thread Susan Joslyn
Thanks so much to everyone who responded that they are using UniVerse successfully on Windows. I thought it was interesting that no one seems to run production in that combination ... but that's okay, like all of you that responded, we'll just be developing on that platform. Thanks! SJ --- u2

RE: [U2] [UV] UO.NET

2004-10-22 Thread Nick Cipollina
I too would like this information. Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Olson Sent: Friday, October 22, 2004 7:57 AM To: '[EMAIL PROTECTED]' Subject: RE: [U2] [UV] UO.NET arggg. please kindly remind us of ju

Re: [U2] EDI anyone?

2004-10-22 Thread Mark Johnson
EDI is alive and living within a few of my clients. Perhaps it isn't classic EDI with the third party standards facilitating the 'partners'. But any Electronic Data Interchange either through email attachments, FTP files, XML etc qualifies as EDI. Perhaps the third party concept is stagnated and/o

Re: [U2] [UD] running a subroutine

2004-10-22 Thread Mark Johnson
I could write a book on that topic. I have around 9-12 clients in MV (and 3 in MS Access) and the 'eat when you work' aspect is very true. I'm making more $ than when I worked full-time at a 100 user MCD end user 13 years ago. But I'm also working much harder and more concentratedly being under the

Re: [U2] [UD] running a subroutine

2004-10-22 Thread Mark Johnson
I still maintain my opinion of most of these "stupid' test programs because many of them look like this: 001 PROMPT '" 002 INPUT ANS 003 PRINT OCONV(ANS,"MD2,$Z") 004 END and another one looks like this 001 PROMPT "" 002 INPUT ANS 003 PRINT OCONV(ANS,"DMA") 004 END Admittedly there is a cutoff be

RE: [U2] [UV] UO.NET

2004-10-22 Thread Peter Olson
arggg. please kindly remind us of just how/where to download uo.net ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Nick Cipollina Sent: Thursday, October 21, 2004 4:30 PM To: [EMAIL PROTECTED] Subject: RE: [U2] [UV] UO.NET That is exactly what I was

RE: [U2] EDI anyone?

2004-10-22 Thread Daly, Mark
I've just been doing a bunch of work for EDI clients. There is a lot of infrastructure in place that works well, and won't be replaced. The standards are mature. Anyone wanting to interact with department stores (in the US anyway) had better get with EDI. I think the aerospace industry has it's own

Re: [U2] EDI anyone?

2004-10-22 Thread John_Appleyard
Bruce, not definitive, but an answer none-the-less. I would say "Declining". The London (England) insurance market has been using EDI for many years, but has now commenced a migration to XML etc. Regards, John Appleyard Arthur J. Gallagher (UK) Limited

RE: [U2] Funny output from phantom process

2004-10-22 Thread Robert Paterson
Problem with something like that Charlie is that your data can play a big part. Depending on what the phantom is doing, you could be reaching a buffer limit purely because of data changes elsewhere in your system. I'd like to know more about the phantom really... Robert Paterson Technology Suppor