RE: [U2] UV and Fedora Core 3

2005-01-24 Thread Claus Derlien
Hi George,


So far my experience is that Universe works smoothly on whatever linux distro 
you throw it at :-)

I have uv 10.1 running perfectly on a debian 3.1 sarge testing distro, and i 
have also tried on ubuntu
suse, mandrake, turbolinux etc. etc. :-) 

I totally skipped redhat rhel, because they are not so free, i still need to 
try universe on CentOS which is
a RedHat 3.0 RHEL distro without the redhat logo , and therefore its free :-)  

some of the distros have a more correctly unix way of doing things, so you need 
to fiddle with your
config files to make UV start automagically on a boot, but it really is no 
problem at all..

I guess its possible to embed universe on a live cd distro, where the data can 
be placed on an USB ram stick,
then you wont even need a harddisk, nice concept for a demo application :-)

AFAIK the only thing you need to check before loading universe on a linux 
machine is the glibc library version.


best regards from denmark

Claus Derlien

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of George Gallen
 Sent: Friday, January 21, 2005 4:13 PM
 To: Ardent List
 Subject: [U2] UV and Fedora Core 3
 
 
 FYI,
 
 UV 10 seems to work just fine on FC3. I had a test machine running on
 FC2, and upgraded
 that machine to FC3. So far it seems to be running fine. The 
 UV version
 I loaded on FC2
 was made to run on Redhat 7.2 / 8.0, which also loaded on RH 9.0
 
 George
 
 


Frie Funktionfrer - faglig organisation og tvfrfaglig a-kasse - www.f-f.dk

***
Denne email og alle filer vedlagt som bilag kan indeholde fortroligt materiale, 
der kun er beregnet for adressaten,
og maa ikke udleveres eller kopieres til uvedkommende. Har De ved en 
fejltagelse modtaget denne email, bedes
De venligst omgaaende meddele os dette pr. telefon : 6313 8550. Paa forhaand 
tak.
***
This email and any files transmitted with it may contain confidential 
information intended for the addressee(s) only.
The information is not to be surrendered or copied to unauthorised persons. If 
you have received this
communication in error, please notify us immediately by telephone: +45 6313 
8550. Thank you.
***
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
The words thread safe leap to mind.  If there are multiple threads and no 
locks then mangling could be expected if a later launched thread assaults 
part of the array before the earlier launched thread writes it back.  Just a 
thought.
BobJ
- Original Message - 
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Sunday, January 23, 2005 9:31 PM
Subject: [U2] UniObjects and VB.Net


I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net
application.
I am populating a UniDynArray with a file parser.  The Array is large, 
more
then 300 attributes.
When I run this parser, my array is mangled.  Attribute contents are mixed
with each other, attribute counts don't match with what I wrote in the 
code.

When I run the code in the debugger, nice and slowly, I don't see a 
problem,
only that sometimes it takes a second or to, for the UniDynArray to come
back from a call.  But when I run full speed, the mangling happens.

It looks like VB.NET starts several threads to deal with UniObjects, does
not wait until the thread is finished and then mangles the different 
pieces.
Sometimes I get System.Runtime.InterOp.COMExceptions.

Has anybody had similar problems?  Found Work-arounds?
I can't move over to Uodotnet yet.  THere is too much code.  I though of
parsing my file into a Uodotnet.UniDynArray but then I saw that I can't 
even
initialize a .Net UniDynArray with a session object.
Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniObjects and VB.Net

2005-01-24 Thread Martin Scholl
Bob,
that is what what I observe.  Here is what I believe is happening:

VS.Not has a 'thunking' layer between its excution layer aka 'the CLR(Common
Language Runtime)' aka 'virtual machine' aka 'Managed Code' and UniObjects,
which is a dll that is compiled into machine code. For some reason this
'Interop Com Service' as Microsoft calls it, spawns off multiple threads
that manipulate the UniDynArray.  Those threads cross and mangle the array.

I wonder if there is a way to make sure that one thread completes before the
next one is started. A way to protect the UniArray from multiple access.

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of BobJ
Sent: Monday, January 24, 2005 5:47 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniObjects and VB.Net


The words thread safe leap to mind.  If there are multiple threads and no
locks then mangling could be expected if a later launched thread assaults
part of the array before the earlier launched thread writes it back.  Just a
thought.
BobJ
- Original Message -
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Sunday, January 23, 2005 9:31 PM
Subject: [U2] UniObjects and VB.Net


I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net
 application.

 I am populating a UniDynArray with a file parser.  The Array is large,
 more
 then 300 attributes.
 When I run this parser, my array is mangled.  Attribute contents are mixed
 with each other, attribute counts don't match with what I wrote in the
 code.

 When I run the code in the debugger, nice and slowly, I don't see a
 problem,
 only that sometimes it takes a second or to, for the UniDynArray to come
 back from a call.  But when I run full speed, the mangling happens.

 It looks like VB.NET starts several threads to deal with UniObjects, does
 not wait until the thread is finished and then mangles the different
 pieces.
 Sometimes I get System.Runtime.InterOp.COMExceptions.

 Has anybody had similar problems?  Found Work-arounds?

 I can't move over to Uodotnet yet.  THere is too much code.  I though of
 parsing my file into a Uodotnet.UniDynArray but then I saw that I can't
 even
 initialize a .Net UniDynArray with a session object.
 Martin Scholl
 President HIPAAsuite
 18910 New Hampshire Ave
 Brinklow, MD 20862
 301-924-5537  Phone
 301-570-0139  Fax
 301-613-9572  Cell
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Unidata Training

2005-01-24 Thread Martin Scholl
Kevin,
Here is how I've learned most:

Get on the 'Test' account and try.
Try to query and to program in Basic. 
Try to understand existing code
Study the dictionaries of the files.
Use this list and ask when your stuck. 
Sometimes just formulating the question gives the solution.
There are no dumb questions except the ones you don't ask.
Many folks are happy to answer them.  

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jimmy Dixon
Sent: Friday, January 21, 2005 9:48 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Unidata Training


Greetings one and all: 

I have to admit that I have been lurking around the list for the past
several months, in an effort to see what the list is all about. 

I am new to the Unidata arena, and from what I am seeing, there is a lot
to be learned to use it effectively.  Our accounting system is built on
Unidata (v 6.0).  I have very little in the way of documentation, due to
the fact, that the software company wants you to go through them to get
anything done.  This is a very expensive proposition to say the least. 

I am wondering what type of getting started with Unidata information
is out there.  If y'all have suggestions on resources that I can learn
Unibasic that would be great.  

Thanks for the help. 


Jimmy Dixon 
MCSE W2K, MSDBA, MSCA, MCP, CHCP
CompTIA A+, i-net+, e-Biz+, IT Project+ Certified Professional
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
That's definitely available with any of the .net languages and probably 
could be gerry rigged simply by setting a semaphore.  It also might mean 
that the thing runs slow enough to be useless.  Probably the better 
alternative would be to manipulate the dynamic array with whichever U2 you 
are using.  Or it might work to make a flat file and use ADO and a stream 
but you might run into the same thread problems.  Or make a number of 
smaller arrays so that the threads are less likely to collide.  The problem 
with that is less likely may be too likely.  Possibly the best answer is 
to ask the question on one of the MSDN news groups.  They won't know what 
you mean about dynamic array so you may have to change the wording a bit.  A 
dynamic array to a .NET developer, as you probably already know anyway, is 
one that can be re-dimensioned at run time.
Let us know when and if you find an answer, please.
BobJ
- Original Message - 
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, January 24, 2005 7:22 AM
Subject: RE: [U2] UniObjects and VB.Net


Bob,
that is what what I observe.  Here is what I believe is happening:
VS.Not has a 'thunking' layer between its excution layer aka 'the 
CLR(Common
Language Runtime)' aka 'virtual machine' aka 'Managed Code' and 
UniObjects,
which is a dll that is compiled into machine code. For some reason this
'Interop Com Service' as Microsoft calls it, spawns off multiple threads
that manipulate the UniDynArray.  Those threads cross and mangle the 
array.

I wonder if there is a way to make sure that one thread completes before 
the
next one is started. A way to protect the UniArray from multiple access.

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of BobJ
Sent: Monday, January 24, 2005 5:47 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniObjects and VB.Net
The words thread safe leap to mind.  If there are multiple threads and 
no
locks then mangling could be expected if a later launched thread assaults
part of the array before the earlier launched thread writes it back.  Just 
a
thought.
BobJ
- Original Message -
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Sunday, January 23, 2005 9:31 PM
Subject: [U2] UniObjects and VB.Net


I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net
application.
I am populating a UniDynArray with a file parser.  The Array is large,
more
then 300 attributes.
When I run this parser, my array is mangled.  Attribute contents are 
mixed
with each other, attribute counts don't match with what I wrote in the
code.

When I run the code in the debugger, nice and slowly, I don't see a
problem,
only that sometimes it takes a second or to, for the UniDynArray to come
back from a call.  But when I run full speed, the mangling happens.
It looks like VB.NET starts several threads to deal with UniObjects, does
not wait until the thread is finished and then mangles the different
pieces.
Sometimes I get System.Runtime.InterOp.COMExceptions.
Has anybody had similar problems?  Found Work-arounds?
I can't move over to Uodotnet yet.  THere is too much code.  I though of
parsing my file into a Uodotnet.UniDynArray but then I saw that I can't
even
initialize a .Net UniDynArray with a session object.
Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Unidata Training

2005-01-24 Thread Kevin King
Depending on the vendor of the existing code, this approach might
actually work against you.  Of course, just trying stuff isn't a bad
idea, particularly with a copy of documentation readily available.
Asking questions in this list is always a good idea.  But to go
through existing code to learn how to program could have limited
effectiveness if the code is poorly written.  Particularly if a person
has little experience to programming, how would they know what is good
vs. what is bad?  This could lead to propogation of ineffective
programming techniques, significant frustration, and problems
implementing what might otherwise be a simple solution.

-Kevin
[EMAIL PROTECTED]
http://www.PrecisOnline.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Scholl
Sent: Monday, January 24, 2005 5:35 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Unidata Training

Kevin,
Here is how I've learned most:

Get on the 'Test' account and try.
Try to query and to program in Basic. 
Try to understand existing code
Study the dictionaries of the files.
Use this list and ask when your stuck. 
Sometimes just formulating the question gives the solution.
There are no dumb questions except the ones you don't ask.
Many folks are happy to answer them.  

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jimmy Dixon
Sent: Friday, January 21, 2005 9:48 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Unidata Training


Greetings one and all: 

I have to admit that I have been lurking around the list for the past
several months, in an effort to see what the list is all about. 

I am new to the Unidata arena, and from what I am seeing, there is a
lot to be learned to use it effectively.  Our accounting system is
built on Unidata (v 6.0).  I have very little in the way of
documentation, due to the fact, that the software company wants you to
go through them to get anything done.  This is a very expensive
proposition to say the least. 

I am wondering what type of getting started with Unidata information
is out there.  If y'all have suggestions on resources that I can learn
Unibasic that would be great.  

Thanks for the help. 


Jimmy Dixon
MCSE W2K, MSDBA, MSCA, MCP, CHCP
CompTIA A+, i-net+, e-Biz+, IT Project+ Certified Professional
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] parsing XML

2005-01-24 Thread Chuck Mongiovi
What's the easiest way to:

1) parse an XML dynamic array (flat text) document into it's individual
key/value groups?
2) convert a dynamic array into an XML document?

... besides the obvious brute-force method of (1) parsing manually, and (2)
using a FOR/NEXT loop to build the XML document ...

-Chuck
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] FW: Off Topic I need an X window emulator

2005-01-24 Thread Allen E. Elwood
Hello Everyone,

I have a friend that is looking for a free X-window emulator to access his
unix box from his PC.  I was wondering if anyone out there had an answer for
him?

Thanks in Advance!

Allen

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, January 24, 2005 09:09
To: [EMAIL PROTECTED]
Subject: I need an emulator

I am looking for a free X-Window emulator, to access my Unix box from my PC.
Got any suggestions?

Dave

David Preston
System Administrator

U  Understand
   S  Simplify
  A Act \ Automate

STONE Construction Equipment Inc.
P.O. Box 150
8662 Main Street
Honeoye, NY, 14471
Direct Dial: 585-229-3220
Fax:585-229-2363
e-mail: [EMAIL PROTECTED]
Web Site : www.stone-equip.com
Company e-mail: [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] FW: Off Topic I need an X window emulato

2005-01-24 Thread Jeff Schasny
Try this:

http://x.cygwin.com/



Jeff Schasny | Denver, Colorado, USA | [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] FW: Off Topic I need an X window emulator

2005-01-24 Thread George Gallen
Search for MIXserver. It is free. Works quite well.

George

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Allen E. Elwood
Sent: Monday, January 24, 2005 1:14 PM
To: U2-Users
Subject: [U2] FW: Off Topic I need an X window emulator


Hello Everyone,

I have a friend that is looking for a free X-window emulator
to access his
unix box from his PC.  I was wondering if anyone out there had
an answer for
him?

Thanks in Advance!

Allen

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, January 24, 2005 09:09
To: [EMAIL PROTECTED]
Subject: I need an emulator

I am looking for a free X-Window emulator, to access my Unix
box from my PC.
Got any suggestions?

Dave

David Preston
System Administrator

U  Understand
   S  Simplify
  A Act \ Automate

STONE Construction Equipment Inc.
P.O. Box 150
8662 Main Street
Honeoye, NY, 14471
Direct Dial: 585-229-3220
Fax:585-229-2363
e-mail: [EMAIL PROTECTED]
Web Site : www.stone-equip.com
Company e-mail: [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] FW: Off Topic I need an X window emulator

2005-01-24 Thread Lloyd Cottrell
http://kde-cygwin.sourceforge.net/

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Allen E. Elwood
Sent: Monday, January 24, 2005 11:14 AM
To: U2-Users
Subject: [U2] FW: Off Topic I need an X window emulator

Hello Everyone,

I have a friend that is looking for a free X-window emulator to access his
unix box from his PC.  I was wondering if anyone out there had an answer for
him?

Thanks in Advance!

Allen

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, January 24, 2005 09:09
To: [EMAIL PROTECTED]
Subject: I need an emulator

I am looking for a free X-Window emulator, to access my Unix box from my PC.
Got any suggestions?

Dave

David Preston
System Administrator

U  Understand
   S  Simplify
  A Act \ Automate

STONE Construction Equipment Inc.
P.O. Box 150
8662 Main Street
Honeoye, NY, 14471
Direct Dial: 585-229-3220
Fax:585-229-2363
e-mail: [EMAIL PROTECTED]
Web Site : www.stone-equip.com
Company e-mail: [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniObjects and VB.Net

2005-01-24 Thread Martin Scholl
Okay, I got it to limp through the code.  Not beautiful, but I am not
getting mangled UniDynArrays anymore.

Here is what I do.
After I execute one line of UniDynArray gymnastics, I check if the object
has come back and is available before I execute the next line.

What was:
 mitemClaim.SubValue(306, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(1)
 mitemClaim.SubValue(307, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(2)
 mitemClaim.SubValue(308, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(3)

  Becomes:
mitemClaim.SubValue(306, gintLineNumber, 
pintCount).StringValue =
pVarDTP_Array(1)
Do While mitemClaim.StringValue = 
System.Threading.Thread.Sleep(10)
Loop
mitemClaim.SubValue(307, gintLineNumber,
pintCount).StringValue = pVarDTP_Array(2)
Do While mitemClaim.StringValue = 
System.Threading.Thread.Sleep(10)
Loop
mitemClaim.SubValue(308, gintLineNumber,
pintCount).StringValue = pVarDTP_Array(3)
Do While mitemClaim.StringValue = 
System.Threading.Thread.Sleep(10)
Loop

Ugly but it gets me through a product demo until I come up with something
better.
I have to see if there is a VB.Net way of checking if an Interop Call has
finished its thread and returned and released the argument.  I am just no
expert on this new .Net stuff

Another thing I discovered on my research is that there is a way to make
VS.Net single threaded by declaring at the beginning of a page:
System.Threading.Thread.CurrentThread.ApartmentState =
System.Threading.ApartmentState.STA
whereby STA stands for 'Single Threaded Apartment' as opposed to MTA
'Multi-threaded-Apartment'
This did not resolve my problem though.



Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of BobJ
Sent: Monday, January 24, 2005 8:19 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniObjects and VB.Net


That's definitely available with any of the .net languages and probably
could be gerry rigged simply by setting a semaphore.  It also might mean
that the thing runs slow enough to be useless.  Probably the better
alternative would be to manipulate the dynamic array with whichever U2 you
are using.  Or it might work to make a flat file and use ADO and a stream
but you might run into the same thread problems.  Or make a number of
smaller arrays so that the threads are less likely to collide.  The problem
with that is less likely may be too likely.  Possibly the best answer is
to ask the question on one of the MSDN news groups.  They won't know what
you mean about dynamic array so you may have to change the wording a bit.  A
dynamic array to a .NET developer, as you probably already know anyway, is
one that can be re-dimensioned at run time.
Let us know when and if you find an answer, please.
BobJ
- Original Message -
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, January 24, 2005 7:22 AM
Subject: RE: [U2] UniObjects and VB.Net


 Bob,
 that is what what I observe.  Here is what I believe is happening:

 VS.Not has a 'thunking' layer between its excution layer aka 'the
 CLR(Common
 Language Runtime)' aka 'virtual machine' aka 'Managed Code' and
 UniObjects,
 which is a dll that is compiled into machine code. For some reason this
 'Interop Com Service' as Microsoft calls it, spawns off multiple threads
 that manipulate the UniDynArray.  Those threads cross and mangle the
 array.

 I wonder if there is a way to make sure that one thread completes before
 the
 next one is started. A way to protect the UniArray from multiple access.

 Martin Scholl
 President HIPAAsuite
 18910 New Hampshire Ave
 Brinklow, MD 20862
 301-924-5537  Phone
 301-570-0139  Fax
 301-613-9572  Cell



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of BobJ
 Sent: Monday, January 24, 2005 5:47 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] UniObjects and VB.Net


 The words thread safe leap to mind.  If there are multiple threads and
 no
 locks then mangling could be expected if a later launched thread assaults
 part of the array before the earlier launched thread writes it back.  Just
 a
 thought.
 BobJ
 - Original Message -
 From: Martin Scholl [EMAIL PROTECTED]
 To: u2-users@listserver.u2ug.org
 Sent: Sunday, January 23, 2005 9:31 PM
 Subject: [U2] UniObjects and VB.Net


I am using UniObjects ( the pre .Net version) in a VB.Net ASP.Net
 application.

 I am populating a UniDynArray with a file parser.  The Array is large,
 more
 then 300 attributes.
 When I run this parser, my array is mangled.  Attribute contents are
 mixed
 with each other, attribute counts don't match with what I 

[U2] UO.Net and UniDynArray

2005-01-24 Thread Martin Scholl
Is it possible to work on uodotnet.UniDynArrays without having a session
object open?

I have tried to manipulate a uodotnet.UniDynArray, but when the session is
closed, it throws an error.
I have the nagging suspicion that UO.Net needs an open session to execute
'Oconv', Iconv' etc on the server through a call.  I hope this is not true.
It would make UO.Net pretty useless for stateless paradigms like web
programming.

Has anybody tried jBase's mv.Net?

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] FW: Off Topic I need an X window emulator

2005-01-24 Thread u2
Probably his best bet would be to install cygwin (http://www.cygwin.com)
which includes an x-server. 
For $25, he can get the MI/X server from www.microimages.com/mix/ (they
have a free trial).
If he's really ambitious, a copy of vmware ($$) will let him run a full
linux on his PC alongside of windows.

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Allen E. Elwood
 Sent: Monday, January 24, 2005 1:14 PM
 To: U2-Users
 Subject: [U2] FW: Off Topic I need an X window emulator
 
 
 Hello Everyone,
 
 I have a friend that is looking for a free X-window emulator 
 to access his unix box from his PC.  I was wondering if 
 anyone out there had an answer for him?
 
 Thanks in Advance!
 
 Allen
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Monday, January 24, 2005 09:09
 To: [EMAIL PROTECTED]
 Subject: I need an emulator
 
 I am looking for a free X-Window emulator, to access my Unix 
 box from my PC. Got any suggestions?
 
 Dave
 
 David Preston
 System Administrator
 
 U  Understand
S  Simplify
   A Act \ Automate
 
 STONE Construction Equipment Inc.
 P.O. Box 150
 8662 Main Street
 Honeoye, NY, 14471
 Direct Dial: 585-229-3220
 Fax:585-229-2363
 e-mail: [EMAIL PROTECTED]
 Web Site : www.stone-equip.com
 Company e-mail: [EMAIL PROTECTED]
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] FW: Off Topic I need an X window emulator

2005-01-24 Thread Allen E. Elwood
Many Thanks to Jeff, George, Lloyd and Iain!!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Hanley, Iain
Sent: Monday, January 24, 2005 11:10
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] FW: Off Topic I need an X window emulator


He could try VNC (www.tightvnc.com)

Iain.

-Original Message-
From: Allen E. Elwood [mailto:[EMAIL PROTECTED]
Sent: Monday, January 24, 2005 10:14 AM
To: U2-Users
Subject: [U2] FW: Off Topic I need an X window emulator


Hello Everyone,

I have a friend that is looking for a free X-window emulator to access his
unix box from his PC.  I was wondering if anyone out there had an answer for
him?

Thanks in Advance!

Allen

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, January 24, 2005 09:09
To: [EMAIL PROTECTED]
Subject: I need an emulator

I am looking for a free X-Window emulator, to access my Unix box from my PC.
Got any suggestions?

Dave

David Preston
System Administrator

U  Understand
   S  Simplify
  A Act \ Automate

STONE Construction Equipment Inc.
P.O. Box 150
8662 Main Street
Honeoye, NY, 14471
Direct Dial: 585-229-3220
Fax:585-229-2363
e-mail: [EMAIL PROTECTED]
Web Site : www.stone-equip.com
Company e-mail: [EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Emphasys is interested in your ideas.  Visit our new online suggestion
box at http://www.emphasysworld.com/sub/feedback.asp to share your thoughts
for nonsoftware-related improvements.  You could win a free pass to
the 2005 Annual User Conference!
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Universe 10 fnuxi problem

2005-01-24 Thread Jay Falck
Thanks to all who have responded. Although I am not hearing what I wanted at
least I know why it's not working.

My next question then becomes: how can I use uvbackup to backup the files I
need without marking each record as backed up? I have some files that a
couple of million records and don't want to wait through the time it takes
to mark each record as backed up. Is there an option that will just do the
backup without setting the flag?

Thanks again,

Jay

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin P Lynch
Sent: Saturday, January 22, 2005 9:37 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Universe 10 fnuxi problem

Jay,
try using uvbackup and uvrestore to move the files, it handles the
conversions itself, it usually works like a charm.
if they are on very different universe releases you may need to back them up
using the
release options (check the doc on the release options for uvbackup, it's
fairly clear)

Kevin Lynch

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jay Falck
Sent: Friday, January 21, 2005 6:53 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Universe 10 fnuxi problem

I need to move some regular Universe files from a Unix platform (HPUX) to
Windows. These files have triggers and fnuxi by itself will not work. I've
tried FORMAT.CONV -export on the HPUX box but it indicates the file is not a
SQL table. If I just ftp the file to my Windows platform and try fnuxi
-convert it reports the file already exists.



I have tried following the instructions in migrating from one schema to
another but it doesn't appear to work for regular Universe files. Can anyone
shed some light on how I can get these files moved over without creating new
files and copying the data into them and then copying?



Thanks in advance,



Jay



Jay Falck, CISSP, CHSS
MHC Specialist
Verilet, Inc
858-617-6324
512-301-2583
512-563-4132 (cell)

THIS MESSAGE, TOGETHER WITH ANY ATTACHMENTS, IS INTENDED ONLY FOR THE USE OF
THOSE TO WHOM IT IS ADDRESSED AND MAY CONTAIN INFORMATION THAT IS
PRIVILEGED, CONFIDENTIAL, AND EXEMPT FROM DISCLOSURE UNDER APPLICABLE LAW.
IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, EMPLOYEE OR
AGENT RESPONSIBLE FOR DELIVERING THE MESSAGE, YOU ARE HEREBY NOTIFIED THAT
ANY DISSEMINATION, DISTRIBUTION, OR COPYING OF THIS TRANSMISSION IS STRICTLY
PROHIBITED. IF YOU RECEIVED THIS MESSAGE IN ERROR, PLEASE NOTIFY THE
ORIGINAL SENDER IMMEDIATELY BY TELEPHONE OR E-MAIL AND DELETE THIS MESSAGE,
ALONG WITH ANY ATTACHMENTS, FROM YOUR COMPUTER. THANK YOU.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

__
This email has been scanned by the Inbound TSH Mail Filter Please Report any
issues to [EMAIL PROTECTED]
__
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObjects and VB.Net

2005-01-24 Thread BobJ
A semaphore by any other name.
It's a shame that there isn't a more elegant approach.  Actually there 
probably is but the documentation can be hard to decipher.
At least that confirms our suspicions.
BobJ
- Original Message - 
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, January 24, 2005 2:06 PM
Subject: RE: [U2] UniObjects and VB.Net


Okay, I got it to limp through the code.  Not beautiful, but I am not
getting mangled UniDynArrays anymore.
Here is what I do.
After I execute one line of UniDynArray gymnastics, I check if the object
has come back and is available before I execute the next line.
What was:
mitemClaim.SubValue(306, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(1)
mitemClaim.SubValue(307, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(2)
mitemClaim.SubValue(308, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(3)
 Becomes:
 mitemClaim.SubValue(306, gintLineNumber, pintCount).StringValue =
pVarDTP_Array(1)
   Do While mitemClaim.StringValue = 
   System.Threading.Thread.Sleep(10)
   Loop
   mitemClaim.SubValue(307, gintLineNumber,
pintCount).StringValue = pVarDTP_Array(2)
   Do While mitemClaim.StringValue = 
   System.Threading.Thread.Sleep(10)
   Loop
   mitemClaim.SubValue(308, gintLineNumber,
pintCount).StringValue = pVarDTP_Array(3)
   Do While mitemClaim.StringValue = 
   System.Threading.Thread.Sleep(10)
   Loop
Ugly but it gets me through a product demo until I come up with something
better.
I have to see if there is a VB.Net way of checking if an Interop Call has
finished its thread and returned and released the argument.  I am just no
expert on this new .Net stuff
Another thing I discovered on my research is that there is a way to make
VS.Net single threaded by declaring at the beginning of a page:
System.Threading.Thread.CurrentThread.ApartmentState =
System.Threading.ApartmentState.STA
whereby STA stands for 'Single Threaded Apartment' as opposed to MTA
'Multi-threaded-Apartment'
This did not resolve my problem though.

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of BobJ
Sent: Monday, January 24, 2005 8:19 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniObjects and VB.Net
That's definitely available with any of the .net languages and probably
could be gerry rigged simply by setting a semaphore.  It also might mean
that the thing runs slow enough to be useless.  Probably the better
alternative would be to manipulate the dynamic array with whichever U2 you
are using.  Or it might work to make a flat file and use ADO and a stream
but you might run into the same thread problems.  Or make a number of
smaller arrays so that the threads are less likely to collide.  The 
problem
with that is less likely may be too likely.  Possibly the best answer is
to ask the question on one of the MSDN news groups.  They won't know what
you mean about dynamic array so you may have to change the wording a bit. 
A
dynamic array to a .NET developer, as you probably already know anyway, is
one that can be re-dimensioned at run time.
Let us know when and if you find an answer, please.
BobJ
- Original Message -
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Monday, January 24, 2005 7:22 AM
Subject: RE: [U2] UniObjects and VB.Net


Bob,
that is what what I observe.  Here is what I believe is happening:
VS.Not has a 'thunking' layer between its excution layer aka 'the
CLR(Common
Language Runtime)' aka 'virtual machine' aka 'Managed Code' and
UniObjects,
which is a dll that is compiled into machine code. For some reason this
'Interop Com Service' as Microsoft calls it, spawns off multiple threads
that manipulate the UniDynArray.  Those threads cross and mangle the
array.
I wonder if there is a way to make sure that one thread completes before
the
next one is started. A way to protect the UniArray from multiple access.
Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of BobJ
Sent: Monday, January 24, 2005 5:47 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniObjects and VB.Net
The words thread safe leap to mind.  If there are multiple threads and
no
locks then mangling could be expected if a later launched thread assaults
part of the array before the earlier launched thread writes it back. 
Just
a
thought.
BobJ
- Original Message -
From: Martin Scholl [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Sunday, January 23, 2005 9:31 PM
Subject: [U2] UniObjects and VB.Net


I am using 

RE: [U2] Unidata Training

2005-01-24 Thread Jimmy Dixon
OK, I see that I did a little misleading when I told you that my
accounting system was built on Unidata.  While the database engine is
Unidata, the programs that access it are written in Cobol.  While I am
very familiar with COBOL, I don't have access to the source.  From what
I know from the M/S world, I should be able to create tables and copy it
where I can use report writers, ODBC, and web interfaces to get the
answers that I need.  

Thanks for all the information that y'all have given me.  Its been a big
help. 

Jimmy 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin King
Sent: Monday, January 24, 2005 8:45 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Unidata Training


Depending on the vendor of the existing code, this approach might
actually work against you.  Of course, just trying stuff isn't a bad
idea, particularly with a copy of documentation readily available.
Asking questions in this list is always a good idea.  But to go through
existing code to learn how to program could have limited effectiveness
if the code is poorly written.  Particularly if a person has little
experience to programming, how would they know what is good vs. what is
bad?  This could lead to propogation of ineffective programming
techniques, significant frustration, and problems implementing what
might otherwise be a simple solution.

-Kevin
[EMAIL PROTECTED]
http://www.PrecisOnline.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Scholl
Sent: Monday, January 24, 2005 5:35 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Unidata Training

Kevin,
Here is how I've learned most:

Get on the 'Test' account and try.
Try to query and to program in Basic. 
Try to understand existing code
Study the dictionaries of the files.
Use this list and ask when your stuck. 
Sometimes just formulating the question gives the solution. There are no
dumb questions except the ones you don't ask. Many folks are happy to
answer them.  

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell 



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jimmy Dixon
Sent: Friday, January 21, 2005 9:48 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Unidata Training


Greetings one and all: 

I have to admit that I have been lurking around the list for the past
several months, in an effort to see what the list is all about. 

I am new to the Unidata arena, and from what I am seeing, there is a lot
to be learned to use it effectively.  Our accounting system is built on
Unidata (v 6.0).  I have very little in the way of documentation, due to
the fact, that the software company wants you to go through them to get
anything done.  This is a very expensive proposition to say the least. 

I am wondering what type of getting started with Unidata information
is out there.  If y'all have suggestions on resources that I can learn
Unibasic that would be great.  

Thanks for the help. 


Jimmy Dixon
MCSE W2K, MSDBA, MSCA, MCP, CHCP
CompTIA A+, i-net+, e-Biz+, IT Project+ Certified Professional
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UO.Net and UniDynArray

2005-01-24 Thread David Jordan
Hi Martin

I suspect the issue you are having is not with the dynamic array, but that
you are using a com object within the .Net framework, which requires it to
step out of the environment each time you make a call, ie each time you
update the dynamic array.  The issue is not with UniObjects, but COM in
.Net. You would resolve the problem going to IBM's U2 .Net interface as
going with jBase or Raining data's .Net product.


If you wish to stay with the com version, and it seems to be a batch update,
you could put the update routine as a VB6 compiles routine and then pass the
array to it to update as 1 com call.

Alternatively you could build the dynamic array manually by concatenating
the strings with CHAR(254), etc and stay fully in the .Net frame work.

With .Net UniObj, I have opened a session, got data and closed the session
and then used the dynamic array handling without issue, so you should not
require a session to be open to use the dynamicarray facilities.


Regards
David Jordan


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Martin Scholl
Sent: Tuesday, 25 January 2005 6:12 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] UO.Net and UniDynArray

Is it possible to work on uodotnet.UniDynArrays without having a session
object open?

I have tried to manipulate a uodotnet.UniDynArray, but when the session is
closed, it throws an error.
I have the nagging suspicion that UO.Net needs an open session to execute
'Oconv', Iconv' etc on the server through a call.  I hope this is not true.
It would make UO.Net pretty useless for stateless paradigms like web
programming.

Has anybody tried jBase's mv.Net?

Martin Scholl
President HIPAAsuite
18910 New Hampshire Ave
Brinklow, MD 20862
301-924-5537  Phone
301-570-0139  Fax
301-613-9572  Cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UV] Run phantom as another user

2005-01-24 Thread Buss, Troy \(Logitek Systems\)
Is there a way to run a phantom process as another user using the
PHANTOM command?
 
We have a situation where we have a background phantom process
periodically monitoring a directory on another server.  But, when the
user that launched the phantom processor changes their password, the
file open fails (due to expired credentials).   We would like to have
the phantom process 'run as' another user account that has the minimum
access it needs where the password does not ever expire and create the
failed open file problem.

We are simply opening the file as a F voc pointer with line 2
\\server\sharename\directory.  The universe config parameter ALLOWNFS
is set to 1.
 
Thanks!
 
-Troy
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] Run phantom as another user

2005-01-24 Thread David Jordan
In a BASIC program you can use the AUTHORIZE statement to set a different
security credential.  (See the U2UG newsletter on the U2UG web site for the
article of security)

You set the statement to AUTHORIZE username
Then compile the program as that user.
Anyone running that program will run under that usernames credentials.

Regards

David Jordan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Buss, Troy (Logitek
Systems)
Sent: Tuesday, 25 January 2005 1:20 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] [UV] Run phantom as another user

Is there a way to run a phantom process as another user using the
PHANTOM command?
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Terminal Servers

2005-01-24 Thread Norman, David (SAAS)
Happy Australia Day !

HP-UX 11i, UV10.
We currently use HP DTCs (Datacommunications and Terminal Controllers) to
provide both connectivity for dumb terminals, and binary or ASCII I/O for
various black boxes, PCs and printers under the control of daemons. HP are
discontinuing support for these devices shortly, and our facilities
management providers are having trouble finding an equivalent device. Does
anyone have thoughts on what we could use as a replacement ?

Thanks,

David Norman
Senior Systems Engineer
SA Ambulance Service
Box 3, GPO
Adelaide, South Australia 5001
*+61 8 8274 0384
fax +61 8 8271 4844
* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Universe 10 fnuxi problem

2005-01-24 Thread Adrian Matthews
Use the -notags option.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jay Falck
Sent: 24 January 2005 20:13
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Universe 10 fnuxi problem

Thanks to all who have responded. Although I am not hearing what I
wanted at
least I know why it's not working.

My next question then becomes: how can I use uvbackup to backup the
files I
need without marking each record as backed up? I have some files that a
couple of million records and don't want to wait through the time it
takes
to mark each record as backed up. Is there an option that will just do
the
backup without setting the flag?

Thanks again,

Jay

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin P Lynch
Sent: Saturday, January 22, 2005 9:37 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Universe 10 fnuxi problem

Jay,
try using uvbackup and uvrestore to move the files, it handles the
conversions itself, it usually works like a charm.
if they are on very different universe releases you may need to back
them up
using the
release options (check the doc on the release options for uvbackup, it's
fairly clear)

Kevin Lynch

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jay Falck
Sent: Friday, January 21, 2005 6:53 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Universe 10 fnuxi problem

I need to move some regular Universe files from a Unix platform (HPUX)
to
Windows. These files have triggers and fnuxi by itself will not work.
I've
tried FORMAT.CONV -export on the HPUX box but it indicates the file is
not a
SQL table. If I just ftp the file to my Windows platform and try fnuxi
-convert it reports the file already exists.



I have tried following the instructions in migrating from one schema to
another but it doesn't appear to work for regular Universe files. Can
anyone
shed some light on how I can get these files moved over without creating
new
files and copying the data into them and then copying?



Thanks in advance,



Jay



Jay Falck, CISSP, CHSS
MHC Specialist
Verilet, Inc
858-617-6324
512-301-2583
512-563-4132 (cell)

THIS MESSAGE, TOGETHER WITH ANY ATTACHMENTS, IS INTENDED ONLY FOR THE
USE OF
THOSE TO WHOM IT IS ADDRESSED AND MAY CONTAIN INFORMATION THAT IS
PRIVILEGED, CONFIDENTIAL, AND EXEMPT FROM DISCLOSURE UNDER APPLICABLE
LAW.
IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, EMPLOYEE OR
AGENT RESPONSIBLE FOR DELIVERING THE MESSAGE, YOU ARE HEREBY NOTIFIED
THAT
ANY DISSEMINATION, DISTRIBUTION, OR COPYING OF THIS TRANSMISSION IS
STRICTLY
PROHIBITED. IF YOU RECEIVED THIS MESSAGE IN ERROR, PLEASE NOTIFY THE
ORIGINAL SENDER IMMEDIATELY BY TELEPHONE OR E-MAIL AND DELETE THIS
MESSAGE,
ALONG WITH ANY ATTACHMENTS, FROM YOUR COMPUTER. THANK YOU.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

__
This email has been scanned by the Inbound TSH Mail Filter Please Report
any
issues to [EMAIL PROTECTED]
__
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


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
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/