Re: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

2005-12-02 Thread Ian Stuart
Or move LIST to VOCLIB, setup LIST as an R type in the VOC pointing to VOCLIB and use F4 in the R VOC entry to invoke a remote subroutine that can then modify the sentence. Regards Ian Stuart Ken Wallis wrote: Larry Hiscock wrote: How about just adding a phrase to each DICT called ALL

Re: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

2005-12-02 Thread Mats Carlid
Would LIST.ITEM be an answer ? At least it lists all the fields... -- mats --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] [UV] - word Document

2005-12-02 Thread Bjorn Behr
We generate a 'text/word' document from Universe. What I would like to know is does anybody know what characters I need to place in the document so that when it is opened up in Word, it is in landscape format? Many Thanks Bjorn Behr Programmer (TSD) Tel : +27 11 523 4202 Email : [EMAIL

[U2] File to Table Mapping Uni Objects .NET

2005-12-02 Thread zishan iqbal
Hi I am new to Uni data and Uni Objects(.NET). I am not able to understand how the mapping between files and tables is performed in unidata. For example when I access the UniData database through ODBC I can access the table Zee, but when I access the database through Uni Objects it

RE: [U2] Free Editor

2005-12-02 Thread Bob Witney
er - have you tried downloadingthe Unidebugger editor from the IBM site ? -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Fri 02/12/2005 12:32 To: u2-users@listserver.u2ug.org Cc: Subject: SV: [U2] Free

Re: [U2] Free Editor

2005-12-02 Thread Gordon J Glorfield
I use the UniDebugger exclusively for editing programs and it has the debugging built in. It comes free with each licensed installation. Check it out, it's on the utilities disk. Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 [EMAIL PROTECTED]

Re: [U2] [UV] - word Document

2005-12-02 Thread Andy Pflueger
On 12/2/05, Bjorn Behr [EMAIL PROTECTED] wrote: We generate a 'text/word' document from Universe. What I would like to know is does anybody know what characters I need to place in the document so that when it is opened up in Word, it is in landscape format? snip I did a quick Google search

Re: [U2] Resize

2005-12-02 Thread Lance Jahnke
Maybe I will just delete the file and use OPEN/WRITESEQ and create flatfiles. So many options, so little time. Louie Bergsagel wrote: Just write a program that loops until the resize matches the recommendations. See if it goes forever. *:)* -- Louie *Oh, sometimes programmers just want to

[U2] Leif Smith

2005-12-02 Thread Kevin King
Anyone know how to get ahold of Leif? -Kevin [EMAIL PROTECTED] http://www.PrecisOnline.com --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Free Editor

2005-12-02 Thread David Wolverton
It drives me nuts that since we are an SB+ installation, there's not a great way to use UniDebugger with our UniData programs -- Unless someone has a tip to share!! Although the UniData interactive debugger isn't bad, the UniDebugger is nice. --- u2-users mailing list

Re: [U2] [UV] - word Document

2005-12-02 Thread Ron White
Bjorn Behr wrote: We generate a 'text/word' document from Universe. What I would like to know is does anybody know what characters I need to place in the document so that when it is opened up in Word, it is in landscape format? Many Thanks Bjorn Behr Programmer (TSD) Tel : +27 11 523

RE: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

2005-12-02 Thread Marilyn Hilb
Ohoh. I like that! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid Sent: Friday, December 02, 2005 2:43 AM To: u2-users@listserver.u2ug.org Subject:Re: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

[U2] Mod10 Credit Card Checksum

2005-12-02 Thread Baker Hughes
Say, has anyone written some code to validate a Credit Card number, using the Mod10 (nicknamed) or ANSI X4.13 (realname) LUHN formula? I was just told today get this installed yesterday, so I'm naturally looking to see if some kind-hearted fellow MV'ver has something already written (it is the

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread Robin Stanley
We have been using this Mod10 code for years. Note - CLEN = LEN(CARD.NUM) 0076 ** 0077 ** 0078 ** 0079 ALGO.CHECK: ** card number algorithm check 0080 CSTR = ; PTR = 0 0081 FOR I = CLEN TO 1 STEP -1 0082 PTR = PTR + 1 0083

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread James F Thompson
SUBROUTINE CC.VALID(CCN,OK,CTYPE) * OK=0 ; WGT=2 ; SUM=0 ; CCLEN=LEN(CCN) DIGIT=0 ; CTYPE= CHK.DIGIT=CCN[CCLEN,1] ; MDIGIT=0 FOR X = CCLEN - 1 TO 1 STEP -1 CC.D=CCN[X,1] IF NOT(NUM(CC.D)) THEN CC.D=-9 DIGIT=WGT * CC.D SUM=SUM +

Re: [U2] Free Editor

2005-12-02 Thread Results
David, Ask on the SB+ list. visit http://listserver.u2ug.org, enter your e-mail address, and 'browse all' lists to join the sb+ list or digest. David Wolverton wrote: It drives me nuts that since we are an SB+ installation, there's not a great way to use UniDebugger with our UniData

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread Kevin King
Today's your lucky day. I have the LUHN check (and much more) written in Javascript and posted on the web @ http://www.precisonline.com/ccvalidate.html. Should be no big deal to translate to U2. -Kevin [EMAIL PROTECTED] http://www.PrecisOnline.com --- u2-users mailing list

Re: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

2005-12-02 Thread Dawn Wolthuis
On 12/2/05, Marilyn Hilb [EMAIL PROTECTED] wrote: Ohoh. I like that! -Original Message- From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] On Behalf Of Mats Carlid Sent: Friday, December 02, 2005 2:43 AM To: u2-users@listserver.u2ug.org Subject:Re: [U2] [UV] is

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread Gahan, Mick
Baker, This is pretty old code and it was taken out of production last January, However, it was working at the point we stopped using it. Sorry, there's not much documentation, but I seem to recall that it used the MOD10 method. Give it a try and see what happens. Mick Mick Gahan Director,

Re: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread Results
Barker, I haven't needed to know this for the last several years, so I had to look it up. This looks right, but you should double check it: http://www.epanorama.net/documents/smartcard/magcard.html - Chuck LRC Barouch Baker Hughes wrote: Say, has anyone written some code to

[U2] RE: U2 Users Digest V1 #944

2005-12-02 Thread Boyd, Diane
Subject: Re: [U2] RE: [UV] is there an equivalent to the UD ALL UniQuery keyword? In regards to seeing all Universe Dict Items on a table with one list statement: You will need to create a DICT item for each table with the ID = '@' F1 = PH F2 = COLUN NAME1 COLUMN NAME2 At the TCL PROMPT

Re: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread john reid
Did this a long time ago. It wont cost much to see if it works. j ** SUBROUTINE MOD10CD(NUM1, CDNUM) M2STR= SUM.STRING= SUM.OPERANDS= NEXT.HIGH.10=0 INPUT NUM1 LNUM1=LEN(NUM1) FOR I = LNUM1 TO 1 STEP -2 IF MOD(I,2) = 0 THEN SUM.STRING-1=NUM1[I,1] END ELSE M2STR:=NUM1[I,1] END NEXT I

[U2] OT: Hard drive failure

2005-12-02 Thread Larry Hiscock
I have a client whose hard drive in his laptop has failed. Naturally, he has no backups. Does anyone have any experience with any of the various data recovery services, and can you make any recommendations? Thanks, Larry Hiscock Western Computer Services --- u2-users mailing list

RE: [U2] [UV] - word Document

2005-12-02 Thread Ross Morrissey
You might try saving the XXX.DOC as a new file type XXX.DOCL, then associate the .DOCL file type with word.exe run with a command line switch that referenced a macro to switch to landscape when it started. Thanks, Ross. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: [U2] [UV] is there an equivalent to the UD ALL UniQuery keyword?

2005-12-02 Thread Scott Ballinger
Unfortunately, LIST-ITEM is just a raw record dump and does not display field names (just numbers) and does not apply the appropriate conversions for numbers, dates, times, etc. I like letting REVISE build the @REVISE item- why not call it from a trigger whenever the dict is updated? Or you

RE: [U2] Free Editor

2005-12-02 Thread Mike Pflugfelder
Is there any documentation for this? Like others, I've been able to download Eclipse, install it and the U2Editor, but I'm unable to connect to any of my servers as of yet. So far, I've tried a Windows and a Linux server, each running current versions of Universe, but I have yet to see any of my

Re: [U2] File to Table Mapping Uni Objects .NET

2005-12-02 Thread Jeff Powell
Zishan, On our system the files are the tables. I would do something like this to get some records. LIST ORDER WITH CUST.NUM=00012345 ORD.NUM WRITTEN.BY BY ORD.NUM to achieve similar results to select ord.num, written.by from order where cust.num='00012345' order by ord.num I hope this is

RE: [U2] OT: Hard drive failure

2005-12-02 Thread George Gallen
What I did was removed the hard drive, placed it into an external enclosure (USB). Then on another PC, ran ACRONIS Disk Imager. It can create a duplicate image on another drive of the hard drive. What is nice about it (oppsed to Norton ghost) is it will ignore drive errors (bad tracks and such).

[U2] UD Terminal Emulator using UniObjects

2005-12-02 Thread Burwell, Edward
Has anyone seen or attempted to create a UD terminal emulator with vb6 and UniObjects? What control would you use as the emulator? TextBox? PictureBox? WebBrowser control? How do you handle the terminal definition? Do you actually scrape the screen, then display the results (perhaps in a

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread karlp
Thanks James. This is a project I'm embroiled in, too. Your code worked right out of the box. Karl quote who=James F Thompson SUBROUTINE CC.VALID(CCN,OK,CTYPE) * OK=0 ; WGT=2 ; SUM=0 ; CCLEN=LEN(CCN) DIGIT=0 ; CTYPE= CHK.DIGIT=CCN[CCLEN,1] ; MDIGIT=0 FOR X =

[U2] UD Terminal Emulator using UniObjects

2005-12-02 Thread Bob Modrich
The following company sells an activex control and a .net component for terminal emulation. http://www.dart.com/default.asp I have used both and am now polishing up my telnet client using vs 2005 and their .net component. I need to work with IBM to get device licensing incorporated into this

RE: [U2] Mod10 Credit Card Checksum

2005-12-02 Thread Baker Hughes
Thanks to each of you for the good postings. You've got me going now. I may miss their target date of yesterday but Tuesday is looking pretty good. Now, if anyone has an algorithm to speed up the QA dept things will shake out rather nicely. We'll be using something which follows very closely on

[U2] More Credit Card Info

2005-12-02 Thread karlp
To those of you who have automated CC processing: Have you any experience with PaymenTech? They are our vendor. They give us NO penalty for keyed in cards vs swiped cards. Other than that, I don't know much about this. -- karl _/ _/ _/ _/_/_/ __o _/ _/

[U2] [UD] LIST XMLDATA ...

2005-12-02 Thread David Wolverton
We're trying to work the new XML logic... I'm working a simple test, and think I've done all right up to now... UniData 7.1 / Windows: LIST XMLDATA ImpCoInfo.xml _XML/IMPCOINFO.EXT COMPANY.NAME ADDR.ONE This command is giving me the response XMLDATA is not a desired record in VOC file. Open

RE: [U2] [UD] LIST XMLDATA ...

2005-12-02 Thread Kevin King
What's the filename? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Wolverton Sent: Friday, December 02, 2005 3:18 PM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] LIST XMLDATA ... We're trying to work the new XML logic... I'm working a

RE: [U2] [UD] LIST XMLDATA ...

2005-12-02 Thread David Wolverton
Well ... That's the rub!! The syntax uses the XML file (ImpCoInfo.xml) and the extract mapping file (IMPCOINFO.EXT) to extract the data 'as if' it were from the data file referenced then the extract file was built... SO, there is NO 'real' UniData file in use to run this command, but makes the

RE: [U2] UD Terminal Emulator using UniObjects

2005-12-02 Thread John Jenkins
From my recollection, wIntegrate can run as an ActiveX control and has been used as a screen scraper emulation behind GUI (WWW) applications in the past (videotex even). It may even still be In the field to do this. If you want any specifics drop me a line off the list and I'll see what I can add.

RE: [U2] More Credit Card Info

2005-12-02 Thread karlp
I'm curious about how data can be transferred. I'm interested in a text file via FTP or SFTP. Thanks, Karl quote who=Kevin King I've done quite a bit with Paymentech. What exactly is the question? -Kevin [EMAIL PROTECTED] http://www.PrecisOnline.com --- u2-users mailing list

RE: [U2] More Credit Card Info

2005-12-02 Thread Kevin King
I don't know if Paymentech has a drop file interface; it's been my experience that they prefer the socket interface. Even the settlement file is transferred and responses received over a socket interface. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit

RE: [U2] UD Terminal Emulator using UniObjects

2005-12-02 Thread Tony Gravagno
Burwell, wrote: Has anyone seen or attempted to create a UD terminal emulator with vb6 and UniObjects? What control would you use as the emulator? ... In addition to the Dart controls already recommended, see http://catalyst.com/ for SocketTools. Over the years I've used many of their

RE: [U2] [UV] - word Document

2005-12-02 Thread Tony Gravagno
Bjorn Behr wrote: We generate a 'text/word' document from Universe. What I would like to know is does anybody know what characters I need to place in the document so that when it is opened up in Word, it is in landscape format? In order to get Word to do things you need to provide more than

Re: [U2] [UV] SQL Server and UniVerse

2005-12-02 Thread Don Kibbey
With a multiprocessor box (dual core Opteron's, Yes!) you can set SQL Server to use only a set number of the processors for itself. The OS and UniVerse would then share the remaining. Aside from that and tossing lots of memory and disk into the box you should be OK. One side note is that you

RE: [U2] Free Editor

2005-12-02 Thread Walter
I have Unidata 7.1 on Windows XP and I had the same server conncetion problems until I setup the server as follows: Name: any name (I tied the server name to the windows account I was logged into) Host: 'localhost' (without the quotes) User: Name of the windows account you are logged into