Extract an Icon From Application
Extract an icon from application.
0 comments Monday 05 Feb 2007 | Delphi Tutorial | Files
Extract an icon from application.
0 comments Monday 05 Feb 2007 | Delphi Tutorial | Files
SXSkinComponents is a set of visual components. But it’s not a usual package of controls, it’s a new ideology of applications’ graphic appearance. Using SXSkinComponents you can easily create both types of skinnable interfaces:
0 comments Friday 02 Feb 2007 | Delphi Tutorial | Forms, Freeware
The successor TDBGrid with the extended features. Is able to display multiline wordwrap column titles, checkboxs for boolean fields, a convenient select of records from the keyboard and mouse via checkboxs, extanded Indicator column, fixing of columns, an opportunity to exclude insert and delete of records in the DBGrid, own standard PopupMenu, save/restore of a column states, processing of additional events etc. Multilanguage resources.
2 comments Friday 02 Feb 2007 | Delphi Tutorial | Freeware, Grids
A text replace function for strings.
0 comments Thursday 01 Feb 2007 | Delphi Tutorial | Strings

TntWare controls allow you to develop applications that take advantage of the Unicode capabilities of Windows NT/2000/XP/2003 without abandoning Delphi, C++Builder or Windows 95/98/ME.
0 comments Tuesday 30 Jan 2007 | Delphi Tutorial | Component Packs, Freeware
Providing easy and intuitive navigation options within an application is the goal of every software developer. The ExpressNavBar Suite gives you everything you need to create easy to use applications with incredible sophistication and elegance. Via its advanced design time editor, you can quickly setup and create the look and feel of choice without writing a single line of code - and deliver applications that will blow away your competition. ExpressNavBar even allows you to include shortcuts and other visual controls within it.
0 comments Friday 26 Jan 2007 | Delphi Tutorial | Bars and Status Bars, Shareware
Standard action menu bar, created with TActionMainMenuBar is glitchy and awkward. Nobody can cosider using it in a serious development project. And this is where TActionMenuBar2000 comes in. Simply replace TActionMainMenuBar with TActionMenuBar2000 and enjoy powerful functions of actions and professional look and feel of Animated Menus. No additional coding is needed, all replacements will be done automatically at runtime. TActionMenuBar2000 will correctly render all changes you’re mading to your actions.
0 comments Thursday 25 Jan 2007 | Delphi Tutorial | Bars and Status Bars, Freeware
function GetDesktopScreenShot:TBitmap;
var
Desktop:HDC;
begin
Result:= TBitmap.Create;
Desktop:= GetDC(0);
try
try
Result.PixelFormat := pf32bit;
Result.Width := Screen.Width;
Result.Height := Screen.Height;
BitBlt(Result.Canvas.Handle,0,0, Result.Width, Result.Height, Desktop,0,0,SRCCOPY);
Result.Modified := True;
finally
ReleaseDC(0,Desktop);
end;
except
Result.Free;
Result:=nil;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Image1.Picture.Bitmap := GetDesktopScreenShot;
end;
0 comments Sunday 21 Jan 2007 | Delphi Tutorial | Forms
Here Borland Database Engine (BDE) error list:
1 comment Sunday 21 Jan 2007 | Delphi Tutorial | Database