I paste below some code I copied from a running program. This code
outputs data for three fields separated by TAB's. You might check on
the definition of the content of a PLAYBACK file.

hope this helps,

Bill Cook
Kent WA USA

  CLEAR VAR vout
  SET VAR vout TEXT
  SET VAR vout = (CHAR(0)+CHAR(92)+CTXT(.vcusid))
  SET VAR vout = (.vout+CHAR(9)+CTXT(.vjob))
  SET VAR vout = (.vout+CHAR(9)+CTXT(.vnewrev))
  SET VAR vout = (.vout+CHAR(0)+CHAR(95))
  SKIP 0
  OUTPUT c:\windows\temp\scr.scr
  WRITE .vout
  OUTPUT SCREEN
  PLAYBACK c:\windows\temp\scr.scr

----- Original Message -----
From: "Rob Vincent" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, October 19, 2002 8:15 AM
Subject: Remove <CR> on Playback File


> Is there a way to create a playback file so that it does not include
a <cr>?
>
> I'm using the PLAYBACK command within eep's to populate columns
> located in data-entry forms.
>
> I want the data stored in the playback file to fill the column, but
NOT to advance
> to the next column.  This would give the user the ability to edit
the field
> themselves before continuing.
>
> Here's a sample of what I'm doing:
>
> SET V uprc CURRENCY = &plevel IN invent WHERE itemno = .itmno
> SET V pbtext TEXT = (CTXT(.uprc))
> OUTPUT price.
> WRITE .pbtext
> OUTPUT SCREEN
> SKIP TO price
> PLAYBACK price.
> RETURN
>
> I'm guessing there may be another way to create the file using a
different
> command other than WRITE which seems to be producing the <CR>
>
> Even when I manually use RBedit and enter text (without pressing
<CR>)
> the PLAYBACK command seems to automatically generate it.
>
> How do you guys do this?
> Thanks,
>
> Rob Vincent
>
>

================================================
TO SEE MESSAGE POSTING GUIDELINES:
Send a plain text email to [EMAIL PROTECTED]
In the message body, put just two words: INTRO rbase-l
================================================
TO UNSUBSCRIBE: send a plain text email to [EMAIL PROTECTED]
In the message body, put just two words: UNSUBSCRIBE rbase-l
================================================
TO SEARCH ARCHIVES:
http://www.mail-archive.com/rbase-l%40sonetmail.com/

Reply via email to