Topic: Table Grid Hyperlink

Hello DriveSoft

In my project i want to put the menus in the table grid in which the gridStyle is gsSlide then it has a hyperlink to call the individuals or selected forms.

Is this possible?  Pls Help!

Thanks!

Post's attachments

Attachment icon TEST.zip 336.03 kb, 383 downloads since 2017-07-18 

Re: Table Grid Hyperlink

Hello.


procedure Form1_TableGrid1_OnCellClick (Sender: string; ACol, ARow: Integer);
begin
    if ARow = 0 then Form3.Show;
    if ARow = 1 then Form4.Show;
    if ARow = 2 then Form5.Show;
end;
Dmitry.