Bill and others
In our recent project upgrading Frank Conroy's application to R:Base 6.5++
for Windows, I'm sorry to say that we have occasionally found play back
files to be troublesome at times. We tried similar playback file techniques
to
force fields to come up in edit mode in regions, and mostly what we got for
our attempts were garbage characters written in fields and computer hangs.
Great idea, but not reliable at this point. If anyone has found ways to
MAKE
them more stable, we'd love to hear it! We find our USUAL playbacks which
write character values work fine, but those playing back navigation keys
etc. are more likely to crash.
David Blocker
----- Original Message -----
From: "Bill Downall" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, July 27, 2001 1:35 PM
Subject: Re: Editing form field data
> On Fri, 27 Jul 2001 09:04:16 -0800, Jim Blackburn wrote:
>
> >The obvious solution is to have a plaback file that does the equivalent
> of Shift-Ctrl-Home. The problem is, I can not find a string that will do
> this!
>
> How about a Home key, followed by a Shift-End:
>
> -- char 0 + char 71 is home
> -- char 0 + char 79 is end
> -- char 0 + char 95 is Ctrl-F2 (end of playback file)
> SET VAR vPlayback = (CHAR(0) + CHAR(71) + +
> CHAR(0) + CHAR(79) + CHAR(0) + CHAR(95))
> OUTPUT SelValue.PLY
> WRITE .vPlayback
> OUTPUT SCREEN
>
> Bill
>
>
>
>