Bill
Hope this doesn't sound like a silly question but...
How do you know what char home,end and so on are..
Where can I find this information?
I have wanted to create Playbacks a few times but
lack the knowledge
Bill Downall wrote:
>
> 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