I have a DPK project, and sometimes it shows an error (“out of memory”) when compiling (entering Delphi IDE), and sometimes it compiles successfully.
However, when I try When compiling it via MSBU
Category: Delphi
Delphi is a well-known rapid application development tool (Rapid Application Development, RAD) under the Windows platform. Its predecessor was the “Borland Turbo Pascal” that was popular in the DOS era. The earliest version was developed by the American Borland company in 1995. The main creator is Anders Hejlsberg. After several years of development, this product has also been transferred to the Embarcadero company. Delphi is an integrated development environment (IDE). The core used is Object Pascal developed from the traditional Pascal language. It uses a graphical user interface as the development environment, and uses IDE, VCL tools and compilers to cooperate with the function of connecting to the database. An application development tool centered on object-oriented programming.
Delphi – How to make my form always in the best state?
I have these small cursor shapes, I need to keep everything in everything, always…
FormStyle is already fsStayOnTop
I use this code:
SetWindowPos(tempCursor.Handle, HWND_TOPMOST, 0, 0, 0,
Can WinForms embed in the VCL DELPHI application?
We have a VCL Delphi 2005 application and want to use the XtraReports component of DevExpress, which is for .NET. Is it possible to use it without converting the VCL Delphi application it?
Pe
Delphi – String Survival Management in Record
I’m trying to get rid of short strings.
One of the many places that we currently use in our program is records.
Many of these records are stored in the AVL tree. < p>
The AVL tree used is u
Delphi – How to align the left and top control without a fixed width?
I have 6 RichEdit controls in the ScrollBox. They need to be aligned in order from top to bottom, but I need the width to be not fixed, so when the text length exceeds the ScrollBox width, I can us
Delphi – INNO installer cannot be imported into DLL
I have no luck importing Delphi DLL into Inno Setup(Unicode). DLL has a simple procedure..
procedure Foo(); stdcall;
begin
end;
exports
Foo; DLL is included in the installer source , And add
Delphi – calculate maximum font size
I am calculating the maximum font size so that the Text fits the ClientRect of TCxLabel. But I may not be able to get it to work. (see picture)
fontsize is large And thxt is not drawn to the
Change a TSTATUSPANEL color after the initial program is loaded in Delphi?
I have a program with a status bar containing three elements at the bottom. I want to redraw the second element with a different font color to indicate that the user is valid. My question is The fi
Delphi – Limit the maximum text length of the Inplace editor in TDBGRID
How to limit the maximum text length of inplace editor in TDBGrid? (Delphi Berlin)
The data type is Float.
procedure TInplaceEdit.UpdateContents;
begin
Text :=”;
EditMask := Grid.Get
List – Delphi – Do I have to release all the elements in TOBJECT before release?
Please about this code:
type
TClient = class(TObject)
public
Host: String;
Queue: TIdThreadSafeStringList;
end;
var
Clients: TThreadList;
procedure TMain. FormCreate(Sender: TObject);