Topic: TextBox new Sizes

Hello!

I'm trying to set a TextBox  with a diferent Height, but when i run the program it came back allways to default Height, there is a way to set the Height??


Thanks

Re: TextBox new Sizes

Hello Ailinux

It works fine for me

With Objet Inspector : Height = 50

or with a script

procedure Form1_OnShow (Sender: string; Action: string);
begin
  Form1.Edit1.Height := 50;
end;

I'm using MVDB 1.47

Jean B.

Re: TextBox new Sizes

ailinux
it is a feature component, its height depends on the size of the font.
in your case, you can use the component Memo http://myvisualdatabase.com/help_ru/components/memo.png

Dmitry.