Board index » delphi » Memo/TabControl help please

Memo/TabControl help please

hi
can somebody please tell me how i can stop the flashing text cursor
from appearing in a Memo box?
and when using TabControls, say you have created 3 tabs, it always
shows the 1st tab's page.  how can you select the other two tabs
during design time so that you can put stuff onto it?
thanks
 

Re:Memo/TabControl help please


Hi Bob !

bob schrieb:

Quote

> hi
> can somebody please tell me how i can stop the flashing text cursor
> from appearing in a Memo box?

The only way I know is to set Memo.Enabled:=false

Quote
> and when using TabControls, say you have created 3 tabs, it always
> shows the 1st tab's page.  how can you select the other two tabs
> during design time so that you can put stuff onto it?
> thanks

A TabControl doesn't have more than one page! In your case you should
use the PageControl !

bye,

Dets ...

Re:Memo/TabControl help please


Hello,
Just use the OnMouseMove event to set the Cursor Property of the Memo to
crArrow:

procedure TForm1.Memo1MouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
begin
     memo1.Cursor := crArrow;
end;

greetings,

Bernhard

bob schrieb:

Quote

> hi
> can somebody please tell me how i can stop the flashing text cursor
> from appearing in a Memo box?
> and when using TabControls, say you have created 3 tabs, it always
> shows the 1st tab's page.  how can you select the other two tabs
> during design time so that you can put stuff onto it?
> thanks

Other Threads