1

(4 replies, posted in General)

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.

2

(1 replies, posted in General)

Hi,
Can I somehow put a background image in a form (under buttons, textboxes, labels etc)?
Thanks, John.

3

(4 replies, posted in General)

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.

4

(4 replies, posted in General)

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.

5

(2 replies, posted in General)

DriveSoft wrote:

Hello,


Please use another component, Multiline textbox http://myvisualdatabase.com/help_ru/components/memo.png


Dmitriy.

Thank you Dmitriy.

6

(2 replies, posted in General)

Hello everyone,
I'm trying to make my first my_visual_database project. It doesn't seem as difficult as I thought, but I came across one problem that I'm trying to fix.
I put some textboxes in the form. I set these sizes for some of them:

width 560
height 32
and
width 560
height 101 (it's a textbox for large imput);

but when I run the project to check the result, the height sizes are much smaller, say, the original size as if I hadn't modify them in the options
Can you help me, please?
John.