I have a Delphi bitmap (32Bit) that has transparency information. I need to convert and save it to a PNG file while preserving the transparency.
I am trying to display a table using ShowMessage that looks like t开发者_如何学Gohis: short| Description for \"short\"
I am new to delphi. I was trying to add C Object files in my Delphi project and link them directly since Delphi Supports C Object Linking. I got it working when i link a single Object file. But when i
So I\'m working in Delphi 2007 and I am cleaning up my code. I have come to notice that in a great many procedures I declare a number of different variables of开发者_运维知识库 the same type.
My program needs to read chunks from a huge binary file with random access. I have got a list of offsets and lengths which may have several thousand entries. The user selects an entry and the program
I\'m trying to use the dbexpress components in Delphi 2007 to connect to a MySQL database but getting an error the reads \"Access violation at address 0B86E258 in module \'dbxmys30.dll\'. Read of addr
In a D2010 application I do StringList.SaveToStream (MemStream, TEncoding.Unicode); I then send this stream over the network to som开发者_运维技巧e client applications. This part of the code is fix
I have a Delphi 2007 project and I\'m trying to set the Project->Options->\'Version Info\'. I enter the values into the form and save the project. However, when I build, the generated exe doesn\'t con
consider the next sample application program TestMemory; {$APPTYPE CONSOLE} uses PsAPI, Windows, SysUtils; function GetUsedMemoryFastMem: cardinal;
i have a base class declarated like this type TBaseClass=class protected constructor Create(LoadData:boolean;const Param1,Param2:string); overload;