All Delphi

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

    Search

  • Sponsors

  • Spottt
    Spottt

SecureBlackbox VCL Professional package Licensed

6th July 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
3.7 (2 people)

Posted in VCL | No Comments »

CodeGear 2007 May/June 08 Help Update Free Download

4th July 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
3.7 (1 person)

Posted in Uncategorized | No Comments »

How to Embeded files inside Exe(2)

2nd July 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in Tips | No Comments »

How to Embeded files inside Exe(1)

2nd July 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in Tips | No Comments »

How to sent file to recycle bin in delphi

30th June 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in Snippet, Tips | No Comments »

How To Create A Roll Up Form (with animation)

28th June 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in Snippet, Tips | No Comments »

How To Track User’s Idle Time

26th June 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in Snippet, Tips | 1 Comment »

Encryption, cypher and hashes(2)

24th June 2008 by User ImageadminUser Image (Who am I?)

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 »

Rate this:
2.7

Posted in VCL | No Comments »

Encryption, cypher and hashes(1)

24th June 2008 by User ImageadminUser Image (Who am I?)

Hello, www.alldelphi.com readers, today i want to talk about Encryption, Cipher and Hashes after googling for some times i found some article that interesting enough that i want to share to you all alldelphi.com readers so here it go.

In this article we are going to cover how to install DCPcrypt Cryptographic Component Library (open source), how to call methods for encrypting and decrypting strings, and finally we will take a look at the advanced topic of encrypting files. Our examples relate to applications written in Delphi5 or similar. For our examples we assume you already have a basic understanding of Delphi but only a limited understanding of encryption components and techniques.
Read the rest of this entry »

Rate this:
2.7

Posted in VCL | No Comments »

How To Completely Delete BDE Engine

21st June 2008 by User ImageadminUser Image (Who am I?)

Hi AllDelphi.com Readers, today i want to upgrade my delphi 7 installation to codegear and i want to make it as clean install as possible so i uninstall all delphi 7 related including all the BDE Engine. then when i open my control panel i found one icon that really - really piss me off, there it stand the “BDE Administrator” icon proudly as like it want to make fun of me and say ..”hey you could not removed me…i will stay here as long as i want hahahaha “, did you guys ever have the feeling like that or stump to something like that ? what make it worse is that when i tried to search it on google no article can be found to show me how to delete that bde administrator icon on my control panel, i also found so many lines people said that bde has been abandon by Borland . Read the rest of this entry »

Rate this:
2.7 (4 people)

Posted in Tips | No Comments »