dbTalk Databases Forums  

Free tools for the "Pick" community

comp.databases.pick comp.databases.pick


Discuss Free tools for the "Pick" community in the comp.databases.pick forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Tom Phillips
 
Posts: n/a

Default Free tools for the "Pick" community - 05-19-2006 , 12:10 AM






Some search, compare and editing programs are available at:
http://www.tom-phillips.info/

These are programs that I find useful in my daily program development tasks.

They run in R83 mode under Universe, and of course, in all of the other R83
flavors.

Specifically, I use qed instead of the Universe editor which I found was
typing intensive.
Besides - I missed the "p" commands.
It's very similar to the R83 line editor with a few enhancement.

I would appreciate any feedback.
Tom Phillips



Reply With Quote
  #2  
Old   
Bruce Nichol
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-19-2006 , 01:57 AM






Goo'day, Tom,

On Fri, 19 May 2006 01:10:20 -0400, "Tom Phillips"
<squash (AT) computer (DOT) org> wrote:

Quote:
Some search, compare and editing programs are available at:
http://www.tom-phillips.info/

These are programs that I find useful in my daily program development tasks.

They run in R83 mode under Universe, and of course, in all of the other R83
flavors.

Specifically, I use qed instead of the Universe editor which I found was
typing intensive.
???

Quote:
Besides - I missed the "p" commands.
Actually, and I'm being a bit careful here, it is, I believe, an
easier and better task using the UV "pre-store" process.... Granted,
you have to get used to it, but it really was the most endearing thing
to come out of my conversion to UV.... And, not terribly well
documented back then....

By use of the &ED& file, you can store all of your "pre-store"
commands, recalling them at will...

ED &ED& BN
BN
0001 E
0002 G9
0003 R/0403/0404
0004 FI
0005 .X BN

This is a simple example... the "E" in attr 1 is mandatory, and then
what follows is a list of the ED instructions you require in the
sequence you require them, ending with a "recursuive call" back on
itself if you want a list of items edited...... Very similar, but, I
think, easier to read and verify..... You can call other &ED&
pre-store items as one line of instruction, should you desire...

Then in editing the item/list, simply issue the instruction
..X<space>itemname and you're away.. It's still there in &ED& for the
next time, if you want.....A description of the pre-store instruction
can be placed after the "E" in Attr 1....

And, if you forget/neglect to set your pre-store in place before
entering ED you can always XEQ ED &ED& itemname from within ED, and
then call it....

YMMV

Quote:
It's very similar to the R83 line editor with a few enhancement.

I would appreciate any feedback.
Tom Phillips

Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....


Reply With Quote
  #3  
Old   
Tom Phillips
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-19-2006 , 08:59 AM



Different strokes Bruce, here's how I do it...

SELECT file WITH xxx "0403"
QED file
P1 G9{R/0403/0404{FI{P1
P1

Done. All items changed. No secondary edits to the md... nothing to clean
up.
Thanks for the interest though,
Tom...



"Bruce Nichol" <reverse_ecurb (AT) taloncs (DOT) com.au> wrote

Quote:
Goo'day, Tom,

On Fri, 19 May 2006 01:10:20 -0400, "Tom Phillips"
squash (AT) computer (DOT) org> wrote:

Some search, compare and editing programs are available at:
http://www.tom-phillips.info/

These are programs that I find useful in my daily program development
tasks.

They run in R83 mode under Universe, and of course, in all of the other
R83
flavors.

Specifically, I use qed instead of the Universe editor which I found was
typing intensive.

???

Besides - I missed the "p" commands.

Actually, and I'm being a bit careful here, it is, I believe, an
easier and better task using the UV "pre-store" process.... Granted,
you have to get used to it, but it really was the most endearing thing
to come out of my conversion to UV.... And, not terribly well
documented back then....

By use of the &ED& file, you can store all of your "pre-store"
commands, recalling them at will...

ED &ED& BN
BN
0001 E
0002 G9
0003 R/0403/0404
0004 FI
0005 .X BN

This is a simple example... the "E" in attr 1 is mandatory, and then
what follows is a list of the ED instructions you require in the
sequence you require them, ending with a "recursuive call" back on
itself if you want a list of items edited...... Very similar, but, I
think, easier to read and verify..... You can call other &ED&
pre-store items as one line of instruction, should you desire...

Then in editing the item/list, simply issue the instruction
.X<space>itemname and you're away.. It's still there in &ED& for the
next time, if you want.....A description of the pre-store instruction
can be placed after the "E" in Attr 1....

And, if you forget/neglect to set your pre-store in place before
entering ED you can always XEQ ED &ED& itemname from within ED, and
then call it....

YMMV

It's very similar to the R83 line editor with a few enhancement.

I would appreciate any feedback.
Tom Phillips

Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....



Reply With Quote
  #4  
Old   
Tony Gravagno
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-19-2006 , 08:19 PM



I have also added one tool to my freeware page which includes a couple
MV utilities.

ExcelExport.exe will reach into a .XLS file and extract all worksheets
into unique CSV files. For those of you who ask "how do I get from
Excel data into my MV app, you can easily execute this from BASIC and
then read the results. I can provide a couple lines of code to
convert the quoted, comma-delimited CSV to plain attribute-delimited
MV items. Same sort of process can be written to populate real XLS
workbooks, not CSV's that people open with Excel. See the
ExcelExport_README.txt for details.

This isn't open source, but it's free, and lots of enhancements are
possible. Enjoy.

Tony
http:// removethisNebula-RnD.com/freeware/


Reply With Quote
  #5  
Old   
Bill H
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 02:32 PM



Tom:

Why don't you post all of this on the "wiki"
(http://www.pickwiki.com/cgi-bin/wiki.pl?SourceCode).

Bill

"Tom Phillips" <squash (AT) computer (DOT) org> wrote

Quote:
Some search, compare and editing programs are available at:
http://www.tom-phillips.info/

These are programs that I find useful in my daily program development
tasks.

They run in R83 mode under Universe, and of course, in all of the other
R83 flavors.

Specifically, I use qed instead of the Universe editor which I found was
typing intensive.
Besides - I missed the "p" commands.
It's very similar to the R83 line editor with a few enhancement.

I would appreciate any feedback.
Tom Phillips




Reply With Quote
  #6  
Old   
Bill H
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 02:33 PM



Tony:

Why don't you post your free stuff on the wiki? :-)

Bill

"Tony Gravagno" <g6q3x9lu53001 (AT) sneakemail (DOT) com.invalid> wrote

Quote:
I have also added one tool to my freeware page which includes a couple
MV utilities.

ExcelExport.exe will reach into a .XLS file and extract all worksheets
into unique CSV files. For those of you who ask "how do I get from
Excel data into my MV app, you can easily execute this from BASIC and
then read the results. I can provide a couple lines of code to
convert the quoted, comma-delimited CSV to plain attribute-delimited
MV items. Same sort of process can be written to populate real XLS
workbooks, not CSV's that people open with Excel. See the
ExcelExport_README.txt for details.

This isn't open source, but it's free, and lots of enhancements are
possible. Enjoy.

Tony
http:// removethisNebula-RnD.com/freeware/




Reply With Quote
  #7  
Old   
frosty
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 02:38 PM



Bill H wrote:
Quote:
Tom:

Why don't you post all of this on the "wiki"
(http://www.pickwiki.com/cgi-bin/wiki.pl?SourceCode).
How would one post a program there?

I don't see any links for that purpose;
in fact, I see this:
"This page is read-only"

--
frosty




Reply With Quote
  #8  
Old   
Tony Gravagno
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 03:22 PM



"Bill H" wrote:

Quote:
Tony:
Why don't you post your free stuff on the wiki? :-)
Bill
I have a lot more freedom to post, update, and re-organize code on my
own site. I also don't trust other sites to be around and available
but I'm fairly confident mine will last at least as long as I do.

Couple new additions just made today, have a gander.

T


Reply With Quote
  #9  
Old   
Electric_Monk
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 10:28 PM



If I'm doing a prestore, especialy if it's self invoking, I tend to be
a bit more paranoid before setting it off. Same effect, though.
I would ...

ED File
9<Enter>
R/0403/0404<Enter>
FI<Enter>
..S3 BHM<Enter>
..X BHM<Enter>
..S4 BHM<Enter>

Just to make sure I didn't naff up the file completely or get in an
endless loop.


Reply With Quote
  #10  
Old   
Bill H
 
Posts: n/a

Default Re: Free tools for the "Pick" community - 05-23-2006 , 10:43 PM



John:

Click on the "Home" page for instructions. :-)

Bill

"frosty" <frostyj (AT) bogus (DOT) tld> wrote

Quote:
Bill H wrote:
Tom:

Why don't you post all of this on the "wiki"
(http://www.pickwiki.com/cgi-bin/wiki.pl?SourceCode).

How would one post a program there?

I don't see any links for that purpose;
in fact, I see this:
"This page is read-only"

--
frosty





Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.