7,901

(2 replies, posted in General)

I think it's not possible in the current version.
These tables have the same structure?

7,902

(12 replies, posted in General)

Montenegr0
You should create new table in database for files, please send me your project to support@drive-software.com
I'll try to help you.

7,903

(8 replies, posted in General)

Nakamura Norio
Hello,


It the current version multilanguage is not supported, but you can translate menu using a script.
Please, download example:

У компонента TableGrid создайте событие OnDoubleClick

procedure Form2_TableGrid1_OnDoubleClick (Sender: string);
begin
    Form2.Close;
end;

7,905

(12 replies, posted in General)

I made a example for you, how to change the grid cell color.

7,906

(27 replies, posted in Russian)

atempbox
Тоже приходила такая мысль в голову, спасибо.

zoomix
Пришлите пожалуйста проект на support@drive-software.com
постараюсь помочь.

Если кнопки правильно настроены, то будут отъезжать.

Если кнопки должны быть всегда внизу окна и слева, установите для них значение Anchors: Left,Bottom

Например, если установить


Left, Top, Right, Bottom - тогда компонента будет увеличиваться в размерах вместе с формой (обычно подходят для гридов)
Right,Bottom - тогда компонент будет всегда оставаться в правом нижнем углу формы
Left,Bottom - тогда компонент будет всегда оставаться в левом нижнем углу формы
Right,Top - тогда компонент будет всегда оставаться в правом верхнем углу формы


попробуйте просто поиграться с этими значениями, я думаю тогда станет ясен принцип.

Приветствую,


У форм необходимо задействовать свойство Sizeable, также все компоненты имеют свойство Anchors, которое позволяет задать поведение компонента, при изменении размера формы.


Если не получится, пришлите пожалуйста проект на support@drive-software.com
помогу

7,911

(12 replies, posted in General)

megood70
I sent to you email.

7,912

(5 replies, posted in General)

Hello,



I can't see your attached project, please send it to support@drive-software.com

7,913

(2 replies, posted in General)

Usually, you no need to store Age and Date in database, you need only birthdate, age you can calculate using a calculated field.
Please, download fixed project.


For calulate age by script, uses function YearsBetween (added in the latest version 1.49)
For calculate age in TableGrid, uses a calculated field.

7,914

(2 replies, posted in General)

You can delete file sqlite.db and run project for create db file again.

7,915

(5 replies, posted in Reports)

Please, send me your project to support@drive-software.com
I'll try to help you.

7,916

(3 replies, posted in Talks about all)

Nakamura Norio
At the moment, there is no, but probably will in the near future

7,917

(12 replies, posted in General)

megood70
Yes, please send me your project to support@drive-software.com

Приветствую,


можно так, где Button1 и Button2 кнопки для редактирования


procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
    Form2.Tag:=1;
end;

procedure Form1_Button2_OnClick (Sender: string; var Cancel: boolean);
begin
    Form2.Tag:=2;
end;

procedure Form2_OnShow (Sender: string; Action: string);
begin
    if Action='ShowRecord' then
    begin
       if Form2.Tag=1 then ShowMessage('Button1');
       if Form2.Tag=2 then ShowMessage('Button2');
    end;
end;

Попробовал, тоже не получается, хотя в Delphi работает, видимо FastScript все таки так не умеет.

7,920

(2 replies, posted in SQL queries)

Here you can download the example, how to do import from CSV
http://myvisualdatabase.com/forum/misc. … download=1



Also you can send me your project and part of CSV file for import, I'll try to help you.
support@drive-software.com

7,921

(5 replies, posted in General)

Montenegr0
I made an example for you:

7,922

(12 replies, posted in General)

megood70 wrote:

but How to send bulk SMS..  You can also easily use a .csv file recipients..and also i want you make for me sample SMS bulk .

I  made example for you.
To able to sending SMS, first you need create an account:
https://www.clickatell.com/register/

7,923

(14 replies, posted in Script)

kkalgidim wrote:

Thanx its now working fine.
i triy to load grid with active statusprojects on first load of the program by adding
gorev.id_durum=1 AND  section to following line
         Form1.TableGrid1.dbFilter:=' gorev.id_durum=1 AND gorev.id_personel='+IntToStr(idUser) ;

But with this command i can not search comleted status projects.


Replace:

Form1.TableGrid1.dbFilter:='gorev.id_personel='+IntToStr(idUser); // show tasks according to user              
Form1.TableGrid1.dbUpdate;

             
to

Form1.TableGrid1.dbFilter:='gorev.id_durum=1 AND gorev.id_personel='+IntToStr(idUser); // show tasks according to user
Form1.TableGrid1.dbUpdate;
Form1.TableGrid1.dbFilter:='gorev.id_personel='+IntToStr(idUser); // show tasks according to user

7,924

(12 replies, posted in General)

megood70
Yes, you can do it using a script.
Similar topic
http://myvisualdatabase.com/forum/viewtopic.php?id=1015

7,925

(5 replies, posted in General)

Hello,


Just type link in a TextBox starting with http://
text will be automatically link, double-click on the link, open it.