Re: [U2] Printing an RTF file from Universe

2004-11-09 Thread FFT2001
In a message dated 11/8/2004 2:08:44 PM Pacific Standard Time, [EMAIL 
PROTECTED] 
writes:

> however, we would like 
> to be able to print it automatically from within a Universe program. Is 
> there a way to this? When we use PRINTER ON and PRINT, the RTF 
> info(eg. {\rtf1\ansi\ansicpg1252\uc1) is printed out.

After you write the document, launch an Accuterm script that then launches 
Word and tells Word to print the document.
Will
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] PICK Assembler Language

2004-11-09 Thread FFT2001
In a message dated 11/8/2004 6:19:53 AM Pacific Standard Time, 
[EMAIL PROTECTED] writes:

> I'm not familiar with MvBase, but I meant when PICK was the ONLY O/S on the
> box, and the kernel was a PICK kernel .. I grew up on Ultimate
> (Tech-Support, actually), so you can understand my model ..
> 
> I'll make an exception for something like the old IBM VM implementation of
> Ultimate, where Ult ran "NATIVE" under it's own virtal machine ..

If you make an exception for Ult on VM, then you make the exact identical 
exception for MvBase on Windows.  The abs code sections are brothers to each 
other.  It's a native virtual machine, just like Ult on VM was.  Exactly.
Will
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: Memo: Re: [U2] PICK Assembler Language

2004-11-09 Thread FFT2001
In a message dated 11/8/2004 7:57:08 AM Pacific Standard Time, 
[EMAIL PROTECTED] writes:

> Before there was this new fangled Universe and Unidata, PICK was a platform
> independent os/database. It used to run on a variety of platforms from big
> IBM mainframes all the way down to small minicomputers, and then when PC's
> were invented (8086 based!!) even on them.
> 

It still is platform independent.

> This was all achieved by having a PICK Virtual Machine, which was ported to
> each of these platforms. This VM had a very strange structure, with a
> number of registers and it's own set of instructions. The language used to
> program this VM at a low level was called the PICK assembler. I believe
> this is the language being referred to...

There are still virtual machine implementations being done.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Index problem

2004-11-09 Thread kafsat taiyus
Thank you Ken,

We have modified the subroutine according to your suggestions. It is working
as expected.

Thank you again for your help.

Regards
Kafsat



-Original Message-
From: Ken Wallis [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 4 November 2004 10:57 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] Index problem

Kafsat,

I believe that if you pass the record data into the subroutine as a
parameter using @RECORD instead of re-reading it from the file, then you
will have a better chance of getting the behaviour you want:

V
SUBR("KAFSATS",@ID,@RECORD,OTHERSTUFF)
...

SUBROUTINE KAFSATS(RESULT, REC_ID, REC_DATA, OTHERSTUFF)
...
RETURN
END

Cheers,

Ken

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of kafsat taiyus
> Sent: Thursday, 4 November 2004 11:00 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [U2] Index problem
>
>
> Thank you everybody for all your answers.
>
> I have used debug and stepped though the subroutine.  While
> adding a new
> record the program is reading the new non existing record
> from the same file
> and not returning anything for the virtual field.  This is
> one reason for
> not updating the index in the first place.
>
> I have tried to write same record twice with the same ID
> overwriting the
> existing record.  In this case the subroutine return the
> correct value but
> the index still does not get updated.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

This email and any attachments are confidential and intended solely for the
use of the person or entity to whom they are addressed. If you are not the
intended recipient, please do not disclose, store, copy or take any action
in reliance on it or them. If you have received this message in error,
please tell us by reply email (or telephone + 61 (0) 3 9274 9100) and delete
all copies on your system. Any opinion, advice or information in this email
is not necessarily that of the owners or officers of this company. Please
advise us immediately if you or your employer do not consent to email for
messages of this type. 

Retail Decisions has taken reasonable precautions to ensure that any
attachment to this email has been swept for viruses. However, we cannot
accept any liability for any damage sustained as a result of software
viruses, and would advise that you carry out your own virus checks before
opening any attachment. Please note that communications sent by or to any
person through our computer system may be viewed by other Retail Decisions
employees or officers strictly in accordance with law.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] WordPerfect document type

2004-11-09 Thread Anthony W. Youngman
In message <[EMAIL PROTECTED]>, Allen E. 
Elwood <[EMAIL PROTECTED]> writes
Just import a WordPerfect mail merge into Unidata and reverse engineer
it...twiddle with the bits to see where the list of addresses are and the
body of the text, what is used as a delimiter, etc.  Unless all the ASCII
data is encrypted, it shouldn't be too hard.
I can't remember the details, but we regularly output WP merge files 
from UV. Try and find some WP5 docu (old I know), but I *think* it was 
ctrl-E and ctrl-R were the field and record delimiters. Modern versions 
of WP should recognise v5 merge files.

When I'm at work I can try and hunt up the details ...
Cheers,
Wol
--
Anthony W. Youngman <[EMAIL PROTECTED]>
'Yings, yow graley yin! Suz ae rikt dheu,' said the blue man, taking the
thimble. 'What *is* he?' said Magrat. 'They're gnomes,' said Nanny. The man
lowered the thimble. 'Pictsies!' Carpe Jugulum, Terry Pratchett 1998
Visit the MaVerick web-site -  Open Source Pick
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UV to Access via ODBC - driver issue (solved)

2004-11-09 Thread John Koch-Northrup
We solved this issue...   turns out I was chasing the wrong solution.  
In reality, the data type of the ID in the Access database had been
changed from number to text.Where I was originally passing a SQL
statement of SELECT COLUMN FROM TABLE WHERE ID = 2 ... I switched it to
SELECT COLUMN FROM TABLE WHERE ID = '2' and things worked.

Ironic that it was that simple, but sometimes the simple things trip me
up!

John


>>> [EMAIL PROTECTED] 11/7/2004 11:43:38 AM >>>
I've been struggling through this one the last few days - any help
would be GREATLY appreciated.

Platform:   Dataflo 5.8.4 on Universe 10.0.10 on Win2000 sp 3  (though
I don't think Dataflo is an issue here...)

Previously working state:  

Dataflo screen via the Universe BCI module calls ODBC on the server -
in Data Sources (ODBC) System DSN tab I have a pointer to a Microsoft
Access 2000 file.Screen sends an id to the Access database - a
total
number of parts on a reel is returned from the Access database and
placed into the screen.   It's been working nicely for about 6 months.

How it was broken:   

The system that stores data in the Access file was upgraded on
Thursday.   The Access file is now (I believe) at XP level.   The ODBC
connection is broken.

Attempted fix (that failed):

Research on Microsoft's site led me to believe that upgrading to Jet
4.0 sp 8 and MDAC 2.8 would fix the problem.   I found an article
(which
I oddly can't find now...) that stated that Access beyond version 2000
no longer had a specific ODBC driver to connect to it - you now
connected through the Oracle driver.   Admittedly - I thought that was
an odd statement and I'm trying to get back to that article and read
it
through again. 

At the moment - I have the server sitting with Jet 4.0 sp 8 and MDAC
2.8 - and cannot connect to the Access file correctly.   Anyone run
into
something similar?  

Thanks!

John Koch-Northrup
---
u2-users mailing list
[EMAIL PROTECTED] 
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV to Access via ODBC - driver issue

2004-11-09 Thread Richard Taylor
Try running repair on the Access database.  You can often get subtle
corruption that can prevent ODBC connections from working properly.
In my experience Access is not the most stable of databases.

Rich Taylor | Senior Programmer/Analyst| VERTIS
250 W. Pratt Street | Baltimore, MD 21201
P 410.361.8688 | F 410.528.0319 
[EMAIL PROTECTED] | http://www.vertisinc.com

Vertis is the premier provider of targeted advertising, media, and
marketing services that drive consumers to marketers more effectively.

"The more they complicate the plumbing
  the easier it is to stop up the drain"

- Montgomery Scott NCC-1701



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Koch-Northrup
Sent: Sunday, November 07, 2004 12:44 PM
To: [EMAIL PROTECTED]
Subject: [U2] UV to Access via ODBC - driver issue

I've been struggling through this one the last few days - any help
would be GREATLY appreciated.

Platform:   Dataflo 5.8.4 on Universe 10.0.10 on Win2000 sp 3  (though
I don't think Dataflo is an issue here...)

Previously working state:  

Dataflo screen via the Universe BCI module calls ODBC on the server -
in Data Sources (ODBC) System DSN tab I have a pointer to a Microsoft
Access 2000 file.Screen sends an id to the Access database - a total
number of parts on a reel is returned from the Access database and
placed into the screen.   It's been working nicely for about 6 months.

How it was broken:   

The system that stores data in the Access file was upgraded on
Thursday.   The Access file is now (I believe) at XP level.   The ODBC
connection is broken.

Attempted fix (that failed):

Research on Microsoft's site led me to believe that upgrading to Jet
4.0 sp 8 and MDAC 2.8 would fix the problem.   I found an article (which
I oddly can't find now...) that stated that Access beyond version 2000
no longer had a specific ODBC driver to connect to it - you now
connected through the Oracle driver.   Admittedly - I thought that was
an odd statement and I'm trying to get back to that article and read it
through again. 

At the moment - I have the server sitting with Jet 4.0 sp 8 and MDAC
2.8 - and cannot connect to the Access file correctly.   Anyone run into
something similar?  

Thanks!

John Koch-Northrup
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] backups

2004-11-09 Thread Mike Dallaire
We have a new customer running UV 10.1.3 on a Windows 2000 box.  They are
wanting to get some feedback on using St. Bernard Software's Open File agent
9.1 to run their backups.  We have no experience with it whatsoever and no
current customers using it.  Does anyone out there have any info or opinions
they would like to share about it?  Good or bad.
Thanks,
Mike Dallaire
Mortgage Builder Software Inc.
(248) 208-3223 ext. 103
[EMAIL PROTECTED]
www.mortgagebuilder.com
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Printing an RTF file from Universe

2004-11-09 Thread Scott Ballinger
I do this using Accuterm to view/edit/print an rtf formatted document from a
PC, but instead of Word I associate Wordpad with .rtf extensions, so that it
still works if Word is not installed on the client PC.

Here is the code that uses Accuterm to send an item from a universe file
(DOCUMENTS) to c:\DOC.rtf,  then starts wordpad, then sends the result back.
IIRC Albert Kallal posted some vb script  to comp.databases.pick to
automatically print using word- try googling  cdp for "printing word
documents." There are also some vb scripts to do this sort of thing on the
Accusoft website (asent.com).

Here is my snippet to send doc.rtf to a pc, edit/view/print it, then send back
to uv:

* send it
DATA "O","1=T","","S","K","DOCUMENTS",DOC.ID,"C:\","DOC.rtf"
EXECUTE "FT"
* at2k2 doesn't need the 'start'
IF ACCUTERM EQ 1 THEN X = "start" else X = ""
PRINT ESC:STX:">":X:" c:\DOC.rtf":CR:
IF ACCUTERM EQ 2 THEN
  * at2k2 will wait for wordpad to finish, then execute this
  * "info" request, which will be fed to the input below. If
  * not at2k2 then the user will have to press CR to allow the
  * uv session to continue.
  PRINT ESC:STX:"I":CR:
END ELSE
  PRINT
  PRINT "Press RETURN to continue...":
END
INPUT XXX
* get it back
DATA "O","1=T","","R","K","C:\","DOC.rtf","DOCUMENTS",DOC
EXECUTE "FT"

Scott Ballinger
Pareto Corporation
Edmonds WA USA
206 713 6006



From: [EMAIL PROTECTED] on behalf of Brian Parker
Sent: Mon 11/8/2004 2:04 PM
To: [EMAIL PROTECTED]
Subject: [U2] Printing an RTF file from Universe



We are trying to use a Word document as a template. As such, we
create the document with "tags" (eg. XXCUSTNAMEXX ) and then
save the document as an RTF. In Universe, we read in this RTF file,
change the tags to the data and write this new file out as an RTF. This
new file can be opened with Word and printed, however, we would like
to be able to print it automatically from within a Universe program. Is
there a way to this? When we use PRINTER ON and PRINT, the RTF
info(eg. {\rtf1\ansi\ansicpg1252\uc1) is printed out.

I receive the daily digest, so I may not answer any follow up questions
right away.

Thanks,

Brian Parker


WISL while you work!

Voice:519-884-2604
FAX:  519-884-0317
Mail: Waterloo Information Systems Limited
  33 Dupont Street East
  Waterloo ON
  N2J 2G8
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

[demime 1.01d removed an attachment of type application/ms-tnef which had a 
name of winmail.dat]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObjects.Net specifying port

2004-11-09 Thread Ron White
Look in the UniObjects .Net Help under UniSession Properties.
One of the properties is public int HostPort {get; set;}.
Ron White
- Original Message - 
From: "Ian Clark" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, November 09, 2004 8:35 AM
Subject: [U2] UniObjects.Net specifying port


Hi,
We've recently received UniObjects.NET and are investigating upgrading our 
existing UO code to .NET.  However our RPC daemon is configured to run on 
a different port from the normal.  Does anyone know how to specify the 
port number used to connect when using UO.NET.  Previously our code was 
able to perform this using the hostname property (e.g. "HOST:PORT") 
however UO.NET doesn't like this and complains that the host doesn't 
exist.  I can't seem to find a constructor that allows me to create a 
session without actually opening a session, and unfortunately the 
opensession method does not allow a port specification.

Anyone got any ideas ?
I Clark
The information in this electronic mail message is Confidential and may be 
legally privileged.
It is intended solely for the addressees. Access to this internet 
electronic mail message by anyone else is unauthorized.
If you are not the intended recipient, any disclosure, copying, 
distribution or any action taken or omitted to be taken
in reliance on it is prohibited and may be unlawful. The sender believes 
that this E-mail and any attachments were free
of any virus, worm, Trojan horse, and/or malicious code when sent.
This message and its attachments could have been infected during 
transmission. By reading the message and opening any
attachments, the recipient accepts full responsibility for taking 
protective and remedial action about viruses and other
defects. The sender's employer is not liable for any loss or damage 
arising in any way from this message or its attachments.
-VRG3a-
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
[ E-mail scanned Virus Free by NAI - McAfee anti-virus system ]



---
[ E-mail scanned Virus Free by NAI - McAfee anti-virus system ]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] WordPerfect document type

2004-11-09 Thread Allen E. Elwood
Just import a WordPerfect mail merge into Unidata and reverse engineer
it...twiddle with the bits to see where the list of addresses are and the
body of the text, what is used as a delimiter, etc.  Unless all the ASCII
data is encrypted, it shouldn't be too hard.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of KevinJ Jones
Sent: Tuesday, November 09, 2004 09:14
To: [EMAIL PROTECTED]
Subject: RE: [U2] WordPerfect document type


It has to do with Datatel, a Unidata based package used at college's
that whose impimentation and coding environments are bizarre to say the
least.


Kevin Jones
(315) 445-4270

>>> [EMAIL PROTECTED] 11/9/2004 10:04:55 AM >>>
I think you're asking the wrong list.  I fail to see what this question
has
to do with the U2 products.

Gordon J. Glorfield
Sr. Applications Developer
MAMSI (A UnitedHealth Company)
301-360-8839



> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Lora
> Pennington
> Sent: Tuesday, November 09, 2004 8:04 AM
> To: U2 Users Group; Info-Datatel; FR Talk
> Subject: [U2] WordPerfect document type
>
>
> Does anyone know how to create an document type in wordperfect
> for email merge ?
>
> I am looking at answernet document 184.117  How to set up email
> type documents in CC.
> It shows a document type of EMAIL E-Mail built from Doc Paras.
>
[snip]


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 agent, the reader is hereby notified

that any dissemination, distribution or copying of this e-mail is
prohibited. If you have received this e-mail in error, please notify
the
sender by replying to this message and delete this e-mail immediately.

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


RE: [U2] WordPerfect document type

2004-11-09 Thread KevinJ Jones
It has to do with Datatel, a Unidata based package used at college's
that whose impimentation and coding environments are bizarre to say the
least. 


Kevin Jones
(315) 445-4270

>>> [EMAIL PROTECTED] 11/9/2004 10:04:55 AM >>>
I think you're asking the wrong list.  I fail to see what this question
has
to do with the U2 products.

Gordon J. Glorfield
Sr. Applications Developer
MAMSI (A UnitedHealth Company)
301-360-8839 



> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Lora 
> Pennington
> Sent: Tuesday, November 09, 2004 8:04 AM
> To: U2 Users Group; Info-Datatel; FR Talk
> Subject: [U2] WordPerfect document type
> 
> 
> Does anyone know how to create an document type in wordperfect
> for email merge ?
> 
> I am looking at answernet document 184.117  How to set up email
> type documents in CC.
> It shows a document type of EMAIL E-Mail built from Doc Paras.
> 
[snip]


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 agent, the reader is hereby notified

that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify
the 
sender by replying to this message and delete this e-mail immediately.

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


[U2] [AD-JOB] MHC Programmer Opportunity

2004-11-09 Thread Jay Falck
I am not a recruiter and don't even play one on TV but I received a request
today from someone looking for a senior level, possible team lead,  Universe
programmer with MHC experience. They are looking for someone with HIPAA
Transactions and Sybase translator experience as well.



The position is in Indiana, north of Indianapolis. If you are interested or
know someone who is, please let me know and I'll pass the information along.



Thanks,



Jay



Jay Falck, CISSP, CHSS

Unicorn Computing

512-563-4132
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Jackie Burhans is out of the office.

2004-11-09 Thread Jackie Burhans
I will be out of the office starting  11/09/2004 and will not return until
11/10/2004.

I am out of the office on vacation. I will have  limited access to email or
voicemail and will return your message when I return.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniVerse 10.1.2 bug/error

2004-11-09 Thread James Cowell
Licence counting didn't work properly for us when we installed UV 10.1.2 on our 
development and benchmarking machines (we run on HP-UX 11i).  I think it was 
broken in 10.1.1. 

The uvlictool problem is separate but one that we reported, running uvlictool 
clean_lic -a to correct your licence count doesn't work. It messes up the 
licence information in shared memory, the only way to correct it is to restart 
UV.  We got a patched version of uvlictool from IBM to work around the problem. 
 We now have UV 10.1.6 which still doesn't count licences correctly but at 
least uvlictool now works (fixed in 10.1.4), we still won't be deploying it to 
production systems though.




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 08 November 2004 16:28
To: U2-Users 
Subject: [U2] UniVerse 10.1.2 bug/error


I upgraded to uniVerse 10.1.2 over the weekend (AIX 4.3.3) and now if I do

analyze.shm -x

the login count shows 1, or at other times different numbers. There are
currently 27 users logged in this system.

Anyone heard of this? Is there a fix? We have a routine that uses this
output to verify license usage.

If I run uvlictool report_lic -a, I get this:

Server Edition mode of licensing is in effect.
No. Pid, Package  Device name IP address  Device sub-key 1
  31070
3   23030
23680
2 license seats being used by this device.
6   26102
29096
2 license seats being used by this device.
11  33262
20928
2 license seats being used by this device.
12  39132
13  22166
1 license seats are in use.
33 license seats are available.


Clearly something's broken as we have 42 licenses:
>UV: config

Configuration data for license number :
User limit =42


Any ideas?

-- 
Karl L. Pearson
Director of IT,
ATS Industrial Supply
Direct: 801-978-4429
Toll-free: 800-789-9300 1,29
Fax: 801-972-3888
http://www.atsindustrial.com
[EMAIL PROTECTED]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


**
The contents of this e-mail are subject to contract in all cases and William 
Hill PLC, its subsidiaries or affiliates make no contractual commitment save 
where confirmed by hard copy.  

The contents of this e-mail do not necessarily represent the views of William 
Hill PLC, its subsidiaries or affiliates.  We accept no liability, including 
liability for negligence, in respect of any statement in this e-mail. 
This e-mail and any files transmitted with it are confidential, may be subject 
to legal privilege and intended solely for the use of the individual or entity 
to which they are addressed.  If you are not the intended recipient, you are 
hereby notified that any use or dissemination of this communication is strictly 
prohibited.  If you have received this e-mail in error, please notify us 
immediately, then delete this e-mail.  

Please note that William Hill can accept no responsibility for viruses and it 
is your responsibility to scan any emails and their attachments.

This message was from William Hill PLC whose registered office is Greenside 
House, 50 Station Road, Wood Green, London N22 7TP.  Company Registration 
Number: 4212563 England.
**
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] PICK Assembler Language

2004-11-09 Thread Richard Taylor
-Original Message-


I can't imagine anyone on this forum having to break up this sentence
likewise on the current platforms. On this client's older MCD, it truly
makes a difference.


-

Ah, Mark..I do this all the time for the performance reasons mentioned
:)

Rich Taylor | Senior Programmer/Analyst| VERTIS
250 W. Pratt Street | Baltimore, MD 21201
P 410.361.8688 | F 410.528.0319 
[EMAIL PROTECTED] | http://www.vertisinc.com

Vertis is the premier provider of targeted advertising, media, and
marketing services that drive consumers to marketers more effectively.

"The more they complicate the plumbing
  the easier it is to stop up the drain"

- Montgomery Scott NCC-1701
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] WordPerfect document type

2004-11-09 Thread Gordon Glorfield
I think you're asking the wrong list.  I fail to see what this question has
to do with the U2 products.

Gordon J. Glorfield
Sr. Applications Developer
MAMSI (A UnitedHealth Company)
301-360-8839 



> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Lora 
> Pennington
> Sent: Tuesday, November 09, 2004 8:04 AM
> To: U2 Users Group; Info-Datatel; FR Talk
> Subject: [U2] WordPerfect document type
> 
> 
> Does anyone know how to create an document type in wordperfect
> for email merge ?
> 
> I am looking at answernet document 184.117  How to set up email
> type documents in CC.
> It shows a document type of EMAIL E-Mail built from Doc Paras.
> 
[snip]


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 agent, the reader is hereby notified 
that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify the 
sender by replying to this message and delete this e-mail immediately. 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UniObjects.Net specifying port

2004-11-09 Thread Ian Clark
Hi,

We've recently received UniObjects.NET and are investigating upgrading our 
existing UO code to .NET.  However our RPC daemon is configured to run on a 
different port from the normal.  Does anyone know how to specify the port 
number used to connect when using UO.NET.  Previously our code was able to 
perform this using the hostname property (e.g. "HOST:PORT") however UO.NET 
doesn't like this and complains that the host doesn't exist.  I can't seem to 
find a constructor that allows me to create a session without actually opening 
a session, and unfortunately the opensession method does not allow a port 
specification.

Anyone got any ideas ?

I Clark


The information in this electronic mail message is Confidential and may be 
legally privileged.
It is intended solely for the addressees. Access to this internet electronic 
mail message by anyone else is unauthorized.
If you are not the intended recipient, any disclosure, copying, distribution or 
any action taken or omitted to be taken
in reliance on it is prohibited and may be unlawful. The sender believes that 
this E-mail and any attachments were free
of any virus, worm, Trojan horse, and/or malicious code when sent.
This message and its attachments could have been infected during transmission. 
By reading the message and opening any
attachments, the recipient accepts full responsibility for taking protective 
and remedial action about viruses and other
defects. The sender's employer is not liable for any loss or damage arising in 
any way from this message or its attachments.
-VRG3a-
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2][uv]technical bulletin # 74-0085

2004-11-09 Thread Peter Olson
oops...that should be "usplog info" 



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 agent, the reader is hereby notified 
that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify the 
sender by replying to this message and delete this e-mail immediately. 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2][uv]technical bulletin # 74-0085

2004-11-09 Thread Peter Olson
where / who can one obtain a copy of ibm's technical bulletin  # 74-0085 (
upslog info ? )


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 agent, the reader is hereby notified 
that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify the 
sender by replying to this message and delete this e-mail immediately. 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] WordPerfect document type

2004-11-09 Thread Lora Pennington
Does anyone know how to create an document type in wordperfect
for email merge ?

I am looking at answernet document 184.117  How to set up email
type documents in CC.
It shows a document type of EMAIL E-Mail built from Doc Paras.

When I hit the ... at the document types field in DOC  all I have are these:

| 1:  WP*
|
| 2:  WP*ASCII Ascii Format Output File
|
| 3:  WP*CHARACTER.XLATi
|
| 4:  WP*CODE  Code Only Updates
|
| 5:  WP*COQT  Comma-Quote Output File
|
| 6:  WP*COQTA Comma-Quote "all" Output File
|
| 7:  WP*DIF   Dif Format Output File
|
| 8:  WP*FORM  Print Form Processing
|
| 9:  WP*LIST  Save Named Savedlist
|
|10:  WP*P Wordmarc Personal Letters
|
|11:  WP*T ** Template Letter **
|
|12:  WP*TLG.FORM  Test of Forms
|
|13:  WP*TLG.WPTest for Concordia
|
|14:  WP*WINTEG.WORD   MS Word for Windows Merge
|
|15:  WP*WINTEG.WORD.LTQ   MS Word for Windows Merge LTREQ
|
|16:  WP*WINTEG.WP Word Perfect 6.0 for Win/Merge
|17:  WP*WINTEG.WP.LTQ WordPerfect for WinMerge LTREQ
|
|18:  WP*WPWordperfect Merge/print
|
|19:  WP*WP1   Wordperfect: Method 1
|
|20:  WP*WP2   Wordperfect Merge/print
|
|21:  WP*WPF   Wordperfect Merge
|
|22:  WP*WPMO  Wordperfect Merge File Only
|
|23:  WP*WPNS  Wordperfect Merge/print
|
|24:  WP*WPOFFCOfficer Letters
|
|25:  WP*YALE.ASCIIYale Ascii


Thanks


Lora Pennington
===
 Lora Pennington
 Application Database Administrator
 International Lutheran Laymen's League
 Phone: (314) 317-4133
 Phone: 1-800-944-3450 ext. 4133
 Fax:   (314) 317-4299
 [mailto:[EMAIL PROTECTED]
  Visit Us at:  [www.lhm.org]

The Coming Of Jesus Christ Is Closer Than Ever.
Will He Find You  Faithful?  www.jesushasrisen.com
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Nasty error in Universe on Windows

2004-11-09 Thread Adrian Matthews
We got the following message in the event log of our windows 2000 server
(Universe 10.1.0):

UniVerse error: Failed to release process table lock. Win32 error: 6.
The handle is invalid..

This seemed to hang the Universe Resource process and no-one could log
on or do LISTU etc etc. People already logged on were fine.

We rebooted the server and it seems fine now but obviously we're
concerned it will happen again. We've reported it to our VAR but I
thought I'd see if anyone here could point me in the direction of what
might have caused it.

Thanks

Adrian



The information contained in this email is strictly confidential and for the 
use of the addressee only, unless otherwise indicated. If you are not the 
intended recipient, please do not read, copy, use or disclose to others this 
message or any attachment. Please also notify the sender by replying to this 
email or by telephone +44 (0)20 7896 0011 and then delete the email and any 
copies of it. Opinions, conclusions (etc.) that do not relate to the official 
business of this company shall be understood as neither given nor endorsed by 
it.  IG Markets Limited and IG Index Plc are authorised and regulated by the 
Financial Services Authority and, in Australia, by the Australian Securities 
and Investments Commission.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/