Filepro-list Digest, Vol 79, Issue 25

Steve Parker sparker at abccompuserve.com
Thu Aug 19 06:23:01 PDT 2010



-----Original Message-----
From: filepro-list-bounces+sparker=abccompuserve.com at lists.celestial.com
[mailto:filepro-list-bounces+sparker=abccompuserve.com at lists.celestial.com]
On Behalf Of filepro-list-request at lists.celestial.com
Sent: Thursday, August 19, 2010 4:04 AM
To: filepro-list at lists.celestial.com
Subject: Filepro-list Digest, Vol 79, Issue 25

Send Filepro-list mailing list submissions to
	filepro-list at lists.celestial.com

To subscribe or unsubscribe via the World Wide Web, visit
	http://mailman.celestial.com/mailman/listinfo/filepro-list
or, via email, send a message with subject or body 'help' to
	filepro-list-request at lists.celestial.com

You can reach the person managing the list at
	filepro-list-owner at lists.celestial.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Filepro-list digest..."


Today's Topics:

   1. Re: memo (Richard Kreiss)
   2. Re: memo (Jose Lerebours)
   3. RE: memo (Richard Kreiss)
   4. OT: Oh no, not one of those 'remember when this cost..."
      threads. (John Esak)


----------------------------------------------------------------------

Message: 1
Date: Wed, 18 Aug 2010 11:45:22 -0400
From: "Richard Kreiss" <rkreiss at verizon.net>
Subject: Re: memo
To: <filepro-list at lists.celestial.com>,	<fpsupport at fptech.com>
Message-ID: <007101cb3eec$5f22a0e0$1d67e2a0$@net>
Content-Type: text/plain; charset=US-ASCII

Working on a new addition to an app. The file has a memo field and I have
added the following code

Program called" rclerk foobar -s1 -xe -d  (summary of options)

>From auto processing
     if: 9 = ""
Then:em(9,uplow)="add memo"
	If: 9 ne ""
Then: em="Edit memo"

Input processing
@wefxx:
Then: SHOW "Enter Comment or Press \kE-"{em{","< \kZ-To continue";end

@wukxx:
Then: memo 9 edit("9","2","7","75");memo 9 show(("9","2","7","75");END

Problem is when the memo is saved, the memo screen prompts don't clear.

If the same type of function is run from @keyM, when the memo is saved, the
prompts clear.

Is this not clearing in the first instance correct?

Richard









------------------------------

Message: 2
Date: Wed, 18 Aug 2010 14:18:18 -0400
From: Jose Lerebours <fpgroups at gmail.com>
Subject: Re: memo
To: Richard Kreiss <rkreiss at verizon.net>
Cc: filepro-list at lists.celestial.com, fpsupport at fptech.com
Message-ID:
	<AANLkTimVcPpypy7=oVLy7v=1FhfHc-36-ixQaiZYruz6 at mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

On Wed, Aug 18, 2010 at 11:45 AM, Richard Kreiss <rkreiss at verizon.net>
wrote:
> Working on a new addition to an app. The file has a memo field and I have
> added the following code
>
> Program called" rclerk foobar -s1 -xe -d ?(summary of options)
>
> >From auto processing
> ? ? if: 9 = ""
> Then:em(9,uplow)="add memo"
> ? ? ? ?If: 9 ne ""
> Then: em="Edit memo"
>
> Input processing
> @wefxx:
> Then: SHOW "Enter Comment or Press \kE-"{em{","< \kZ-To continue";end
>
> @wukxx:
> Then: memo 9 edit("9","2","7","75");memo 9 show(("9","2","7","75");END
>
> Problem is when the memo is saved, the memo screen prompts don't clear.
>
> If the same type of function is run from @keyM, when the memo is saved,
the
> prompts clear.
>
> Is this not clearing in the first instance correct?
>

I have not done filePro coding for a while but I believe that when
using -d flag, prompts are not shown nor cleared so, you must do this
within your own code.

Regards,


Jose


------------------------------

Message: 3
Date: Wed, 18 Aug 2010 14:39:59 -0400
From: "Richard Kreiss" <rkreiss at verizon.net>
Subject: RE: memo
To: "'Jose Lerebours'" <fpgroups at gmail.com>
Cc: filepro-list at lists.celestial.com, fpsupport at fptech.com
Message-ID: <008e01cb3f04$c42f14b0$4c8d3e10$@net>
Content-Type: text/plain; charset=iso-8859-1



> -----Original Message-----
> From: Jose Lerebours [mailto:fpgroups at gmail.com]
> Sent: Wednesday, August 18, 2010 2:18 PM
> To: Richard Kreiss
> Cc: filepro-list at lists.celestial.com; fpsupport at fptech.com
> Subject: Re: memo
> 
> On Wed, Aug 18, 2010 at 11:45 AM, Richard Kreiss <rkreiss at verizon.net>
wrote:
> > Working on a new addition to an app. The file has a memo field and I
have
> > added the following code
> >
> > Program called" rclerk foobar -s1 -xe -d ?(summary of options)
> >
> > >From auto processing
> > ? ? if: 9 = ""
> > Then:em(9,uplow)="add memo"
> > ? ? ? ?If: 9 ne ""
> > Then: em="Edit memo"
> >
> > Input processing
> > @wefxx:
> > Then: SHOW "Enter Comment or Press \kE-"{em{","< \kZ-To continue";end
> >
> > @wukxx:
> > Then: memo 9 edit("9","2","7","75");memo 9 show(("9","2","7","75");END
> >
> > Problem is when the memo is saved, the memo screen prompts don't clear.
> >
> > If the same type of function is run from @keyM, when the memo is saved,
the
> > prompts clear.
> >
> > Is this not clearing in the first instance correct?
> >
> 
> I have not done filePro coding for a while but I believe that when
> using -d flag, prompts are not shown nor cleared so, you must do this
> within your own code.
> 
> Regards,
> 
> 
> Jose

Jose,

As I indicated above, when accessing the memo edit function from @key, the
prompts clear on their own even with the -d option.

They do no clear when in update mode.  You may be correct.  But since one
cannot put up one's own prompts for the memo function, I would expect they
would be cleared when the memo was saved.

Thanks for the thought.

Richard




------------------------------

Message: 4
Date: Wed, 18 Aug 2010 19:00:06 -0400
From: "John Esak" <john at valar.com>
Subject: OT: Oh no, not one of those 'remember when this cost..."
	threads.
To: <filepro-list at lists.celestial.com>
Message-ID: <201008182300.o7IN0WST008105 at admin114.securesites.net>
Content-Type: text/plain;	charset="us-ascii"

No, I don't want to start one of those threads.... And I won't add to it if
it starts.  We have all heard it all and commiserate with each other on how
much we each paid for our first 12 Megabyte hard disk. BUT, this just
absolutely blows away all the old stuff.  Just two things.  I got a
TigerDirect email today. One of there typical sale items for today... Are
you sitting down.  A 500 Gigabyte hard drive for $39.95.  Gulp!  I mean,
that is beyond belief compared to back in 1982 when I bought my... Blah,
blah... Well, you get the point!  $39 bucks... Good god you could build a 3
Terabyte array for $240!!!!  Sheesh.

Okay, second thing. My buddy just bought a 256 Gb hard drive... Non moving
media (a phrase I coined about 10 years ago... Or, at least I think I made
it up for a keynote speech one year...)  Think of it, 256 Gb on a plug in
memory flash drive. It just has a regular SATA connector on it! I think it
is the new 3.0 SATA though, so this little bugger would be a killer in my
handheld PDA. Which now has a 40Gb mechanical spinning, breakable, crashable
hard drive in it.  I can't wait, and if the company doesn't do it soon, I
may retrofit the flash card in myself!  :-)

Incidentally, I just got my final copy of the complete Max headroom series.
Good God, that was a smart series... And still, I mean still, to this day,
it is ahead of its time.  If you want some of the best computer sci-fi
you've ever seen get this package... About 
$32 bucks from Amazon.  The first episode is a killer, and then do yourself
a favor and jump to the episode about The Blanks.  You will be a forever fan
immediately.

John


Message: 5
Date: Wed, 19 Aug 2010 09:20:00 -0400
From: "Steve Parker" <sparker at abccompuserve.com>
Subject: RE: memo
------------------------------

Dear Richard,

Not sure I'm responding correctly, so hope this makes it to you!

I believe what you are looking for is the "display" command. 

Display " "

And if there is a particular spot on the screen that needs to be cleared,
then add that to the command.

Steve Parker

_______________________________________________
Filepro-list mailing list
Filepro-list at lists.celestial.com
http://mailman.celestial.com/mailman/listinfo/filepro-list


End of Filepro-list Digest, Vol 79, Issue 25
********************************************



More information about the Filepro-list mailing list