ResEd ProjectResourceEditor is an expert designed for viewing and editing the resource files (.res; .resx – Win32 as well as DotNet) that are linked to the active project. The expert registers itself in the menubar of Delphi under View.
ResEd ProjectResourceEditor 1.6.5
February 9th, 2007Extract an Icon From Application
February 5th, 2007Extract an icon from application.
SXSkinComponents
February 2nd, 2007SXSkinComponents 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.
SMDBGrid
February 2nd, 2007The 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.
Replace Text
February 1st, 2007A text replace function for strings.
TntWare Delphi Unicode Controls 2.3.0
January 30th, 2007
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.
How to make a desktop screenshot?
January 21st, 2007function 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
January 21st, 2007Here Borland Database Engine (BDE) error list: