Re: [U2] U2-Users Digest, Vol 13, Issue 21

2010-05-28 Thread Steve Romanow

On 5/28/2010 3:00 PM, u2-users-requ...@listserver.u2ug.org wrote:

Message: 1
Date: Fri, 28 May 2010 09:29:45 +1000
From: "Dan McGrath"
To: "U2 Users List"
Subject: [U2] Langauge Def for Notepad++
Message-ID:
Content-Type: text/plain;   charset="us-ascii"

Hey all,



I seem to recall someone saying that they had a Notepad++ language def
that would work for UniData.



Does anyone know where I could get this or who it was that created it?



Cheers,

Dan

   
I have one for vim and ultraedit.  Takign the information in these and 
modifying it for notepad++ shouldn't be too difficult.  I sure would 
like to see one for Komodo Edit, but that definitely is not straight 
forward.

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


Re: [U2] wIntegrate equivalent ofSystemBuilderTU.CLIENT.GETENVsubroutine

2010-05-28 Thread Doug Farmer
I thought about that, but hoped there was a more direct way than
creating temporary files

Thanks for the feedback

Doug


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, May 28, 2010 11:12 AM
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent
ofSystemBuilderTU.CLIENT.GETENVsubroutine

You could possibly use WIN.PCRUN, which I believe is a library function
provided with wIntegrate, to perform the SET CCPath dos command. Have it
pipe the results to a temp file and use the file xfer library function
to retrieve this?

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 16:55
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of
SystemBuilderTU.CLIENT.GETENVsubroutine

Good idea, but yes, I need it to run on the client.  Also, from both a
Windows U2 Host and a Unix U2 Host

Doug 


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, May 28, 2010 10:07 AM
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System
BuilderTU.CLIENT.GETENVsubroutine

Except that runs on the server, not the users PC. Sorry!

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: 28 May 2010 16:05
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

You can PCPERFORM "SET CCPath" CAPTURING ANS

Which will set ANS to something like "CCPath=C:\whatever"

Ed

(obviously only works on Windows, although similar approach should work
on unix)


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 15:52
To: U2 Users List
Subject: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you
have received this e-mail in error, please notify the sender immediately
and then delete it. If you are not the intended recipient, you must not
use, disclose or distribute this e-mail without the author's prior
permission. We have taken precautions to minimize the risk of
transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept
liability for any loss or damage caused by software viruses. Any views
and/or opinions expressed in this e-mail are of the author only and do
not represent the views of Epicor Software Corporation or any other
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


---
This e-mail and any attachment(s), is confidential and may be legally
privileged. It is intended solely for the addressee. If you are not the
addressee, dissemination, copying or use of this e-mail or any of its
content is prohibited and may be unlawful. If you are not the intended
recipient please inform the sender immediately and destroy the e-mail,
any attachment(s) and any copies. All liability for viruses is excluded
to the fullest extent permitted by law. It is your responsibility to
scan or otherwise chec

Re: [U2] wIntegrate equivalent of SystemBuilderTU.CLIENT.GETENVsubroutine

2010-05-28 Thread Edward Brown
You could possibly use WIN.PCRUN, which I believe is a library function
provided with wIntegrate, to perform the SET CCPath dos command. Have it
pipe the results to a temp file and use the file xfer library function
to retrieve this?

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 16:55
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of
SystemBuilderTU.CLIENT.GETENVsubroutine

Good idea, but yes, I need it to run on the client.  Also, from both a
Windows U2 Host and a Unix U2 Host

Doug 


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, May 28, 2010 10:07 AM
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System
BuilderTU.CLIENT.GETENVsubroutine

Except that runs on the server, not the users PC. Sorry!

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: 28 May 2010 16:05
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

You can PCPERFORM "SET CCPath" CAPTURING ANS

Which will set ANS to something like "CCPath=C:\whatever"

Ed

(obviously only works on Windows, although similar approach should work
on unix)


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 15:52
To: U2 Users List
Subject: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you
have received this e-mail in error, please notify the sender immediately
and then delete it. If you are not the intended recipient, you must not
use, disclose or distribute this e-mail without the author's prior
permission. We have taken precautions to minimize the risk of
transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept
liability for any loss or damage caused by software viruses. Any views
and/or opinions expressed in this e-mail are of the author only and do
not represent the views of Epicor Software Corporation or any other
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


---
This e-mail and any attachment(s), is confidential and may be legally
privileged. It is intended solely for the addressee. If you are not the
addressee, dissemination, copying or use of this e-mail or any of its
content is prohibited and may be unlawful. If you are not the intended
recipient please inform the sender immediately and destroy the e-mail,
any attachment(s) and any copies. All liability for viruses is excluded
to the fullest extent permitted by law. It is your responsibility to
scan or otherwise check this email and any attachment(s). Unless
otherwise stated (i) views expressed in this message are those of the
individual sender (ii) no contract may be construed by this e-mail.
Emails may be monitored and you are taken to consent to this monitoring.


Civica Services Limited, Company No. 02374268; Civica UK Limited,
Company No. 01628868
Both companies are registered in England and Wales and each

Re: [U2] wIntegrate equivalent of System BuilderTU.CLIENT.GETENVsubroutine

2010-05-28 Thread Doug Farmer
Good idea, but yes, I need it to run on the client.  Also, from both a
Windows U2 Host and a Unix U2 Host

Doug 


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, May 28, 2010 10:07 AM
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System
BuilderTU.CLIENT.GETENVsubroutine

Except that runs on the server, not the users PC. Sorry!

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: 28 May 2010 16:05
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

You can PCPERFORM "SET CCPath" CAPTURING ANS

Which will set ANS to something like "CCPath=C:\whatever"

Ed

(obviously only works on Windows, although similar approach should work
on unix)


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 15:52
To: U2 Users List
Subject: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you
have received this e-mail in error, please notify the sender immediately
and then delete it. If you are not the intended recipient, you must not
use, disclose or distribute this e-mail without the author's prior
permission. We have taken precautions to minimize the risk of
transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept
liability for any loss or damage caused by software viruses. Any views
and/or opinions expressed in this e-mail are of the author only and do
not represent the views of Epicor Software Corporation or any other
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


---
This e-mail and any attachment(s), is confidential and may be legally
privileged. It is intended solely for the addressee. If you are not the
addressee, dissemination, copying or use of this e-mail or any of its
content is prohibited and may be unlawful. If you are not the intended
recipient please inform the sender immediately and destroy the e-mail,
any attachment(s) and any copies. All liability for viruses is excluded
to the fullest extent permitted by law. It is your responsibility to
scan or otherwise check this email and any attachment(s). Unless
otherwise stated (i) views expressed in this message are those of the
individual sender (ii) no contract may be construed by this e-mail.
Emails may be monitored and you are taken to consent to this monitoring.


Civica Services Limited, Company No. 02374268; Civica UK Limited,
Company No. 01628868
Both companies are registered in England and Wales and each has its
registered office at 2 Burston Road, Putney, London, SW15 6AR.

---

___
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] wIntegrate equivalent of System Builder TU.CLIENT.GETENVsubroutine

2010-05-28 Thread Edward Brown
Except that runs on the server, not the users PC. Sorry!

Ed

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: 28 May 2010 16:05
To: U2 Users List
Subject: Re: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

You can PCPERFORM "SET CCPath" CAPTURING ANS

Which will set ANS to something like "CCPath=C:\whatever"

Ed

(obviously only works on Windows, although similar approach should work
on unix)


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 15:52
To: U2 Users List
Subject: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you
have received this e-mail in error, please notify the sender immediately
and then delete it. If you are not the intended recipient, you must not
use, disclose or distribute this e-mail without the author's prior
permission. We have taken precautions to minimize the risk of
transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept
liability for any loss or damage caused by software viruses. Any views
and/or opinions expressed in this e-mail are of the author only and do
not represent the views of Epicor Software Corporation or any other
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


---
This e-mail and any attachment(s), is confidential and may be legally
privileged. It is intended solely for the addressee. If you are not the
addressee, dissemination, copying or use of this e-mail or any of its
content is prohibited and may be unlawful. If you are not the intended
recipient please inform the sender immediately and destroy the e-mail,
any attachment(s) and any copies. All liability for viruses is excluded
to the fullest extent permitted by law. It is your responsibility to
scan or otherwise check this email and any attachment(s). Unless
otherwise stated (i) views expressed in this message are those of the
individual sender (ii) no contract may be construed by this e-mail.
Emails may be monitored and you are taken to consent to this monitoring.


Civica Services Limited, Company No. 02374268; Civica UK Limited,
Company No. 01628868
Both companies are registered in England and Wales and each has its
registered office at 2 Burston Road, Putney, London, SW15 6AR.

---

___
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] wIntegrate equivalent of System Builder TU.CLIENT.GETENVsubroutine

2010-05-28 Thread Edward Brown
You can PCPERFORM "SET CCPath" CAPTURING ANS

Which will set ANS to something like "CCPath=C:\whatever"

Ed

(obviously only works on Windows, although similar approach should work
on unix)


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Farmer
Sent: 28 May 2010 15:52
To: U2 Users List
Subject: [U2] wIntegrate equivalent of System Builder
TU.CLIENT.GETENVsubroutine

For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you
have received this e-mail in error, please notify the sender immediately
and then delete it. If you are not the intended recipient, you must not
use, disclose or distribute this e-mail without the author's prior
permission. We have taken precautions to minimize the risk of
transmitting software viruses, but we advise you to carry out your own
virus checks on any attachment to this message. We cannot accept
liability for any loss or damage caused by software viruses. Any views
and/or opinions expressed in this e-mail are of the author only and do
not represent the views of Epicor Software Corporation or any other
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

---
This e-mail and any attachment(s), is confidential and may be legally 
privileged. It is intended solely for the addressee. If you are not the 
addressee, dissemination, copying or use of this e-mail or any of its content 
is prohibited and may be unlawful. If you are not the intended recipient please 
inform the sender immediately and destroy the e-mail, any attachment(s) and any 
copies. All liability for viruses is excluded to the fullest extent permitted 
by law. It is your responsibility to scan or otherwise check this email and any 
attachment(s). Unless otherwise stated (i) views expressed in this message are 
those of the individual sender (ii) no contract may be construed by this 
e-mail. Emails may be monitored and you are taken to consent to this 
monitoring.  

Civica Services Limited, Company No. 02374268; Civica UK Limited, Company No. 
01628868
Both companies are registered in England and Wales and each has its registered 
office at 2 Burston Road, Putney, London, SW15 6AR.
---

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


[U2] wIntegrate equivalent of System Builder TU.CLIENT.GETENV subroutine

2010-05-28 Thread Doug Farmer
For all of you multiple platform developers - A query:

I have need to duplicate some code I wrote in System Builder in a
wIntegrate environment.

System Builder has a subroutine called TU.CLIENT.GETENV.  I use this
subroutine to look up an environment variable on a user's PC so I know
where a program I need to execute is loaded.  I am not able to find an
equivalent command using wIntegrate subroutines. 

Not being a wIntegrate programmer, I resorted to reading all 600 pages
of the wIntegrate Host Subroutines Reference manual.  Quite a barn
burner! I could not put it down.

But seriously, I need a way to look at the user's environment settings
and pull the value for a specific setting.
For example, under System Builder, I would have this code

CALL TU.CLIENT.GETENV("CCPath",ProgramPath)
Command = '&1"':ProgramPath:'\CCEntry.exe"'
CALL TU.EXECUTE.SHELL(Command,'')

Under wIntegrate, I found the WIN.PCRUN subroutine (or WIN.PCRUNS2), so
I know I can run the program, but I do not know how to get the
environment setting or where the program is installed.

Any help is greatly appreciated!

Doug Farmer

BTW - I am not a System Builder developer either, so if there is a
better way to execute a PC program in System Builder, don't hold back on
telling me.  You won't hurt my feelings!


This e-mail is for the use of the intended recipient(s) only. If you have 
received this e-mail in error, please notify the sender immediately and then 
delete it. If you are not the intended recipient, you must not use, disclose or 
distribute this e-mail without the author's prior permission. We have taken 
precautions to minimize the risk of transmitting software viruses, but we 
advise you to carry out your own virus checks on any attachment to this 
message. We cannot accept liability for any loss or damage caused by software 
viruses. Any views and/or opinions expressed in this e-mail are of the author 
only and do not represent the views of Epicor Software Corporation or any other 
company within its group.


This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Saying Goodbye...

2010-05-28 Thread David A. Green
It's been an honor, don't go away too far.

David A. Green
(480) 813-1725
DAG Consulting

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson
Sent: Thursday, May 27, 2010 9:29 PM
To: U2 Users List
Subject: [U2] Saying Goodbye...

I'm not sure if most, or any, of you actually know me, but here's what
amounts to my swan song.

For the past 18+ years I've been a decent UV DBA. I took classes from Mark
Baldridge and later Joel Yates way back when to learn how to manually
repair corrupt files, and was proficient before uniVerse became so stable
that corrupt files happened infrequently and fixtool worked.

But during that time, I've maintained a personal email and web server,
running Majordomo v1.94.5, etc. and have learned a bit about the LAMP
stack in so doing.

I've been a layed-off DBA, for a small retail company, for the past 22
months, consulting my previous employer because they got rid of me so they
could have salary cap to hire a different type of IT manager and move off
UV to Profit21, which failed after $250,000 lost. They are back on UV and
will stay now.

I, however, have to move on because I've received the proverbial offer one
can't refuse ($5000US signing bonus and the option for 5000 shares of
company stock), plus no one in the 'PICK' world has offered me anything,
though there may be a few things still in the works, which will now go
quietly away. I will be working in the LAMP world now, making a living
doing my hobby, so to speak. (FYI: LAMP = Linux, Apache, MySQL and PHP or
Perl, depending on who you listen to)

I may hang around on the list for a bit, but will eventually have to
unsubscribe as my life moves farther and father away from a field I have
grown to respect and enjoy. Best wishes to all of you, and like others
before me, I'm sure I'll miss the group association you've provided,
though I'm mostly just a quiet observer.

Thanks and I'll never forget this group of intelligent, insightful,
thought-provoking and often entertaining, professionals.

---
Karl Pearson
ka...@ourldsfamily.com
Owner/Administrator of the sites at
http://ourldsfamily.com
---
"To mess up your Linux PC, you have to really work at it;
 to mess up a microsoft PC you just have to work on it."
---
 Democracy is two wolves and a lamb voting on what to have
 for lunch. Liberty is a well-armed lamb contesting the vote.
 --Benjamin Franklin
---
 Children seldom misquote you. In fact, they usually
 repeat word for word what you shouldn't have said.
---


___
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] Saying Goodbye...

2010-05-28 Thread Jeff Powell

I love your signature quotes. I hope you enjoy your new job.


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


Re: [U2] Saying Goodbye...

2010-05-28 Thread Brutzman, Bill

Good luck Karl... We will miss you.

--Bill

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson
Sent: Friday, May 28, 2010 12:29 AM
To: U2 Users List
Subject: [U2] Saying Goodbye...

I'm not sure if most, or any, of you actually know me, but here's what
amounts to my swan song.

For the past 18+ years I've been a decent UV DBA. I took classes from
Mark Baldridge and later Joel Yates way back when to learn how to
manually repair corrupt files, and was proficient before uniVerse became
so stable that corrupt files happened infrequently and fixtool worked.

But during that time, I've maintained a personal email and web server,
running Majordomo v1.94.5, etc. and have learned a bit about the LAMP
stack in so doing.

I've been a layed-off DBA, for a small retail company, for the past 22
months, consulting my previous employer because they got rid of me so
they could have salary cap to hire a different type of IT manager and
move off UV to Profit21, which failed after $250,000 lost. They are back
on UV and will stay now.

I, however, have to move on because I've received the proverbial offer
one can't refuse ($5000US signing bonus and the option for 5000 shares
of company stock), plus no one in the 'PICK' world has offered me
anything, though there may be a few things still in the works, which
will now go quietly away. I will be working in the LAMP world now,
making a living doing my hobby, so to speak. (FYI: LAMP = Linux, Apache,
MySQL and PHP or Perl, depending on who you listen to)

I may hang around on the list for a bit, but will eventually have to
unsubscribe as my life moves farther and father away from a field I have
grown to respect and enjoy. Best wishes to all of you, and like others
before me, I'm sure I'll miss the group association you've provided,
though I'm mostly just a quiet observer.

Thanks and I'll never forget this group of intelligent, insightful,
thought-provoking and often entertaining, professionals.

---
Karl Pearson
ka...@ourldsfamily.com
Owner/Administrator of the sites at
http://ourldsfamily.com
---
"To mess up your Linux PC, you have to really work at it;  to mess up a
microsoft PC you just have to work on it."
---
 Democracy is two wolves and a lamb voting on what to have  for lunch.
Liberty is a well-armed lamb contesting the vote.
 --Benjamin Franklin
---
 Children seldom misquote you. In fact, they usually  repeat word for
word what you shouldn't have said.
---


___
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] Langauge Def for Notepad++

2010-05-28 Thread Brian Leach
Hi Dan

Not notepad++, but I have a definition for the excellent TextPad and there's
always the free mvDeveloper you can download.

Brian

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan McGrath
Sent: 28 May 2010 12:30 AM
To: U2 Users List
Subject: [U2] Langauge Def for Notepad++

Hey all,

 

I seem to recall someone saying that they had a Notepad++ language def
that would work for UniData. 

 

Does anyone know where I could get this or who it was that created it?

 

Cheers,

Dan

 

 



###
The information transmitted in this message and attachments (if any) is
intended only
for the person or entity to which it is addressed. The message may contain
confidential
and/or privileged material.  Any review, retransmission, dissemination or
other use of
or taking of any action in reliance upon this information by persons or
entities other
than the intended recipient is prohibited.  If you received this in error,
please
contact the sender and delete the material from any computer.

The intended recipient of this e-mail may only use, reproduce, disclose or
distribute
the information contained in this e-mail and any attached files with the
permission of IMB.

###
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.819 / Virus Database: 271.1.1/2900 - Release Date: 05/27/10
19:30:00

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