Topic: How to add more than one pascal script in MVD? Add links.

1) How to add more than one pascal script into MVD?

2) Is there a way to link DLL into MVD?

3) Accessing cmd? I mean firing command in cmd.

4) Way to read text, xml, csv file?

2 (edited by k245 2024-05-16 06:30:13)

Re: How to add more than one pascal script in MVD? Add links.

1) use unit command; ( see https://k245.ru/en/mvdb-en/butterfly-effect.html  https://k245.ru/en/mvdb-en/correction-of-mistakes.html )
2) use DynamicWrapperX  https://myvisualdatabase.com/forum/view … 518#p37518
3) use CreateOleObject  https://myvisualdatabase.com/forum/view … 547#p48547
4) use TFileStream class https://myvisualdatabase.com/forum/sear … 1320082609


P.S. first aid: https://myvisualdatabase.com/forum/search.php

Визуальное программирование: блог и телеграм-канал.

Re: How to add more than one pascal script in MVD? Add links.

thanks @k245

Re: How to add more than one pascal script in MVD? Add links.

I am missing something but how you are getting those class files? example utils.pas, form.pas

Exploring your site very cool stuff bookmarked.

Re: How to add more than one pascal script in MVD? Add links.

kavinacomputers wrote:

I am missing something but how you are getting those class files? example utils.pas, form.pas

Exploring your site very cool stuff bookmarked.

I create them using a text editor Notepad++

https://k245.ru/wp-content/uploads/2022/07/izobrazhenie_2022-07-25_122619968-1024x806.png

and their content is the experience of developing applications in MVDB since 2018. More modules can be found in the ClearApp project

https://k245.ru/en/software-en/clearapp-2.html

Визуальное программирование: блог и телеграм-канал.

Re: How to add more than one pascal script in MVD? Add links.

k245 wrote:
kavinacomputers wrote:

I am missing something but how you are getting those class files? example utils.pas, form.pas

Exploring your site very cool stuff bookmarked.

I create them using a text editor Notepad++

https://k245.ru/wp-content/uploads/2022/07/izobrazhenie_2022-07-25_122619968-1024x806.png

and their content is the experience of developing applications in MVDB since 2018. More modules can be found in the ClearApp project

https://k245.ru/en/software-en/clearapp-2.html

How do you compile? and check results
Any compiler you link to notepad++

Re: How to add more than one pascal script in MVD? Add links.

kavinacomputers wrote:

How do you compile? and check results
Any compiler you link to notepad++

The compilation is produced by My Visual Database. But there is one caveat: it only shows the line with the error in its built-in editor. Therefore, usually creating and debugging modules occurs like this: first, all procedures and functions are written in the built-in editor, and after they are fully tested, they are transferred to external files (modules). But over time, you can write the source text directly in NotePad++, which has convenient syntax highlighting and global search.

Визуальное программирование: блог и телеграм-канал.

Re: How to add more than one pascal script in MVD? Add links.

k245 wrote:
kavinacomputers wrote:

How do you compile? and check results
Any compiler you link to notepad++

The compilation is produced by My Visual Database. But there is one caveat: it only shows the line with the error in its built-in editor. Therefore, usually creating and debugging modules occurs like this: first, all procedures and functions are written in the built-in editor, and after they are fully tested, they are transferred to external files (modules). But over time, you can write the source text directly in NotePad++, which has convenient syntax highlighting and global search.

got it again thanks for help