[U2] Hello

2012-03-05 Thread u2ug
Is the list alive ?  Haven't seen anything for a week.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Jeff Schasny

I'm afraid we're all quite dead.

Haven't you heard about the zombies?

u2ug wrote:

Is the list alive ?  Haven't seen anything for a week.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

  


--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Dave Laansma
Okay, I've got a pretty simple question ...

How do I get a list of all files that are currently OPEN so I know
whether I need to open a given file again?

Sincerely,
David Laansma
IT Manager
Hubbard Supply Co.
Direct: 810-342-7143
Office: 810-234-8681
Fax: 810-234-6142
www.hubbardsupply.com
Delivering Products, Services and Innovative Solutions

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, March 05, 2012 10:32 AM
To: U2 Users List
Subject: [U2] Hello

Is the list alive ?  Haven't seen anything for a week.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Israel, John R.
I assume you have some way of knowing what files you want.

Do something like:
IF (FILEINFO(yourfilename, 0) = 0) THEN
OPEN yourfilename ...
END

John

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Laansma
Sent: Monday, March 05, 2012 10:38 AM
To: U2 Users List
Subject: Re: [U2] Hello

Okay, I've got a pretty simple question ...

How do I get a list of all files that are currently OPEN so I know whether I 
need to open a given file again?

Sincerely,
David Laansma
IT Manager
Hubbard Supply Co.
Direct: 810-342-7143
Office: 810-234-8681
Fax: 810-234-6142
www.hubbardsupply.com
Delivering Products, Services and Innovative Solutions

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, March 05, 2012 10:32 AM
To: U2 Users List
Subject: [U2] Hello

Is the list alive ?  Haven't seen anything for a week.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Wjhonson

I don't think this will work.
In your example John, you need to know the file variable assigned to the file.
So
IF (FILEINFO(CUSTOMER,0)=0) THEN
   OPEN CUSTOMER TO CUSTOMER ELSE...

But you can't use FILEINFO to check CUSTOMER, only to check CUSTOMER.
So you can't tell if a file is opened already and to what file variable.  You 
can only tell if a certain file variable is opened.



-Original Message-
From: Israel, John R. johnisr...@daytonsuperior.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Mon, Mar 5, 2012 7:56 am
Subject: Re: [U2] Hello


I assume you have some way of knowing what files you want.
Do something like:
F (FILEINFO(yourfilename, 0) = 0) THEN
OPEN yourfilename ...
ND
John
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] 
n Behalf Of Dave Laansma
ent: Monday, March 05, 2012 10:38 AM
o: U2 Users List
ubject: Re: [U2] Hello
Okay, I've got a pretty simple question ...
How do I get a list of all files that are currently OPEN so I know whether I 
eed to open a given file again?
Sincerely,
avid Laansma
T Manager
ubbard Supply Co.
irect: 810-342-7143
ffice: 810-234-8681
ax: 810-234-6142
ww.hubbardsupply.com
Delivering Products, Services and Innovative Solutions
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org
mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
ent: Monday, March 05, 2012 10:32 AM
o: U2 Users List
ubject: [U2] Hello
Is the list alive ?  Haven't seen anything for a week.

__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users
___
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread David Wolverton
In that  case, where every file is named FILE in your programs, but you
want to make sure FILE is opened against CUSTOMER, I would guess you would
do this:

IF (FILEINFO(FILE, 0) = 0) THEN
  OPEN 'CUSTOMER' TO FILE ELSE
 
  END
END ELSE
  IF FILEINFO(FILE,17) # CUSTOMER THEN
  CLOSE FILE
  OPEN 'CUSTOMER' TO FILE ELSE
 
  END
  END
END



David W.


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Monday, March 05, 2012 11:06 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Hello


I don't think this will work.
In your example John, you need to know the file variable assigned to the
file.
So
IF (FILEINFO(CUSTOMER,0)=0) THEN
   OPEN CUSTOMER TO CUSTOMER ELSE...

But you can't use FILEINFO to check CUSTOMER, only to check CUSTOMER.
So you can't tell if a file is opened already and to what file variable.
You can only tell if a certain file variable is opened.



-Original Message-
From: Israel, John R. johnisr...@daytonsuperior.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Mon, Mar 5, 2012 7:56 am
Subject: Re: [U2] Hello


I assume you have some way of knowing what files you want.
Do something like:
IF (FILEINFO(yourfilename, 0) = 0) THEN
OPEN yourfilename ...
ND
John
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org]
n Behalf Of Dave Laansma
ent: Monday, March 05, 2012 10:38 AM
o: U2 Users List
ubject: Re: [U2] Hello
Okay, I've got a pretty simple question ...
How do I get a list of all files that are currently OPEN so I know whether I
eed to open a given file again?
Sincerely,
avid Laansma
T Manager
ubbard Supply Co.
irect: 810-342-7143
ffice: 810-234-8681
ax: 810-234-6142
ww.hubbardsupply.com
Delivering Products, Services and Innovative Solutions
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org
mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
ent: Monday, March 05, 2012 10:32 AM
o: U2 Users List
ubject: [U2] Hello
Is the list alive ?  Haven't seen anything for a week.

__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users
___
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Wjhonson

I have to guess that the OP really wanted something like
N.FILE = CUSTOMER; GOSUB CHECK.IF.FILE.IS.OPEN
IF ERROR.FILE THEN
   OPEN N.FILE TO F.FILE ELSE do something here
END ELSE
   IS.OPEN = TRUE
END

CHECK.IF.FILE.IS.OPEN:
some function which checks if N.FILE exists in some rotating pool of 
FILE(MAXFILES)
if so return file variable pointer set in F.FILE else set error flag in 
ERROR.FILE
RETURN


Of course the pseudo code above has to be filled in with appropriate site 
specific code
Here we use a subroutine FILE.OPEN whose pool of open files lives in global 
named common

I really think that is what the OP was after


-Original Message-
From: David Wolverton dwolv...@flash.net
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Mon, Mar 5, 2012 9:51 am
Subject: Re: [U2] Hello


In that  case, where every file is named FILE in your programs, but you
ant to make sure FILE is opened against CUSTOMER, I would guess you would
o this:
IF (FILEINFO(FILE, 0) = 0) THEN
 OPEN 'CUSTOMER' TO FILE ELSE

 END
ND ELSE
 IF FILEINFO(FILE,17) # CUSTOMER THEN
 CLOSE FILE
 OPEN 'CUSTOMER' TO FILE ELSE

 END
 END
ND

David W.

Original Message-
rom: u2-users-boun...@listserver.u2ug.org
mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
ent: Monday, March 05, 2012 11:06 AM
o: u2-users@listserver.u2ug.org
ubject: Re: [U2] Hello

 don't think this will work.
n your example John, you need to know the file variable assigned to the
ile.
o
F (FILEINFO(CUSTOMER,0)=0) THEN
  OPEN CUSTOMER TO CUSTOMER ELSE...
But you can't use FILEINFO to check CUSTOMER, only to check CUSTOMER.
o you can't tell if a file is opened already and to what file variable.
ou can only tell if a certain file variable is opened.

-Original Message-
rom: Israel, John R. johnisr...@daytonsuperior.com
o: 'U2 Users List' u2-users@listserver.u2ug.org
ent: Mon, Mar 5, 2012 7:56 am
ubject: Re: [U2] Hello

 assume you have some way of knowing what files you want.
o something like:
F (FILEINFO(yourfilename, 0) = 0) THEN
PEN yourfilename ...
D
ohn
Original Message-
om: u2-users-boun...@listserver.u2ug.org
mailto:u2-users-boun...@listserver.u2ug.org]
 Behalf Of Dave Laansma
nt: Monday, March 05, 2012 10:38 AM
: U2 Users List
bject: Re: [U2] Hello
kay, I've got a pretty simple question ...
ow do I get a list of all files that are currently OPEN so I know whether I
ed to open a given file again?
incerely,
vid Laansma
 Manager
bbard Supply Co.
rect: 810-342-7143
fice: 810-234-8681
x: 810-234-6142
w.hubbardsupply.com
elivering Products, Services and Innovative Solutions
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
nt: Monday, March 05, 2012 10:32 AM
: U2 Users List
bject: [U2] Hello
s the list alive ?  Haven't seen anything for a week.
__
-Users mailing list
-us...@listserver.u2ug.org
tp://listserver.u2ug.org/mailman/listinfo/u2-users
_
-Users mailing list
-us...@listserver.u2ug.org
tp://listserver.u2ug.org/mailman/listinfo/u2-users
__
-Users mailing list
-us...@listserver.u2ug.org
tp://listserver.u2ug.org/mailman/listinfo/u2-users
___
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Symeon Breen
In unidata this would be in SYSTEM(50)  not sure on UV , tho I presume it
has something similar.



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Laansma
Sent: 05 March 2012 15:38
To: U2 Users List
Subject: Re: [U2] Hello

Okay, I've got a pretty simple question ...

How do I get a list of all files that are currently OPEN so I know whether I
need to open a given file again?

Sincerely,
David Laansma
IT Manager
Hubbard Supply Co.
Direct: 810-342-7143
Office: 810-234-8681
Fax: 810-234-6142
www.hubbardsupply.com
Delivering Products, Services and Innovative Solutions

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, March 05, 2012 10:32 AM
To: U2 Users List
Subject: [U2] Hello

Is the list alive ?  Haven't seen anything for a week.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1424 / Virus Database: 2113/4851 - Release Date: 03/04/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread Tony Gravagno
From: Dave Laansma 
 How do I get a list of all files that are currently OPEN so I know
whether
 I need to open a given file again? 

While our other colleagues are responding to the specific question,
and I'm eager to see that discussion continue, I'll suggest that the
real answer to the specific question asked might be to reframe the
problem.

In some applications if you don't have a specific file open, chances
are you don't have any of them open. Some apps open all files for a
given session on startup rather than doing it every time a user enters
a program. This of course does not apply to all apps, nor all
programs, nor all files. So the thing is to set a flag when you open
files, and if you see that flag is set whenever you come back, you
know All files have been opened, and you don't need to check for
individuals anymore.

SUBROUTINE FILE.INIT
  COMMON /FILES/ F.INITIALIZED, F.ERROR, F.HANDLES(100), F.NAMES(100)
  IF NOT(ASSIGNED(F.INITIALIZED)) THEN GOSUB INIT.FILES ; * Universe
  RETURN
INIT.FILES: *
  * loop to Open F.NAMES(x) To F.HANDLES(x) Else F.ERROR = F.NAMES(x)
  F.INITIALIZED = TRUE
RETURN
* For Unidata, use IF UNASSIGNED(F.INITIALIZED)

The thing is to call that code from every program that has a standard
set of files. If you have already been in this code it exits
painlessly. Most apps can do this because they're broken into modules
like AP, AR, GL, WHS, etc.

I did not implement handling for failed Opens - that's up to the app
and context. In short, if F.ERROR is set when you come back from this
routine, all bets are off and you need to fail out of the app.

HTH
T

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello

2012-03-05 Thread David Jordan
I set up a function to open files.   Instead of using the open file command in 
a program, I call the function.  The function first calls the fileinfo command 
to see if the file is open and then returns otherwise it opens the file and 
returns.

David Jordan
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello: keeping track of open files

2012-03-05 Thread Ed Clark
That will tell you if a particular variable contains a file pointer, which may 
be useful if you always use the same name for a file everywhere that it is 
used, but it doesn't help if you use different names. For example, if you had a 
program that took two file names as command line arguments and did some sort of 
processing from one to the other. The variables in your program that you open 
the files into have no name-relationship to the files being used, but you might 
want to take advantage of an existing file pointer in COMMON.

I don't have any idea at this point how much overhead is involved in opening a 
file in universe and unidata. I mentioned before that universe used to have a 
technical bulletin about it, because file opens were very time consuming, but 
that was back around release #6. It might not be worth the trouble to reuse 
file variables anymore. Or instead of speed being the issue, you might be 
trying to pool to get around limitations on the number of open files per 
process--but I think that is handled internally by the database.


On Mar 5, 2012, at 3:40 PM, David Jordan wrote:

 I set up a function to open files.   Instead of using the open file command 
 in a program, I call the function.  The function first calls the fileinfo 
 command to see if the file is open and then returns otherwise it opens the 
 file and returns.
 
 David Jordan
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread u2ug
Well - it looks like I can talk to myself - lots or practice there.

Actually what is this  u2-users-boun...@listserver.u2ug.org :  bounces
???

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, May 02, 2011 9:39 PM
To: U2 Users List
Subject: [U2] Hello ?

The list has gone silent for me for the past week - is there anybody out
there ? Just yell if you can hear me ...

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread Dan Fitzgerald

I hear you.
 
 Date: Mon, 2 May 2011 21:43:08 -0400
 From: simpson-u...@gerzio.ca
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Hello ?
 
 Well - it looks like I can talk to myself - lots or practice there.
 
 Actually what is this  u2-users-boun...@listserver.u2ug.org : bounces
 ???
 
 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
 Sent: Monday, May 02, 2011 9:39 PM
 To: U2 Users List
 Subject: [U2] Hello ?
 
 The list has gone silent for me for the past week - is there anybody out
 there ? Just yell if you can hear me ...
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread Charles Barouch
I can see you. This may just be that post Spectrum triptophan nap.

Charles Barouch

u2ug simpson-u...@gerzio.ca wrote:

Well - it looks like I can talk to myself - lots or practice there.

Actually what is this  u2-users-boun...@listserver.u2ug.org :  bounces
???

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, May 02, 2011 9:39 PM
To: U2 Users List
Subject: [U2] Hello ?

The list has gone silent for me for the past week - is there anybody out
there ? Just yell if you can hear me ...

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread u2ug
Thanks Dan - so I guess the list has just gone on hiatus ?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan
Fitzgerald
Sent: Monday, May 02, 2011 9:48 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Hello ?


I hear you.
 
 Date: Mon, 2 May 2011 21:43:08 -0400
 From: simpson-u...@gerzio.ca
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Hello ?
 
 Well - it looks like I can talk to myself - lots or practice there.
 
 Actually what is this  u2-users-boun...@listserver.u2ug.org : 
 bounces ???
 
 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
 Sent: Monday, May 02, 2011 9:39 PM
 To: U2 Users List
 Subject: [U2] Hello ?
 
 The list has gone silent for me for the past week - is there anybody 
 out there ? Just yell if you can hear me ...
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread u2ug
Aaaah  ,  Bach.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles
Barouch
Sent: Monday, May 02, 2011 9:48 PM
To: U2 Users List
Subject: Re: [U2] Hello ?

I can see you. This may just be that post Spectrum triptophan nap.

Charles Barouch

u2ug simpson-u...@gerzio.ca wrote:

Well - it looks like I can talk to myself - lots or practice there.

Actually what is this  u2-users-boun...@listserver.u2ug.org :  
bounces ???

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, May 02, 2011 9:39 PM
To: U2 Users List
Subject: [U2] Hello ?

The list has gone silent for me for the past week - is there anybody 
out there ? Just yell if you can hear me ...

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Hello ?

2011-05-02 Thread Drew William Henderson
LOL!



-Original Message-
From: u2ug simpson-u...@gerzio.ca
Sent: Monday, May 02, 2011 9:51 PM
To: U2 Users List u2-users@listserver.u2ug.org
Subject: Re: [U2] Hello ?


Aaaah  ,  Bach.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles
Barouch
Sent: Monday, May 02, 2011 9:48 PM
To: U2 Users List
Subject: Re: [U2] Hello ?

I can see you. This may just be that post Spectrum triptophan nap.

Charles Barouch

u2ug simpson-u...@gerzio.ca wrote:

Well - it looks like I can talk to myself - lots or practice there.

Actually what is this  u2-users-boun...@listserver.u2ug.org :
bounces ???

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Monday, May 02, 2011 9:39 PM
To: U2 Users List
Subject: [U2] Hello ?

The list has gone silent for me for the past week - is there anybody
out there ? Just yell if you can hear me ...

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


RE: [U2] hello ?

2004-09-23 Thread Doyen Klein
Careful with that axe, Eugene!

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Stuart Boydell
 Sent: Wednesday, September 22, 2004 9:11 PM
 To: [EMAIL PROTECTED]
 Subject: RE: [U2] hello ?
 
  Yes us pagans are dancing in the moonlight and had to address the
  4 element
  forces at noon... ;-) call to the East, South, North  West..
 
 Ah, NOW I understand how this thread is related to MV... you were gathered
 in a cave and grooving with a Pict.*
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-23 Thread Peter Gonzalez
a FLOYD fan! Now i know I'm in the right place.

At 06:06 AM 9/23/2004 -0600, you wrote:
Careful with that axe, Eugene!

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:owner-u2-
  [EMAIL PROTECTED] On Behalf Of Stuart Boydell
  Sent: Wednesday, September 22, 2004 9:11 PM
  To: [EMAIL PROTECTED]
  Subject: RE: [U2] hello ?
 
   Yes us pagans are dancing in the moonlight and had to address the
   4 element
   forces at noon... ;-) call to the East, South, North  West..
 
  Ah, NOW I understand how this thread is related to MV... you were gathered
  in a cave and grooving with a Pict.*
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/



Peter Gonzalez
Senior Programmer Analyst
M  M Aerospace Hardware, Inc., a B/E Aerospace Company
1 NW 15 Terrace
Miami, Florida 33172
Phone: 305.925.2714
Fax: 305.925.2610
www.mmaero.com
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-23 Thread Michael S. O'Rear
Not just Floyd fans but DRUID floyd fans to boot!

-Original Message-
From: Peter Gonzalez [EMAIL PROTECTED]
Sent: Sep 23, 2004 9:55 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?

a FLOYD fan! Now i know I'm in the right place.

At 06:06 AM 9/23/2004 -0600, you wrote:
Careful with that axe, Eugene!

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:owner-u2-
  [EMAIL PROTECTED] On Behalf Of Stuart Boydell
  Sent: Wednesday, September 22, 2004 9:11 PM
  To: [EMAIL PROTECTED]
  Subject: RE: [U2] hello ?
 
   Yes us pagans are dancing in the moonlight and had to address the
   4 element
   forces at noon... ;-) call to the East, South, North  West..
 
  Ah, NOW I understand how this thread is related to MV... you were gathered
  in a cave and grooving with a Pict.*
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/



Peter Gonzalez
Senior Programmer Analyst
M  M Aerospace Hardware, Inc., a B/E Aerospace Company
1 NW 15 Terrace
Miami, Florida 33172
Phone: 305.925.2714
Fax: 305.925.2610
www.mmaero.com
---
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] hello ?

2004-09-23 Thread Allen E. Elwood \(CA\)
Ok, that's it.  I'm getting out the Marshall amp and Strat and wale away at
Obscured from vision by the clouds..

Born on the spring equinox, it's my fate :-D

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Michael S.
O'Rear
Sent: Thursday, September 23, 2004 07:31
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?


Not just Floyd fans but DRUID floyd fans to boot!

-Original Message-
From: Peter Gonzalez [EMAIL PROTECTED]
Sent: Sep 23, 2004 9:55 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?

a FLOYD fan! Now i know I'm in the right place.

At 06:06 AM 9/23/2004 -0600, you wrote:
Careful with that axe, Eugene!

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:owner-u2-
  [EMAIL PROTECTED] On Behalf Of Stuart Boydell
  Sent: Wednesday, September 22, 2004 9:11 PM
  To: [EMAIL PROTECTED]
  Subject: RE: [U2] hello ?
 
   Yes us pagans are dancing in the moonlight and had to address the
   4 element
   forces at noon... ;-) call to the East, South, North  West..
 
  Ah, NOW I understand how this thread is related to MV... you were
gathered
  in a cave and grooving with a Pict.*
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/



Peter Gonzalez
Senior Programmer Analyst
M  M Aerospace Hardware, Inc., a B/E Aerospace Company
1 NW 15 Terrace
Miami, Florida 33172
Phone: 305.925.2714
Fax: 305.925.2610
www.mmaero.com
---
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] hello ?

2004-09-23 Thread Donald Kibbey
Yep, time to torture the neighbors with the SG, the Carvin and the Fender Twin...  
Into the Arena by M. Schenker is usually enough to send them off to the Mall for a 
few hours.


Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP


 [EMAIL PROTECTED] 09/23/04 12:02PM 
Ok, that's it.  I'm getting out the Marshall amp and Strat and wale away at
Obscured from vision by the clouds..

Born on the spring equinox, it's my fate :-D

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


RE: [U2] hello ?

2004-09-23 Thread Larry Hiscock
As interesting as this thread has become, it really doesn't belong on this
list.  Please move it to u2-community.  Thanks.

Larry Hiscock
Moderator
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Donald Kibbey
Sent: Thursday, September 23, 2004 9:29 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?

Yep, time to torture the neighbors with the SG, the Carvin and the Fender
Twin...  Into the Arena by M. Schenker is usually enough to send them off
to the Mall for a few hours.


Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP


 [EMAIL PROTECTED] 09/23/04 12:02PM 
Ok, that's it.  I'm getting out the Marshall amp and Strat and wale away at
Obscured from vision by the clouds..

Born on the spring equinox, it's my fate :-D

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] hello ?

2004-09-23 Thread Moderator
Everyone,
 This has drifted... a lot. Please move the thread to U2-Community.

- Charles Barouch, Moderator

Donald Kibbey wrote:

Yep, time to torture the neighbors with the SG, the Carvin and the Fender Twin...  
Into the Arena by M. Schenker is usually enough to send them off to the Mall for a 
few hours.


Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP

[demime 1.01d removed an attachment of type text/x-vcard which had a name of u2ug.vcf]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-23 Thread Debster
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Larry Hiscock
Sent: Thursday, September 23, 2004 2:21 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?


As interesting as this thread has become, it really doesn't belong on this
list.  Please move it to u2-community.  Thanks.

Larry Hiscock
Moderator
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Donald Kibbey
Sent: Thursday, September 23, 2004 9:29 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?

Yep, time to torture the neighbors with the SG, the Carvin and the Fender
Twin...  Into the Arena by M. Schenker is usually enough to send them off
to the Mall for a few hours.


Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP


 [EMAIL PROTECTED] 09/23/04 12:02PM 
Ok, that's it.  I'm getting out the Marshall amp and Strat and wale away at
Obscured from vision by the clouds..

Born on the spring equinox, it's my fate :-D

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/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-22 Thread Paul Trebbien
I'm here 

 Paul Trebbien
 Kore Technologies, Senior Support Tech. 
 Solutions that work. People who care.
 V 858.678.0030 F 858.300.2600 W www.koretech.com
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of gerry
Sent: Wednesday, September 22, 2004 8:04 AM
To: [EMAIL PROTECTED]
Subject: [U2] hello ?


where'd everybody go ?
---
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] hello ?

2004-09-22 Thread Allen E. Elwood \(CA\)
End of the summer here in the states.  A lot of people are taking vacation
before the warm weather is gone.  Where are you?  (email ending in .ca ?)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of gerry
Sent: Wednesday, September 22, 2004 10:10
To: [EMAIL PROTECTED]
Subject: Re: [U2] hello ?


the list is very dead today - is some holiday somewhere ?


- Original Message -
From: Paul Trebbien [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, September 22, 2004 12:04 pm
Subject: RE: [U2] hello ?


 I'm here 

  Paul Trebbien
  Kore Technologies, Senior Support Tech.
  Solutions that work. People who care.
  V 858.678.0030 F 858.300.2600 W www.koretech.com
 


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of gerry
 Sent: Wednesday, September 22, 2004 8:04 AM
 To: [EMAIL PROTECTED]
 Subject: [U2] hello ?


 where'd everybody go ?
 ---
 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/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-22 Thread Donald Kibbey
the list is very dead today - is some holiday somewhere ?

Autumnal Equinox???





Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-22 Thread Mitchell Stevelman
FYI: This week is the IBM Technical conference - featuring DB2, Business
Intelligence, Informix, U2  Information Integration, perhaps that is where
you will find a number of people.

http://www-306.ibm.com/services/learning/ites.wss?pageType=pagecontentID=a0
000713
 
Mitchell Stevelman
VP, IT
MR Marking Systems

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Donald Kibbey
Sent: Wednesday, September 22, 2004 2:41 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?

the list is very dead today - is some holiday somewhere ?

Autumnal Equinox???

Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-09-22 Thread LeRoi Keiller
Hey, Allen

Are you trying to be funny? - email in .ca? - You Americans always like to make 
the jokes with the Canadians, eh? :o) (.ca = Canada)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Allen E. Elwood
(CA)
Sent: Thursday, 23 September 2004 4:20
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?
Importance: Low


End of the summer here in the states.  A lot of people are taking vacation
before the warm weather is gone.  Where are you?  (email ending in .ca ?)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of gerry
Sent: Wednesday, September 22, 2004 10:10
To: [EMAIL PROTECTED]
Subject: Re: [U2] hello ?


the list is very dead today - is some holiday somewhere ?


- Original Message -
From: Paul Trebbien [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, September 22, 2004 12:04 pm
Subject: RE: [U2] hello ?


 I'm here 

  Paul Trebbien
  Kore Technologies, Senior Support Tech.
  Solutions that work. People who care.
  V 858.678.0030 F 858.300.2600 W www.koretech.com
 


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of gerry
 Sent: Wednesday, September 22, 2004 8:04 AM
 To: [EMAIL PROTECTED]
 Subject: [U2] hello ?


 where'd everybody go ?
 ---
 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/
---
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] hello ?

2004-09-22 Thread Allen E. Elwood \(CA\)
Hi LeRoi,

G what a hoosier I am, eh? ;-)  I can't believe I didn't think of
Canada!  DUHHHhh...

In my defense, the Santa Anna (devil) winds are blowing out here in the
San Fernando valley just north of Los Angeles and our humidity level went
from around 70% to around 20% this week resulting in a MASSIVE reduction of
my mental facilities due to sinus pain.  Always takes a couple of days to
adjust

Allen

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of LeRoi Keiller
Sent: Wednesday, September 22, 2004 13:25
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?


Hey, Allen

Are you trying to be funny? - email in .ca? - You Americans always like
to make the jokes with the Canadians, eh? :o) (.ca = Canada)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Allen E. Elwood
(CA)
Sent: Thursday, 23 September 2004 4:20
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?
Importance: Low


End of the summer here in the states.  A lot of people are taking vacation
before the warm weather is gone.  Where are you?  (email ending in .ca ?)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of gerry
Sent: Wednesday, September 22, 2004 10:10
To: [EMAIL PROTECTED]
Subject: Re: [U2] hello ?


the list is very dead today - is some holiday somewhere ?


- Original Message -
From: Paul Trebbien [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, September 22, 2004 12:04 pm
Subject: RE: [U2] hello ?


 I'm here 

  Paul Trebbien
  Kore Technologies, Senior Support Tech.
  Solutions that work. People who care.
  V 858.678.0030 F 858.300.2600 W www.koretech.com
 


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of gerry
 Sent: Wednesday, September 22, 2004 8:04 AM
 To: [EMAIL PROTECTED]
 Subject: [U2] hello ?


 where'd everybody go ?
 ---
 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/
---
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] hello ?

2004-09-22 Thread Debster
Yes us pagans are dancing in the moonlight and had to address the 4 element
forces at noon... ;-) call to the East, South, North  West..

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Donald Kibbey
Sent: Wednesday, September 22, 2004 2:41 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] hello ?


the list is very dead today - is some holiday somewhere ?

Autumnal Equinox???





Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP
---
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] hello ?

2004-09-22 Thread Stuart Boydell
 Yes us pagans are dancing in the moonlight and had to address the
 4 element
 forces at noon... ;-) call to the East, South, North  West..

Ah, NOW I understand how this thread is related to MV... you were gathered
in a cave and grooving with a Pict.*










**
This email message and any files transmitted with it are confidential
and intended solely for the use of addressed recipient(s). If you have 
received this email in error please notify the Spotless IS Support Centre (61 3 9269 
7555) immediately who will advise further action.

This footnote also confirms that this email message has been scanned
for the presence of computer viruses.
**
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] hello ?

2004-08-05 Thread Larry Hiscock
It would appear not 

-Original Message-
Subject: [U2] hello ?

am i off the list again ?
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] hello ?

2004-08-05 Thread u2ug
so it seems - didn't receive anything for a few hours which seemed unusual.
i got delisted a few weeks back for some reason thought maybe it had
happened again


- Original Message - 
From: Larry Hiscock [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 05, 2004 12:10 pm
Subject: RE: [U2] hello ?


 It would appear not

 -Original Message-
 Subject: [U2] hello ?

 am i off the list again ?
 ---
 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/