Extract an Icon From Application

Extract an icon from application.

Continue Reading »

SXSkinComponents

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:

  • An interface with buttons, checkboxes, edits and other controls, design of which is changed like Windows XP Themes.
  • A fully graphical interface with custom images instead of buttons and other controls.

Continue Reading »

SMDBGrid

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.

Continue Reading »

Replace Text

A text replace function for strings.

Continue Reading »

TntWare Delphi Unicode Controls 2.3.0

TntWare Delphi Unicode Controls 2.3.0

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.

Continue Reading »

ExpressNavBar

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.

Continue Reading »

TInspectorBars

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.

Continue Reading »

How to make a desktop screenshot?

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;

Borland Database Engine (BDE) Error List

Here Borland Database Engine (BDE) error list:

Continue Reading »

Page 20 of 20« First...«1617181920