4,676

(36 replies, posted in Russian)

Книга снова была немного дополнена и местами откоректирована.

4,677

(5 replies, posted in Script)

mahbooobma wrote:

is it possible for me to create a video tutorial???

No, I can help you only with specific question.

4,678

(2 replies, posted in General)

AD1408 wrote:

Is My Visual Database for home hobby uses or we can create self contained database app, where compiled version can be distributed.

All your projects is self contained database app. You can distribute or sell them.



AD1408 wrote:

Say, I created a db app with My Visual Database and compiled my db app. I sent compiled db application to somebody. Can he run the compiled application without having My Visual Database in his computer?

The result of your work will be a Windows application that does not require My Visual Database or third-party components.

Just copy your database project folder to another PC and it will work. In the folder of project you can find executable file (it appears after first time run project from My Visual Database).

4,679

(5 replies, posted in Script)

mahbooobma wrote:

Please send me video tutorial how to create statistical charts

tanx

There is no video tutorial.

zoomix wrote:

Почему-то файл не добавляется...

Возможно файл слишком большой? например более 3 мегабайт?

4,681

(5 replies, posted in Script)

Yes, an example
http://myvisualdatabase.com/forum/misc. … download=1

4,682

(4 replies, posted in General)

Hello,


In the current beta version 2.7 you can insert some data only to MS Word, also planned and for Excel.

4,683

(1 replies, posted in General)

Hello,


Actually you can use an already exists MySQL database, but before you must create the same database structure in My Visual Database, then you can connect to the exists database.


But there is two rules for database structure.


1. Every database table must have primary key with name `id`
2. Every foreign key must have name like  `id_parenttable`

4,684

(13 replies, posted in Reports)

lhimes wrote:

hello dmitry

previously you told me there were several structural mistakes in my database. i asked what they were. i restructured my db and am asking if this structure is without mistakes.

lee

I just can't to check your database structure, because I don't know anything about this sport subject.

4,685

(6 replies, posted in Reports)

meideprac-x
Please attach your project, I'll try to help you.

4,686

(7 replies, posted in Script)

Check out this example:

if SQLExecute ('SELECT ArdoA800X.b1 FROM ArdoA800x WHERE id = ' + IntToStr(Form1.TableGrid1.dbItemID) ) = '1' then Form1.CheckBox6.Checked := True else Form1.CheckBox6.Checked := False;

4,687

(13 replies, posted in Reports)

lhimes wrote:

does this take care of my database structure? still looking for help on this.

lee

Unfortunately I can help you only with specific question.

4,688

(7 replies, posted in Script)

einsteinf5 wrote:

I do understand there are two versions of what I wanted to do, I attach a project to be understood what I wanted. for much the promptness and courtesy, a great day!

Please explain, what you want to do?

4,689

(4 replies, posted in Script)

einsteinf5 wrote:

I used version 2.7 beta function word, and it gives me an error code like when using the 'Print CV (Using templates)', with the other button works, thanks!
P.S.
using win 8.1 pro X64 + MS Office 2013 X64

Thank you for the bug report, I'll check it.

4,690

(6 replies, posted in Reports)

Hello,


Can you more explain about your question?

4,691

(7 replies, posted in Script)

Hello,


It's not possible in the current version but planned.

4,692

(22 replies, posted in General)

gieri wrote:

Hello Dmitry,

just have a quick question how to get the update thing to the other tablegrid in my DB?
The scriptcode just have TableGrid1, but I have the other Grid with TableGrid2 in the same window. Is it possible to update both grids at the same time?

Cheers

gieri

Change this code

procedure OnTimer;
var
    id: integer;
begin
     id := Form1.TableGrid1.VertScrollBar.Position;
     Form1.tablegrid1.dbUpdate;
     Form1.tablegrid1.VertScrollBar.Position := id;
end;

To

procedure OnTimer;
var
    id1, id2: integer;
begin
     id1 := Form1.TableGrid1.VertScrollBar.Position;
     Form1.tablegrid1.dbUpdate;
     Form1.tablegrid1.VertScrollBar.Position := id1;

     id2 := Form1.TableGrid2.VertScrollBar.Position;
     Form1.tablegrid2.dbUpdate;
     Form1.tablegrid2.VertScrollBar.Position := id2;
end;

4,693

(2 replies, posted in Script)

Hello,


In the current version it's not possible.

4,694

(1 replies, posted in Russian)

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


Это можно сделать с помощью скрипта, предварительно сделав экспорт ваших данныех в CSV файл, далее этот CSV файл можно импортировать в базу данных, пример
http://myvisualdatabase.com/forum/viewtopic.php?id=1373

Игоревич wrote:

Вы бы немного уделили внимание на графическое оформление. Это тоже не маловажно. Возможность красить кнопки, вставлять в них свои иконки. Если пишеться программа на продажу на это тоже обращают внимание.

По поводу иконок согласен, необходимо добавить.


Что касается красить кнопки, как правило это только пойдет во вред, начинающие очень часто пытаются приукрасить программу чем то нестандартым, тем самым затрудняя использование программы своим пользователям, создавая нестандартные интерфейсы. Создание пользовательских интерфейсов сейчас это целая наука и без профильного образовани лучше не заниматься раскрашиванием кнопок. В Windows даже заблокировали возможность придания стандартным компонентам нестандартных цветов.


Пожалуйста, не пытайтесь раскрасить интерфейс, как правило это всегда смотрится нелепо.

4,696

(4 replies, posted in Script)

I added this feature.
Please download latest beta version 2.7
https://www.dropbox.com/s/582unbatehan1 … a.zip?dl=0


Example:
http://myvisualdatabase.com/forum/misc. … download=1

4,697

(9 replies, posted in Russian)

My Visual Database 2.7 beta
https://www.dropbox.com/s/582unbatehan1 … a.zip?dl=0



Что нового?

- Добавлена возможность вставлять данные в Word документы.
- Добавлена возможность создавать Word документы.
- Исправлены ошики в WebGrid (при использовании названия полей на кирилице, с пробелами и проблема с кодировкой)
- Добавлены математические функции возведения в степень (Power и IntPower)




проект с примером работы с MS Word:
http://myvisualdatabase.com/forum/misc. … download=1





---

4,698

(7 replies, posted in Script)

Unfortunately I can't understand, what exactly you want to do. To many mistakes in the code.

4,699

(2 replies, posted in General)

Hello,


It's possible if your client have opened your project using trial version of My Visual Database.

4,700

(1 replies, posted in Script)

Hello.

Unfortunately it's not possible.