Re: [SOLVED] TagbleGrid, Pagination, Footer and Offset
+ 1
Good idea indeed
JB
My Visual Database → General → [SOLVED] TagbleGrid, Pagination, Footer and Offset
+ 1
Good idea indeed
JB
+ 1
Good idea indeedJB
Done.
http://myvisualdatabase.com/forum/viewtopic.php?id=4910
Can MVD work with sqlite 2.8?
I have a project using sqlite 2 as the database and would like to connect MVD to that project. Is there a way to make MVD work with sqlite 2. I also know sqlite 2 is outdated but I wish to connect to it through MVD.
Thank you.
Just replace sqlite.dll file in your project folder and test it.
Thank you boss
I will try it
Just replace sqlite.dll file in your project folder and test it.
The sqlite dll for sqlite 2 gets overwritten/replaced when I run MVD.
replace sqlite.dll in MVD folder too.
Thank you Dmitry. But I still couldn't get it to work.
Thank you Dmitry. But I still couldn't get it to work.
Please provide more details.
Good day family,
Please is there a way to create the following nav menu?
Thank you.
Hello the zimguy
Is this OK for you ?
JB
procedure Form1_bLast_OnClick (Sender: string; var Cancel: boolean); // - 1 record
begin
Form1.GridEmployees.SelectedRow := Form1.GridEmployees.RowCount - 1;
end;
procedure Form1_bNext_OnClick (Sender: string; var Cancel: boolean); // + 1 record
begin
Form1.GridEmployees.SelectedRow := Form1.GridEmployees.SelectedRow +1;
end;
procedure Form1_bFirst_OnClick (Sender: string; var Cancel: boolean);
begin
Form1.GridEmployees.SelectedRow := 0;
end;
procedure Form1_bPrev_OnClick (Sender: string; var Cancel: boolean);
begin
Form1.GridEmployees.SelectedRow := Form1.GridEmployees.SelectedRow -1;
if Form1.GridEmployees.SelectedRow < 0 then Form1.GridEmployees.SelectedRow := 0;
end;
Thank you @jean.brezhonek, but what I wanted was a way to get the nav control in MVD.
The control itself.
My Visual Database → General → [SOLVED] TagbleGrid, Pagination, Footer and Offset
Powered by PunBB, supported by Informer Technologies, Inc.
Theme Hydrogen by Kushi