Topic: Imput Text Size

Hi,

Is there a way to modify the size of the text which I type in a textbox? Of course, the size must be saved.
Thank you.

Re: Imput Text Size

Hello,
Do you mean font size?

http://myvisualdatabase.com/forum/misc.php?action=pun_attachment&item=98&download=0

Post's attachments

Attachment icon fontsize.png 54.07 kb, 316 downloads since 2014-07-22 

Dmitry.

3 (edited by visualjohn 2014-07-22 16:40:48)

Re: Imput Text Size

Yes! That one, thank you.
Just another simple question.

Is there a way to reset  every input textbox automatically, say, with a button?
I now have to do that manually when I start a new query in my search form.
Thanks again.

Re: Imput Text Size

Yes, you can do it using script.


Place button for clear textboxes and create event OnClick, where you should write script, example:

procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
     Form1.Edit1.Clear;
     Form1.Edit2.Clear;
     Form1.Edit3.Clear;         
end;
Dmitry.

Re: Imput Text Size

DriveSoft wrote:

Yes, you can do it using script.


Place button for clear textboxes and create event OnClick, where you should write script, example:

procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
     Form1.Edit1.Clear;
     Form1.Edit2.Clear;
     Form1.Edit3.Clear;         
end;

It works well! Thank you very much.