Topic: Scripts - many questions ;-)
1. Haw can I do function ..
function Plus (A:integer, B: integer) : integer
begin
Plus := A + B
end;
doesn't work. Or
function Plus (A:integer, B: integer) : integer
begin
Return (A + B);
end;
The same ...
The problem is haw to return the value of the function.
2. Using SQLLite - I have added new table to database by using SQL Lite but when I open the database in My Visual Database - I don't see the table. What shoul I do to see the table?
I have find solution - when you add the table manualy to db file you must change tables.ini file and it works - so just for others
3. Do you have list of all function or script manual - I am able to read russian language. Not write .. bad latters ;-) No keyboard for it ... In the manual on web is nothing about functions (Copy, IntToStr ..and so on)
4. Can I have more then one script file - If I do bigger project I need to organize it. One file si little bit strange ...
Thanks