1

(2 replies, posted in General)

Thanks

2

(2 replies, posted in General)

Hi,
Is there a way to make the header in a tablegrid to be RTL?

for now I can do it only for the data in the table:
"Form1.GridEmployees.Columns[k].Alignment := taRightJustify"

Thanks

3

(5 replies, posted in General)

Hi,
Is there any way I can do this kind of filter?

Itzik

4

(5 replies, posted in General)

Hi,
Is there a way to add filter (like in excel) to a table grid? sO the user can filter the table in runtime.

Thanks

5

(1 replies, posted in Script)

Hi,
I'm want my program to create a table online so I run this:
SQLExecute ('CREATE TABLE Persons(PersonID int,LastName varchar(255),FirstName varchar(255),Address varchar(255),City varchar(255))');

when I check the sqlite.dll I can see the new table but not in MVD.
I can only see it if I add it manual to the tables.ini file.
I wnat to to be automatic so I will not need to edit the file after every time the user is adding a table

Thanks

6

(5 replies, posted in Script)

Hi,
Thanks to all,
the right syntax is OpenFile('params','x.exe');

7

(5 replies, posted in Script)

Hi,
This example can't help me.
I need to run External program with parameters, the example use an  internal command

I'm tryin to run an external program that need to get a parameter to run.
When I use:

OpenFile('c:\SmsSender.exe');
The program run but without the parameter

when I try this:
OpenFile('c:\SmsSender.exe','05455555');

or this:
OpenFile('c:\SmsSender.exe 0545555');

the program don't run.

Thanks