Re: Oracle Forms, add text to text item
Date: 28 May 2004 06:54:47 -0700
Message-ID: <77459c6d.0405280554.6745d829_at_posting.google.com>
"Georg Beyer Clausen" <develop_at_gbcdesign.dk> wrote in message news:<xEstc.4705$Vf.186982_at_news000.worldonline.dk>...
> > >
> > When-Button-Pressed ::
> >
> > :block.textitemname := 'myText';
> > Synchronize;
> >
> > Do You mean this ?
> > hth, Jan
> >
>
> hi Jan,
>
> thanks for responding.
>
> The above solution removes the original text from text item before inserting
> 'myText'.
>
> But I want to keep the original text in the text item and insert 'myText' at
> the cursor position in the text item.
>
> Is it possible?
>
> regards,
> Georg
Yes, this is possible.
When-Button-Pressed ::
:block.textitemname := :block.textitemname || 'myText'; Synchronize;
The "||" operator may not be right,
operator "||" meaning concatenate.
Curtis Received on Fri May 28 2004 - 15:54:47 CEST