All Delphi

Everything You Want To Know From VCL, Tips To Snippet All Everything About Delphi And CodeGear Related

AlmediaDev BussinessSkinForm (Version 6.41)

10th July 2008 by

Hi, All Delphi readers, time to see and evaluate this baby out of the box ..feel free to download my gift on below link.. :) Read the rest of this entry »

Bookmark and Share

Posted in VCL | 1 Comment »

Data Access Components for MySQL (MyDAC v5.50.0.35)

8th July 2008 by

hi all delphi readers , I got this review for you all to consider also you will find some interesting link below :)

Data Access Components for MySQL Overview

Data Access Components for MySQL (MyDAC) is a library of components that provides direct access to MySQL database servers from Delphi, Delphi for .NET, C++Builder and Kylix. MyDAC can connect directly to MySQL server or work through the MySQL client library. The MyDAC library is designed to help programmers develop faster and cleaner MySQL database applications. Read the rest of this entry »

Bookmark and Share

Posted in VCL | No Comments »

SecureBlackbox VCL Professional package Licensed

6th July 2008 by

Hi All Delphi readers, Add perfect security to your application!

It is time to make your applications up-to-date. Enhance them with outstanding security features. Add digital signing and encryption to data storage and processing functions. Authenticate e-mail, secure information transfer, and provide strong identity management functions for your users. All of these can be done in minutes with SecureBlackbox for Developers Read the rest of this entry »

Bookmark and Share

Posted in VCL | No Comments »

CodeGear 2007 May/June 08 Help Update Free Download

4th July 2008 by

hi all delphi readers for you that want to download the codegear Help Updates May/June, you can download from link below : Read the rest of this entry »

Bookmark and Share

Posted in Uncategorized | No Comments »

How to Embeded files inside Exe(2)

2nd July 2008 by

Including (Linking/Embeding) Resources to Executables

With the Borland’s Resource Compiler we have created the AboutDelphi.res resource file. The next step is to add the following compiler directive to a unit in your project, immediately after the form directive (below the implementation key word). Read the rest of this entry »

Bookmark and Share

Posted in Tips | No Comments »

How to Embeded files inside Exe(1)

2nd July 2008 by

hi all delphi readers, Games and other types of applications which use multimedia files like sounds and animations must either distribute the extra multimedia files along with the application or embed the files within the executable.
Rather than distribute separate files for your application’s use, you can add the raw data to your application as a resource. You can then retrieve the data from your application when it is needed. This technique is generally more desirable because it can keep others from manipulating those add-in files. Read the rest of this entry »

Bookmark and Share

Posted in Tips | No Comments »

How to sent file to recycle bin in delphi

30th June 2008 by

hi all delphi reader, today i want to share how to delete or sent files to recycle bin so after deletetion we can retrieve again the file.

Here’s a Delphi procedure that can delete a file with the ability to undo by sending the file to the “Recycle Bin. “Function bFileDelete” will return True if the operation was successful. Read the rest of this entry »

Bookmark and Share

Posted in Snippet, Tips | No Comments »

How To Create A Roll Up Form (with animation)

28th June 2008 by

hello, alldelphi.com reader todays tips is .. how to create a roll up form with animation. sure we now there are several component that can do that trick such as billenium and also one of the JEDI component. But surely if we can do it our self why buy or used another component right ? Read the rest of this entry »

Bookmark and Share

Posted in Snippet, Tips | No Comments »

How To Track User’s Idle Time

26th June 2008 by

Hello alldelphi.com users, we meet again today i want to show you some interesting snippet :D

Suppose you have a data-critical type of application where you would not want a non-authored user to work with the data. Such an application could automatically log out the current user if no user activity has taken place in a lengthy time.

To track a user’s idle time you could hook keyboard and mouse activity. Note, however, that installing a system-wide message hook is a very invasive thing to do and should be avoided if possible, since it will require your hook DLL to be loaded into all processes. Read the rest of this entry »

Bookmark and Share

Posted in Snippet, Tips | 1 Comment »

Encryption, cypher and hashes(2)

24th June 2008 by

The real simplicity to this function actually comes from the hard work done by the encryption classes TDCP_cast256 and TDCP_sha1 which work seamlessly together to encrypt my string for me. To get a better understanding of how the encryption works lets take a look at some of the method calls used from the encryption classes:

TDCP_cast256.Create(Self) – The constructor method of the TDCP_cast256 class returns an object of type TDCP_cast256. Using this object we can call the EncryptString method. Read the rest of this entry »

Bookmark and Share

Posted in VCL | No Comments »