> 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>");
}


Reply via email to