RE: [U2] Universe Phantom Problem

2004-07-23 Thread Brian Leach
As David said, you get this if the C program has the file open.

Another work around is to use the ON ERROR clause for the write:

WrittenOk = @True
Loop
  Write TheItem On FL, TheId ON ERROR WrittenOk = @False
Until WrittenOk Do
  Nap 10
Repeat

Brian

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of prem jaisinghani
Sent: 22 July 2004 20:51
To: [EMAIL PROTECTED]
Subject: [U2] Universe Phantom Problem

Hi,

I am facing following problem regarding Phantoms in universe:

We have a phantom which keeps on polling a type 19 file, say File1 for
data and transfers it to another type 19 file, say

File B. File B in turn is being read by a 'c' program. 

The first phantom gets killed sometimes and pretty randomly. The error code
thrown is 40019, but I could not get any the information about this error.

Please find below a sample error message: 

FATAL - Unable to write 7545698440*13346*25966.940943 on FileB

If someone has experienced such problem and/or has a workaround, please let
me know.

Thanks and Regards,

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


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Report Writer to Create MVquery Statements

2004-07-23 Thread Brian Leach
Mark,

If you wish to take a look at mvQuery, there is a free evaluation available.

Just drop an email to [EMAIL PROTECTED]

It is windows based, but then so is CR - mvQuery however sticks to the mv
modes and does not require ODBC or other layers.

Regards,

Brian

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: 22 July 2004 14:52
To: [EMAIL PROTECTED]
Subject: [U2] Report Writer to Create MVquery Statements

One of my new clients (new to MV as well) would like a program to help them
create their own ad-hoc mvquery reports. Presently, I'm creating a simple
2-section program where the first section indicates the verb, filename,
heading/footing and some of the popular modifiers. The second section is
free-form text for the actual 'work' of the statement.

Due to the complexity of these reports, I cannot imagine an easier approach
within MV. I've used MS Access on Access and Crystal Reports against a SQL
database and wonder if there's something already written for MV.

I want to stay within MV. I don't want to venture into CR or any other ODBC
item. Does anyone have any ideas on a simple MV report writer. Please don't
deviate from staying within MV.

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


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Help needed about the process being slow

2004-07-13 Thread Brian Leach
Hi,

I've just tried something similar on UV/NT with no problems - until I pushed
my external routine (scanning the directory and deleting the files as fast
as UV writes them) into a tight loop that swallowed the processor. Then it
all crawled, of course.

Could there be anything in your C routine that would cause that kind of
looping?

Just a thought - if the C routine fails to open one of these files (e.g. if
UV is still in process of writing it/holding it) how does your error
trapping work? Do you loop until you can open it? If so, that might cause
just that sort of loop, so that uv never gets a look in... 

Brian

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of ashish ratna
Sent: 13 July 2004 15:10
To: [EMAIL PROTECTED]
Subject: [U2] Help needed about the process being slow

Hi All,

We have a process (Universe program) which writes the records in a
particular file (type 19). One of my C process is picking these records and
processing them and the deleting them.

If I run first process independently (C process stopped) it is very fast.
Also if I have few records in the file and C process is running (Universe
program stopped) this case C process works very fast.

But the problem is that when I try to run both the programs simultaneously,
the overall process becomes very slow.

In terms of data-
For writing 1800 records on a file by Universe it takes 3 min. (when C is
not
running)
For processing 1800 records C process takes very less time (when universe is
not running)

But if both processes are running then it takes about 25 mins to complete
the process.

Can  somebody tell me what could be the reason for this slowing down of
process.

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


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] SUBR dictionary types

2004-07-02 Thread Brian Leach
Eugene,

Exactly as it sounds. UniVerse won't compile an I Descriptor if the file
dictionary is a type 1 or type 19 (ie. a directory). You need to resize your
dictionary to type 18 or similar. (data portion is not affected).

RESIZE DICT filename 18 11 1

Brian 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eugene Perry
Sent: 01 July 2004 05:00
To: [EMAIL PROTECTED]
Subject: [U2] SUBR dictionary types

Hello,

I was given the task of finding out why some dictionary items were not
working.  This is running on an NT version of Universe.  I am testing it out
on 10.1 PE.

The first thing that I found was that the dictionaries were calling programs
but the first attribute was a V not an I.  I changed it to an I and did a
list of the file and got an error message of Cannot compile type 1 or 19
dictionary file.

Any suggestions?  It works on D3 and Unidata but not on Universe.

Thanks

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


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Proc

2004-06-24 Thread Brian Leach
Would you believe it,

I was actually training a client yesterday in PROC (they have a new support team for an
old application).

It's the first time I have taught it in at least 10 years ... and the I log in and see
all these postings today!

Funny old world.

Brian



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Linux and PE

2004-06-22 Thread Brian Leach
Eugene,

If you're thinking of loading and trying out different versions of Linux, you might 
also
want to look into a copy of MS Virtual PC or equivalent. That will allow you to load
Linux onto a virtual PC/virtual hard drive combination, so that you don't need to do a
full format/reinstall each time. 

Brian

On Mon, 21 Jun 2004 12:40:01 -0700
 Kent Walker [EMAIL PROTECTED] wrote:
At 11:39 AM 6/21/2004, Eugene Perry wrote:
I need to try out the linux versions of the PEs.  However, how do i go about
getting copies of Linux that will run with them?

Thanks

Eugene

Try here: http://www.linuxiso.org/


---
Kent Walker - Datatel Analyst
Information Technology - U.C. Hastings College of the Law
415-565-4635
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniObject - Select

2004-06-22 Thread Brian Leach
Chrisophe,

UniVerse has 10 active select lists numbered from zero.
The default SELECT generates list (0), however you can override that by using the TO 
and
FROM keywords:

e.g.

SELECT somefile TO 1
LIST somefile FROM 1

Regards,

Brian

On Tue, 22 Jun 2004 08:06:33 +0200
 Christophe Marchal [EMAIL PROTECTED] wrote:
Wendy Smoak wrote:

Christophe Marchal wrote:
  

I'm discovering the uniobject in java, and I don't find how to do a 
SELECT command and retreive ID.
I only find the UniSelectList that have a select() method on 
an UniFile. 
But what I want is somthing like :
SELECT MYFILE WITH MY.FIELD = bar AND WITH MY.OTHER.FIELD = foo



The select statement is done with the UniCommand class, then you can get
the select list:

UniCommand uCommand = uSession.command ( SELECT AGRESREL SAVING
AGRESREL.ID);
uCommand.exec();
UniSelectList uSelect = uSession.selectList( 0 );
answer =  uSelect.readList() ;
System.out.println (answer =  + answer) ;

Let me know if you need a more complete example, the code above assumes
you can get a connected UniSession already.

  

Thank you very much, it workes very well :-)
It was not so clear from the docs.
Is it always 0 as the id of the selectlist ?
And what if I do a second select from the same command ?

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


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/



Re: [U2] [UD] UniObjects VB: FIle locks on dictionaries

2004-06-22 Thread Brian Leach
Martin,

I just wouldn't do it that way: generating excess calls to the database.

Far better to call a subroutine, pass it the name of the file for which you are
generating the key, and have that handle the locking and eventual id retrieval. In that
way a) you can test the routine from the server to make sure it works and then b) all
looping and waiting is handled on the server.

Brian

On Tue, 22 Jun 2004 08:53:19 -0400
 Martin Scholl [EMAIL PROTECTED] wrote:
I use a LAST.ID item in the file dictionary to manage ID creation.  The lock
that I place on this record while I increase the ID does not work.

gcolFiles(pstrFileName).RecordID = LAST.ID
10: gcolFiles(pstrFileName).Read
If gcolFiles(pstrFileName).Error = UVE_NOERROR Then
gcolFiles(pstrFileName).LockRecord EXCLUSIVE_UPDATE
bla-bla
ElseIf gcolFiles(pstrFileName).Error = UVE_RNF Then
Set pitemLastID = New UniDynArray
bla-bla
ElseIf gcolFiles(pstrFileName).Error = UVE_LCK Then
Sleep 5
GoTo 10
End If


If I have multiple instances of my executable running, the lock does not
work and I end up with overwriting records which is real bad. Do read locks
not work with dictionries? Or does anybody have another suggestion?
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
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniDebugger question

2004-05-27 Thread Brian Leach
Nick,

Can you resize your file from Type 1 to Type 19?

That does not create intermediate directories.

Brian

On Wed, 26 May 2004 17:03:11 -0400
 Nick Cipollina [EMAIL PROTECTED] wrote:
I have a BASIC PROGRAM who's name is just long enough that it creates a
sub-directory in the BP file, but does not go any further than that.  How do
I open this program in Unidebugger?  The only thing that is in the
sub-directory that it created is a '?'.  I can edit it with vi by changing
to that sub-directory and entering 'vi ?'.  How do I edit it with
unidebugger?  Thanks.

 

Nick Cipollina

 

Pick Programmer

Heritage Information Systems, Inc.

2810 North Parham Road, Suite 210

Richmond, VA 23294

(804)644-8707 x 314

 



NOTICE OF CONFIDENTIALITY: The information contained in this transmission,
and in any accompanying documents, constitutes confidential information
belonging to Heritage Information Systems, Inc.  This information is
intended only for the use of the individual or entity named above.  If you
are not the intended recipient of this transmission, you are hereby notified
that any disclosure, copying, distribution, or the taking of any action in
reliance of this information, is strictly prohibited.  If you have received
this message in error, please immediately notify us by telephone, at
804-644-8707 to arrange for its proper destruction.  Thank you.
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


Re: [U2] Connecting to local Universe installed on win32

2004-05-27 Thread Brian Leach
 Tom Dodds [EMAIL PROTECTED] wrote:
When you invoke UniVerse, through a telnet client of some kind, it should
ask you for Enter User Name and then a password.  Use the same user name
and password you used for WS.  It should then ask for the Account name or
path.

Is this not happening?


It only does that if you are an Administrator. For regular Windows users, it will try 
to
log you into your Windows home directory (as set in your windows user settings), or the
pathname defined in the UV.LOGINS file in the UV account, unless you change the login
policy to allow non-administrator users to enter an account path name.

You can do that using the UniAdmin tool. There is also a registry setting, but I cannot
remember what it is at the moment - someone else will no doubt refresh my ailing 
memory.

Brian


This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


Re: [U2] UniVerse in VB .NET

2004-05-20 Thread Brian Leach
Trevor

the OleDB connection property pages include two options: one for allowing a blank
password and one for saving the password. 

Neither of these work.

You need to connect using a user name that is passworded, and supply the password
manually when you open your connection.

Regards,

Brian

On Thu, 20 May 2004 15:58:47 +1000
 Trevor McNamara [EMAIL PROTECTED] wrote:
Hey, I am having come probs with connecting to UniVerse 10 DB with VB .NET (VS .NET)

I I can setup the UCI.SONFIG file fine and the Test Connection works fine. But once i
click on Ok to add it i get an error:

Unable to connect to database.
Died in UCI::SQLConnect() with SQLSTATE IM980, Native error:0 [IBM][SQL Client]Remote
password is required.

When i click ok it comes up again. Then i click ok again it goes away.

Any ideas on how to fix this?

Thanks
Trev

_
Personalise your mobile chart ringtones and polyphonics. Go to
 http://ringtones.com.au/ninemsn/control?page=/ninemsn/main.jsp
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


This email was checked by MessageLabs SkyScan before entering Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


Re: [U2] My company is complaining about the U2 emails

2004-05-16 Thread Brian Leach
May also be time to look at your software.
One of my clients used a curse filtering software that 
stripped text out of word documents and other attachment 
for scanning. Good idea except that rather than work out 
the format it simply concatenated all the text together 
and then did substring searches against it. 

Took me ages to work out why they couldn't receive one of 
my documents. It had the word 'analysis' in it.

Brian

This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.
DISCLAIMER
This email and any attachments are confidential and may also be
privileged.
If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.
In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]
Microgen Information Management Solutions
http://www.microgen.co.uk
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


[U2] Next UniVerse Release

-- Thread Brian Leach
->










  
  RE: [U2] Next UniVerse Release
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver



RE: [U2] Next UniVerse Release
Brian Leach
 







 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Next UniVerse Release
Brian Leach

 


RE: [U2] Next UniVerse Release
Brian Leach
 


Re: [U2] Next UniVerse Release
Clifton Oliver



 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Next UniVerse Release
Brian Leach

 


RE: [U2] Next UniVerse Release
Brian Leach
 


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco





 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->







[U2] Next UniVerse Release
Brian Leach

 


RE: [U2] Next UniVerse Release
Brian Leach
 


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco


Re: [U2] Next UniVerse Release
Clifton Oliver







 



 






  
  





Reply via email to



  
  





 
 







[U2] Next UniVerse Release

-- Thread Brian Leach
->









  
  [U2] Next UniVerse Release
  
  
  
  
  
  








	

	u2-users 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 


Re: [U2] Next UniVerse Release
Clifton Oliver


RE: [U2] Next UniVerse Release
Brian Leach







 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 

 

RE: [U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver



 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 

 

RE: [U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco





 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 

 

RE: [U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco


Re: [U2] Next UniVerse Release
Clifton Oliver







 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 

 

RE: [U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco


Re: [U2] Next UniVerse Release
Clifton Oliver







 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[U2] Next UniVerse Release
Brian Leach
 

 

RE: [U2] Next UniVerse Release
Brian Leach


Re: [U2] Next UniVerse Release
Clifton Oliver


Re: [U2] Next UniVerse Release
doug chanco


Re: [U2] Next UniVerse Release
Clifton Oliver







 



 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color

<    4   5   6   7   8   9