                        --- README.TXT ---


DESCRIPTION FRANAISE PLUS BAS.


DELPHI 3 Componnent.

Par: Gabriel Cabot
     gcabot@globetrotter.qc.ca

Copyright notice:

This component is unrestricted freeware. It may be distributed, used and/or
modified without restriction. Please note that although this component has
been tested and been found to work correctly, you use it entirely at your
own risk and I will not be held responsible for any thing that may happend.}

This componnent is a small wrapper for TRegistry and has 3 simples
methods which allow you to create, read and delete a key in
the windows registry. The value of the keys created with this
componnent are always strings. "This should be enought for almost
all applications."
The key is always a sub key of HKEY_CURRENT_USER.

TgReg is a descendant of TComponnent.
It's a componnent for Delphi 3.


 PROPERTIES:
 NAME            Type     Description
 ----------------------------------------------------------------
 Key             String   Name of the key.
 Value           String   Value to write or read.
 DefaultValue    String   Returned value if the key doesn't exist.

 METHODS:
 Name             Declaration
 -------------------------------------------------
 SetKey           SetKey(Key,Value:String):Boolean;
 Description:
 The SetKey method is used to open a key and write the
 value specified in the Value property.
 If the key doesn't exist SetKey create it and write
 the contents of the Value property.
 SetKey returns False if the operation fails and true
 if it's okay.

 GetKey          GetKey(Key:String):String;
 Description:
 The GetKey method returns the value of the key
 specified in the Key property. If the key doesn't
 exist then the method returns the value specified
 if the DefaultValue property.

 DelKey          DelKey(Key):Boolean;
 Description:
 The DelKey method deletes a key from the registry
 and returns True if it's okay and False if the
 operation fails.

 EVENTS:
 No event available.

-----------------------------------------------------------------------

//DESCRIPTION FRANAISE

Composant pour DELPHI 3.

Par: Gabriel Cabot
     gcabot@globetrotter.qc.ca

Note sur les droits lgal:

Ce composant est du domaine freeware. Il peut tre distribu, utilis et/ou
modifi sans restrictions. Veuillez noter que mme si ce composant  t test
and que tout fonctionnait bien, vous l'utilisez  vos propres risques et je
ne serai jamais tenu responsable pour aucune sorte de dommages.

Ce composant encapsule l'unit TRegistry et fournie trois (3)
mthodes simples qui permettent de crer, lire et effacer une
cl de la base de registre. La valeur des cls cres avec ce
composant sont de type Chaine (String). Cela suffit dans la
plus part des applications.

La cl est toujours une sous cl de HKEY_CURRENT_USER.

 TgReg est un descendant de TComposant.
 C'est un composant Delphi 3.


 PROPRITS:
 Nom             Type     Description
 ----------------------------------------------------------------
 Key             String   Nom de la cl.
 Value           String   Valeur a crire ou lue.
 DefaultValue    String   Valeur de retour si la cl n'existe pas.

 MTHODES:
 Nom             Dclaration
 -------------------------------------------------
 SetKey          SetKey(Key,Value:String):Boolean;
 Description:
 La mthode SetKey est utilis pour ouvrir une cl
 et y mettre la valeur spcifier dans value. Si la
 cl n'existe pas SetKey l'ajoute et y insre la
 valeur de Value. SetKey retourne vrai si l'criture
 russi et False dans le cas contraire.

 GetKey          GetKey(Key:String):String;
 Description:
 La mthode GetKey retourne la valeur de la cl
 dfini dans Key. Si la cl n'existe pas retourne
 la valeur spcifi dans la proprit DefaultValue.

 DelKey          DelKey(Key):Boolean;
 Description:
 La mthode DelKey supprime une cl de la base
 de registre et retourne Vrai si l'opration a
 russi et False dans le cas contraire.

 VENEMENTS:

 Aucun venement de disponible.

