can someone tell me how to add a hard return to this (new line) (in a
richedit object)
I have tried:
$Window->Schreibfeld->Text($Window->Schreibfeld->Text .
"<body></body>\n");
$Window->Schreibfeld->Text($Window->Schreibfeld->Text .
"<body></body>\r\n");
$Window->Schreibfeld->Text($Window->Schreibfeld->Text .
"<body></body>".chr(13));
none seem to work.
Is there a way to move to a given line number in a richedit object?
Thanks,
Tim
----------------------------------------------------------------------------
---------------------
Tim Thomas
Unix Systems Administrator
Lockheed Martin EIS · Denver Data Center
303-430-2281
mailto:[EMAIL PROTECTED]
----------------------------------------------------------------------------
---------------------
> -----Original Message-----
> From: David Hiltz [SMTP:[EMAIL PROTECTED]]
> Sent: Monday, January 31, 2000 7:55 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [perl-win32-gui] insert something into a RichEdit field
>
> > I have the following sub-routine:
> >
> > sub body_Click { }
> >
> >
> > This sub should insert the text "<body></body>" into a RichEdit field.
> >
> > How can I do that ?
>
>
> sub body_Click {
>
> $Window->Schreibfeld->Text($Window->Schreibfeld->Text .
> "<body></body>");
> }