RE: [U2] spool images going to word documents

2005-07-05 Thread Bob Witney
Many thanks The BR on the end of each line works fine Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Larry Hiscock Sent: 04 July 2005 17:47 To: u2-users@listserver.u2ug.org Subject: RE: [U2] spool images going to word documents It's not a cr/lf

[U2] monitoring tool for universe

2005-07-05 Thread Habeebulla Suhail
Hello all, We are using UniVerse 9.6.2.10 on AIX 5.2 ML 04, and I'm looking for a monitoring tool on UniVerse. Can the experts suggest some good monitoring tools. Regards, Suhail --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] spool images going to word documents

2005-07-05 Thread TPellitieri
Bob Witney [EMAIL PROTECTED] wrote on Mon, 4 Jul 2005 14:20:07 +0100 I am building an email as follows to send a report as a word attachment via sendmail from aix 5.2 (Universe 10) ... Okay...something funky happened with this in the digest. The problem you reported appeared there! After the

[U2] JDBC access to the UD Personal Edition

2005-07-05 Thread Wendy Smoak
So... where do I start? I've only used UOJ to connect to UniData. Now I want to play with Hibernate, which will need to connect with JDBC. I've heard of 'Visual Schema Generator', is that what I need to start with? If someone will just point in the general direction of how to get started, I

[U2] running enable and disable commands on Solaris 2.8

2005-07-05 Thread Karjala Koponen
We are converting from AIX to Solaris 2.8 with UniData 6.0.9. On AIX I could put users into the printq group and they could run procs/paragraphs that execute PTRENABLE and PTRDISABLE commands when mounting and printing on forms and then returning to normal stock. I have found that I cannot do

Re: [U2] JDBC access to the UD Personal Edition

2005-07-05 Thread Josh Volosov (3)
Hi, I will be out of the office for the afternoon of July 5th. I will return on July 6th. I will not have access to e-mail or voice mail for the afternoon. If a you need an immediate response to your e-mail please e-mail [EMAIL PROTECTED] or you can call Frank at extension 467. Thanks and

[U2] [UV] indexed 64 bit files

2005-07-05 Thread iggchamp
Hi all, UV9.6.1.1.14, HPUX 11 I converted a file that had secondary indices to 64bit. Now I cannot create any new indices on it. Anytime I try to do this the CREATE.INDEX program just hangs for a while and returns the message Unable to generate unique index file name!. I put a debug

RE: [U2] [UV] indexed 64 bit files {Unclassified}

2005-07-05 Thread HENDERSON MIKE, MR
UV 9.6.1, 64-bit files AND secondary indexes? I suspect there's bravery award in the mail for you Scott! ;-) I would have thought that an upgrade was definitely indicated. Alternatively, could you make the file distributed rather than 64-bit? Improving CREATE.FILE may work, but it's absolutely

Re: [U2] [UV] indexed 64 bit files

2005-07-05 Thread Glenn Herbert
It's odd that you could convert the data file (which would have at some point done a mkdbfile with a -64BIT option) yet cannot create indexes. A few things could cause that particular message to be generated by mkdbfile: 1) Your system doesn't support 64 bit files (which we know is patently

Re: [U2] String compare anomaly {Unclassified}

2005-07-05 Thread Craig Bennett
Mike, I have to code 'if (TheField eq 0) and (len(TheField) eq 5) then How about: if (TheField MATCHES 5N) AND (TheField eq 0) then or if (TheField MATCHES '0') then Craig --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit

RE: [U2] String compare anomaly {Unclassified}

2005-07-05 Thread Womack, Adrian
Checkout the COMPARE() function in HELP -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of HENDERSON MIKE, MR Sent: Wednesday, 6 July 2005 9:56 AM To: u2-users@listserver.u2ug.org Subject: [U2] String compare anomaly {Unclassified} When I do a compare, 0

RE: [U2] String compare anomaly {Unclassified}

2005-07-05 Thread HENDERSON MIKE, MR
All right, Craig, there are other alternatives that _will_ work. :-) But why doesn't 'if (TheField eq 0)' work properly? [I can sort of understand this being mis-recognised as a numeric compare] Or 'if (TheField: eq 0 )' ? [Now that really should work, in my view, but

RE: [U2] String compare anomaly

2005-07-05 Thread [EMAIL PROTECTED]
Mike Henderson wrote: When I do a compare, 0 compares as equal to 0 [one zero is the same as five zeros] OK, so maybe it thinks it's a numeric compare, despite the data being surrounded by quotes Oops! 0 compares as equal to 0 [zero-space is the same as five zeros-space] But

Re: [U2] String compare anomaly {Unclassified}

2005-07-05 Thread Craig Bennett
But why doesn't 'if (TheField eq 0)' work properly? [I can sort of understand this being mis-recognised as a numeric compare] Or 'if (TheField: eq 0 )' ? [Now that really should work, in my view, but it doesn't] Sorry Mike :) I was in helpful but thoughtless mode, didn't