My Visual Database v6.4 Beta
My Visual Database v6.4 Beta
A simple development environment databases, without the help of specialists and programming skills, you will create a Windows application databases. It can be as simple telephone directory and accounting system in your business. The result of your work will be a Windows application that does not require installation and third-party components and the ability to work directly from USB Flash drive.
What's new?
- Added method AddPngFromDatabase for TImageList class, so you can store icons for button in the database.
var
ImageList: TImageList;
begin
ImageList:=TImageList.Create(Form1);
ImageList.Masked:=false;
ImageList.ColorDepth:=cd32bit;
// size of images
ImageList.Width := 24;
ImageList.Height := 24;
ImageList.AddPngFromDatabase('icons', 'pngfile', 1);
ImageList.AddPngFromDatabase('icons', 'pngfile', 2);
ImageList.AddPngFromDatabase('icons', 'pngfile', 3);
Form1.Button1.Images := ImageList;
Form1.Button2.Images := ImageList;
Form1.Button3.Images := ImageList;
Form1.Button1.ImageIndex := 0;
Form1.Button2.ImageIndex := 1;
Form1.Button3.ImageIndex := 2;
end.
Only for V.I.P
Warning! You are not allowed to view this text.