2
votes
8answers
624 views
Encryption library for Delphi
I'm looking for a free and up to date encryption library for Delphi 2010 that implements RSA and AES (Rijndael).
I want a free library because I plan to write and publish some sample code t …
1
vote
4answers
222 views
Charting recomendations for Delphi
I'm looking for a decent charting library to use with Delphi 2010.
We dont want to require additional framework be installed on client PCs, so would like to avoid toolkits that use .Net, Ja …
4
votes
Hidden Features of Delphi
Ctrl+/ to comment/uncomment a block of code.
The problem with CTRL+Alt+"." and Crtl+Alt+"," is that it unmarks the block. I also like hav …
1
vote
Hidden Features of Delphi
Navigating methods in a unit:
Ctrl+Alt+Up/Down - move to previous/next method
Ctrl+Alt+Home/End - move to the first/last method in the unit
Introduced after Delphi 7. Works in Delp …
5
votes
Delphi 2009 TurboPower library conversions
Some components in the process of being ported to Delphi 2009, including 5 TurboPower libraries. No Orpheus or SysTools, though.
…
4
votes
Hidden Features of Delphi
Team pictures
Tested in Delphi 2007 and 2009.
Go to Help|About
Hold town the Alt key ant type T E A M to get the scrolling team list.
Double-click on the lis …
3
votes
StringReplace alternatives to improve performance.
If you're using Delphi 2009, this operation is about 3 times faster with TStringBuilder than with ReplaceString. It's Unicode safe, too.
I used the text from …
3
votes
2
votes
tStringList passing in C# to Delphi DLL
If this is your DLL, I'd rewrite the function to accept an array of strings instead. Avoid passing classes as DLL parameters.
Or, if you really want to use a TStringList for some …
1
vote
tStringList passing in C# to Delphi DLL
If you don't control the DLL and they can't or won't change it, you could always write your own Delphi wrapper in a separate DLL with parameters that are more cross-language friendly.
Havin …
0
votes
How to implement find as you type on a TComboBox descendant
You could override TCustomComboBox.KeyPress (in StdCtrls) and duplicate the csDropDown behaviour.
…
1
vote
Change today’s date, advancing one month and setting the systemtime
Based on your pseudocode:
procedure SetNewTime(aDateTime: TDateTime; aMonths: Integer);
var
lSystemTime: TSystemTime;
begin
DateTimeToSystemTime(aDateTime, lSystemTime);
Inc(l …
1
vote
Change today’s date, advancing one month and setting the systemtime
setSystemTime uses UTC time, so you have to adjust for your time zone. The bias is the number of minutes your machine's timezone differs from UTC. This adjusts the date properly on my system: …
2
votes
Nice bit of code to format an xml string
The RTL has FormatXMLData in XMLDoc.pas that accepts and returns strings.
…
6
votes
Will you use Delphi Prism
Yes.
As enthusiastic as I was about Delphi for .Net, it still lagged behind the .Net framework. Prism resolves this for the current and future framework versions, including full designer s …
