Vous ne trouvez pas de réponse à votre problème ? Alors posez la question dans le forum. Souvenez-vous qu'il n'y a jamais de question bête, mais rester dans l'ignorance parce que l'on n'ose pas poser une question, ça c'est une erreur !

SUPRALABEL (LABEL AVEC SON OMBRE OCX)


Information sur la source

Catégorie :Graphique Niveau : Initié Date de création : 06/01/2003 Date de mise à jour : 06/01/2003 18:41:05 Vu / téléchargé: 2 366 / 313

Note :
9 / 10 - par 3 personnes
9,00 / 10

  • 1

  • 2

  • 3

  • 4

  • 5

  • 6

  • 7

  • 8

  • 9

  • 10

Commentaire sur cette source (3)
Ajouter un commentaire et/ou une note

Description

J'ai vu il y a quelque jour une personne ayant fait cela, et j'ai trouver son idée sympatique mais son prog n'était pas vraiment exploitable donc j'ai bosser ca ce midi. Je n'utilise pas de label, juste l'UserContrôl.


Caption est le texte
AlignementH est l'Alignement Horizontal du texte
AlignementV est l'Alignement Vertical du texte
Font est la police(Nom,Style,taille,effet)
FontColor est la couleur de la police
OmbreColor est la couleur de l'Ombre
BackColor est la couleur d'arrière plan
OmbreH est la distance horizontale entre le text et son ombre
OmbreV est la distance verticale entre le text et son ombre
Ombre permet d'afficher ou pas l'ombre
ClickMove permet de faire un effet lors du clique

Code a coller dans un contrôl activx
Ou il y a le zip bien sure
 

Source

  • 'Déclaration d'un type d'énumération
  • Public Enum Horizontal
  • Gauche = 1
  • Droite = 2
  • Centre = 3
  • End Enum
  • Public Enum Vertical
  • Haut = 1
  • Bas = 2
  • Centre = 3
  • End Enum
  • 'Variables
  • Dim Ctrl_Caption As String 'Texte a écrire
  • Dim Ctrl_AlignementH As Horizontal 'Alignement Horizontal
  • Dim Ctrl_AlignementV As Vertical 'Alignement Vertical
  • Dim Ctrl_Font_Color As OLE_COLOR 'Couleur De La Police
  • Dim Ctrl_Ombre_Color As OLE_COLOR 'Couleur De l'Ombre
  • Dim Ctrl_Back_Color As OLE_COLOR 'Couleur De Fond
  • Dim Ctrl_OmbreH As Integer 'Distance entre le texte et son ombre
  • Dim Ctrl_OmbreV As Integer 'Distance entre le texte et son ombre
  • Dim Ctrl_Ombre As Boolean 'Afficher ombre
  • Dim Ctrl_ClickMove As Boolean 'Effet lors du clique
  • Dim ClickMoveClk As Boolean 'Clique bas de la sourie
  • 'Constantes
  • Const Def_Ctrl_AlignementH = 1
  • Const Def_Ctrl_AlignementV = 1
  • Const Def_Ctrl_Font_Color = &H80000012
  • Const Def_Ctrl_Ombre_Color = &HC0C0C0
  • Const Def_Ctrl_Back_Color = &H8000000F
  • Const Def_Ctrl_OmbreH = 30
  • Const Def_Ctrl_OmbreV = 30
  • Const Def_Ctrl_Ombre = True
  • Const Def_Ctrl_ClickMove = True
  • 'Evénements
  • Event Click()
  • Event DblClick()
  • Event MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • Event MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • Event MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • Private Sub UserControl_Click()
  • RaiseEvent Click
  • End Sub
  • Private Sub UserControl_DblClick()
  • RaiseEvent DblClick
  • End Sub
  • Private Sub UserControl_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • RaiseEvent MouseDown(Button, Shift, X, Y)
  • If Ctrl_ClickMove Then
  • ClickMoveClk = True
  • Texte
  • End If
  • End Sub
  • Private Sub UserControl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • RaiseEvent MouseMove(Button, Shift, X, Y)
  • End Sub
  • Private Sub UserControl_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  • RaiseEvent MouseUp(Button, Shift, X, Y)
  • If Ctrl_ClickMove Then
  • ClickMoveClk = False
  • Texte
  • End If
  • End Sub
  • Private Sub UserControl_InitProperties()
  • FontBold = True
  • Ctrl_Caption = Extender.Name
  • Ctrl_AlignementH = Def_Ctrl_AlignementH
  • Ctrl_AlignementV = Def_Ctrl_AlignementV
  • Ctrl_Font_Color = Def_Ctrl_Font_Color
  • Ctrl_Ombre_Color = Def_Ctrl_Ombre_Color
  • Ctrl_Back_Color = Def_Ctrl_Back_Color
  • Ctrl_OmbreH = Def_Ctrl_OmbreH
  • Ctrl_OmbreV = Def_Ctrl_OmbreV
  • Ctrl_Ombre = Def_Ctrl_Ombre
  • Ctrl_ClickMove = Def_Ctrl_ClickMove
  • End Sub
  • Private Sub UserControl_Resize()
  • Texte
  • End Sub
  • Private Sub UserControl_Show()
  • Texte
  • End Sub
  • Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
  • Set UserControl.Font = PropBag.ReadProperty("Font", Ambient.Font)
  • Ctrl_Caption = PropBag.ReadProperty("Caption", Extender.Name)
  • Ctrl_AlignementH = PropBag.ReadProperty("AlignementH", Def_Ctrl_AlignementH)
  • Ctrl_AlignementV = PropBag.ReadProperty("Alignementv", Def_Ctrl_AlignementV)
  • Ctrl_Font_Color = PropBag.ReadProperty("FontColor", Def_Ctrl_Font_Color)
  • Ctrl_Ombre_Color = PropBag.ReadProperty("OmbreColor", Def_Ctrl_Ombre_Color)
  • Ctrl_Back_Color = PropBag.ReadProperty("BackColor", Def_Ctrl_Back_Color)
  • Ctrl_OmbreH = PropBag.ReadProperty("OmbreH", Def_Ctrl_OmbreH)
  • Ctrl_OmbreV = PropBag.ReadProperty("OmbreV", Def_Ctrl_OmbreV)
  • Ctrl_Ombre = PropBag.ReadProperty("Ombre", Def_Ctrl_Ombre)
  • Ctrl_ClickMove = PropBag.ReadProperty("ClickMove", Def_Ctrl_ClickMove)
  • End Sub
  • Private Sub UserControl_WriteProperties(PropBag As PropertyBag)
  • Call PropBag.WriteProperty("Font", UserControl.Font, Ambient.Font)
  • Call PropBag.WriteProperty("Caption", Ctrl_Caption, Extender.Name)
  • Call PropBag.WriteProperty("AlignementH", Ctrl_AlignementH, Def_Ctrl_AlignementH)
  • Call PropBag.WriteProperty("AlignementV", Ctrl_AlignementV, Def_Ctrl_AlignementV)
  • Call PropBag.WriteProperty("FontColor", Ctrl_Font_Color, Def_Ctrl_Font_Color)
  • Call PropBag.WriteProperty("OmbreColor", Ctrl_Ombre_Color, Def_Ctrl_Ombre_Color)
  • Call PropBag.WriteProperty("BackColor", Ctrl_Back_Color, Def_Ctrl_Back_Color)
  • Call PropBag.WriteProperty("OmbreH", Ctrl_OmbreH, Def_Ctrl_OmbreH)
  • Call PropBag.WriteProperty("OmbreV", Ctrl_OmbreV, Def_Ctrl_OmbreV)
  • Call PropBag.WriteProperty("Ombre", Ctrl_Ombre, Def_Ctrl_Ombre)
  • Call PropBag.WriteProperty("ClickMove", Ctrl_ClickMove, Def_Ctrl_ClickMove)
  • End Sub
  • Private Function Texte()
  • Dim VCurrentX As Horizontal, VCurrentY As Vertical
  • Cls
  • UserControl.BackColor = Ctrl_Back_Color
  • Select Case Ctrl_AlignementH
  • Case 1
  • VCurrentX = 0
  • Case 2
  • VCurrentX = ScaleWidth - TextWidth(Ctrl_Caption)
  • Case 3
  • VCurrentX = (ScaleWidth - TextWidth(Ctrl_Caption)) / 2
  • End Select
  • Select Case Ctrl_AlignementV
  • Case 1
  • VCurrentY = 0
  • Case 2
  • VCurrentY = ScaleHeight - TextHeight(Ctrl_Caption)
  • Case 3
  • VCurrentY = (ScaleHeight - TextHeight(Ctrl_Caption)) / 2
  • End Select
  • If ClickMoveClk Then
  • ForeColor = Ctrl_Font_Color
  • CurrentX = VCurrentX + Ctrl_OmbreH
  • CurrentY = VCurrentY + Ctrl_OmbreV
  • Print Ctrl_Caption
  • Else
  • If Ctrl_Ombre Then
  • ForeColor = Ctrl_Ombre_Color
  • CurrentX = VCurrentX + Ctrl_OmbreH
  • CurrentY = VCurrentY + Ctrl_OmbreV
  • Print Ctrl_Caption
  • End If
  • ForeColor = Ctrl_Font_Color
  • CurrentX = VCurrentX
  • CurrentY = VCurrentY
  • Print Ctrl_Caption
  • End If
  • End Function
  • Public Property Get Caption() As String
  • Caption = Ctrl_Caption
  • End Property
  • Public Property Let Caption(ByVal New_Caption As String)
  • Ctrl_Caption = New_Caption
  • Texte
  • PropertyChanged "Caption"
  • End Property
  • Public Property Get Font() As Font
  • Set Font = UserControl.Font
  • End Property
  • Public Property Set Font(ByVal New_Font As Font)
  • Set UserControl.Font = New_Font
  • UserControl.FontName = Font.Name
  • UserControl.FontSize = Font.Size
  • UserControl.FontBold = Font.Bold
  • UserControl.FontItalic = Font.Italic
  • UserControl.FontStrikethru = Font.Strikethrough
  • UserControl.FontUnderline = Font.Underline
  • Texte
  • PropertyChanged "Font"
  • End Property
  • Public Property Get AlignementH() As Horizontal
  • AlignementH = Ctrl_AlignementH
  • End Property
  • Public Property Let AlignementH(ByVal New_AlignementH As Horizontal)
  • Ctrl_AlignementH = New_AlignementH
  • Texte
  • PropertyChanged "AlignementH"
  • End Property
  • Public Property Get AlignementV() As Vertical
  • AlignementV = Ctrl_AlignementV
  • End Property
  • Public Property Let AlignementV(ByVal New_AlignementV As Vertical)
  • Ctrl_AlignementV = New_AlignementV
  • Texte
  • PropertyChanged "AlignementV"
  • End Property
  • Public Property Get FontColor() As OLE_COLOR
  • FontColor = Ctrl_Font_Color
  • End Property
  • Public Property Let FontColor(ByVal New_Font_Color As OLE_COLOR)
  • Ctrl_Font_Color = New_Font_Color
  • Texte
  • PropertyChanged "FontColor"
  • End Property
  • Public Property Get OmbreColor() As OLE_COLOR
  • OmbreColor = Ctrl_Ombre_Color
  • End Property
  • Public Property Let OmbreColor(ByVal New_Ombre_Color As OLE_COLOR)
  • Ctrl_Ombre_Color = New_Ombre_Color
  • Texte
  • PropertyChanged "OmbreColor"
  • End Property
  • Public Property Get BackColor() As OLE_COLOR
  • BackColor = Ctrl_Back_Color
  • End Property
  • Public Property Let BackColor(ByVal New_Back_Color As OLE_COLOR)
  • Ctrl_Back_Color = New_Back_Color
  • Texte
  • PropertyChanged "BackColor"
  • End Property
  • Public Property Get OmbreH() As Integer
  • OmbreH = Ctrl_OmbreH
  • End Property
  • Public Property Let OmbreH(ByVal New_OmbreH As Integer)
  • Ctrl_OmbreH = New_OmbreH
  • Texte
  • PropertyChanged "OmbreH"
  • End Property
  • Public Property Get OmbreV() As Integer
  • OmbreV = Ctrl_OmbreV
  • End Property
  • Public Property Let OmbreV(ByVal New_OmbreV As Integer)
  • Ctrl_OmbreV = New_OmbreV
  • Texte
  • PropertyChanged "OmbreV"
  • End Property
  • Public Property Get Ombre() As Boolean
  • Ombre = Ctrl_Ombre
  • End Property
  • Public Property Let Ombre(ByVal New_Ombre As Boolean)
  • Ctrl_Ombre = New_Ombre
  • Texte
  • PropertyChanged "Ombre"
  • End Property
  • Public Property Get ClickMove() As Boolean
  • ClickMove = Ctrl_ClickMove
  • End Property
  • Public Property Let ClickMove(ByVal New_ClickMove As Boolean)
  • Ctrl_ClickMove = New_ClickMove
  • Texte
  • PropertyChanged "ClickMove"
  • End Property
'Déclaration d'un type d'énumération
Public Enum Horizontal
    Gauche = 1
    Droite = 2
    Centre = 3
End Enum
Public Enum Vertical
    Haut = 1
    Bas = 2
    Centre = 3
End Enum

'Variables
Dim Ctrl_Caption As String          'Texte a écrire
Dim Ctrl_AlignementH As Horizontal  'Alignement Horizontal
Dim Ctrl_AlignementV As Vertical    'Alignement Vertical
Dim Ctrl_Font_Color As OLE_COLOR    'Couleur De La Police
Dim Ctrl_Ombre_Color As OLE_COLOR   'Couleur De l'Ombre
Dim Ctrl_Back_Color As OLE_COLOR    'Couleur De Fond
Dim Ctrl_OmbreH As Integer          'Distance entre le texte et son ombre
Dim Ctrl_OmbreV As Integer          'Distance entre le texte et son ombre
Dim Ctrl_Ombre As Boolean           'Afficher ombre
Dim Ctrl_ClickMove As Boolean       'Effet lors du clique
Dim ClickMoveClk As Boolean         'Clique bas de la sourie

'Constantes
Const Def_Ctrl_AlignementH = 1
Const Def_Ctrl_AlignementV = 1
Const Def_Ctrl_Font_Color = &H80000012
Const Def_Ctrl_Ombre_Color = &HC0C0C0
Const Def_Ctrl_Back_Color = &H8000000F
Const Def_Ctrl_OmbreH = 30
Const Def_Ctrl_OmbreV = 30
Const Def_Ctrl_Ombre = True
Const Def_Ctrl_ClickMove = True

'Evénements
Event Click()
Event DblClick()
Event MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Event MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Event MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)

Private Sub UserControl_Click()
RaiseEvent Click
End Sub

Private Sub UserControl_DblClick()
RaiseEvent DblClick
End Sub

Private Sub UserControl_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
RaiseEvent MouseDown(Button, Shift, X, Y)
If Ctrl_ClickMove Then
    ClickMoveClk = True
    Texte
End If
End Sub

Private Sub UserControl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
RaiseEvent MouseMove(Button, Shift, X, Y)
End Sub

Private Sub UserControl_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
RaiseEvent MouseUp(Button, Shift, X, Y)
If Ctrl_ClickMove Then
    ClickMoveClk = False
    Texte
End If
End Sub

Private Sub UserControl_InitProperties()
FontBold = True
Ctrl_Caption = Extender.Name
Ctrl_AlignementH = Def_Ctrl_AlignementH
Ctrl_AlignementV = Def_Ctrl_AlignementV
Ctrl_Font_Color = Def_Ctrl_Font_Color
Ctrl_Ombre_Color = Def_Ctrl_Ombre_Color
Ctrl_Back_Color = Def_Ctrl_Back_Color
Ctrl_OmbreH = Def_Ctrl_OmbreH
Ctrl_OmbreV = Def_Ctrl_OmbreV
Ctrl_Ombre = Def_Ctrl_Ombre
Ctrl_ClickMove = Def_Ctrl_ClickMove
End Sub

Private Sub UserControl_Resize()
Texte
End Sub

Private Sub UserControl_Show()
Texte
End Sub

Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
Set UserControl.Font = PropBag.ReadProperty("Font", Ambient.Font)
Ctrl_Caption = PropBag.ReadProperty("Caption", Extender.Name)
Ctrl_AlignementH = PropBag.ReadProperty("AlignementH", Def_Ctrl_AlignementH)
Ctrl_AlignementV = PropBag.ReadProperty("Alignementv", Def_Ctrl_AlignementV)
Ctrl_Font_Color = PropBag.ReadProperty("FontColor", Def_Ctrl_Font_Color)
Ctrl_Ombre_Color = PropBag.ReadProperty("OmbreColor", Def_Ctrl_Ombre_Color)
Ctrl_Back_Color = PropBag.ReadProperty("BackColor", Def_Ctrl_Back_Color)
Ctrl_OmbreH = PropBag.ReadProperty("OmbreH", Def_Ctrl_OmbreH)
Ctrl_OmbreV = PropBag.ReadProperty("OmbreV", Def_Ctrl_OmbreV)
Ctrl_Ombre = PropBag.ReadProperty("Ombre", Def_Ctrl_Ombre)
Ctrl_ClickMove = PropBag.ReadProperty("ClickMove", Def_Ctrl_ClickMove)
End Sub

Private Sub UserControl_WriteProperties(PropBag As PropertyBag)
Call PropBag.WriteProperty("Font", UserControl.Font, Ambient.Font)
Call PropBag.WriteProperty("Caption", Ctrl_Caption, Extender.Name)
Call PropBag.WriteProperty("AlignementH", Ctrl_AlignementH, Def_Ctrl_AlignementH)
Call PropBag.WriteProperty("AlignementV", Ctrl_AlignementV, Def_Ctrl_AlignementV)
Call PropBag.WriteProperty("FontColor", Ctrl_Font_Color, Def_Ctrl_Font_Color)
Call PropBag.WriteProperty("OmbreColor", Ctrl_Ombre_Color, Def_Ctrl_Ombre_Color)
Call PropBag.WriteProperty("BackColor", Ctrl_Back_Color, Def_Ctrl_Back_Color)
Call PropBag.WriteProperty("OmbreH", Ctrl_OmbreH, Def_Ctrl_OmbreH)
Call PropBag.WriteProperty("OmbreV", Ctrl_OmbreV, Def_Ctrl_OmbreV)
Call PropBag.WriteProperty("Ombre", Ctrl_Ombre, Def_Ctrl_Ombre)
Call PropBag.WriteProperty("ClickMove", Ctrl_ClickMove, Def_Ctrl_ClickMove)
End Sub

Private Function Texte()
Dim VCurrentX As Horizontal, VCurrentY As Vertical
Cls
UserControl.BackColor = Ctrl_Back_Color

Select Case Ctrl_AlignementH
    Case 1
        VCurrentX = 0
    Case 2
        VCurrentX = ScaleWidth - TextWidth(Ctrl_Caption)
    Case 3
        VCurrentX = (ScaleWidth - TextWidth(Ctrl_Caption)) / 2
End Select
Select Case Ctrl_AlignementV
    Case 1
        VCurrentY = 0
    Case 2
        VCurrentY = ScaleHeight - TextHeight(Ctrl_Caption)
    Case 3
        VCurrentY = (ScaleHeight - TextHeight(Ctrl_Caption)) / 2
End Select
If ClickMoveClk Then
    ForeColor = Ctrl_Font_Color
    CurrentX = VCurrentX + Ctrl_OmbreH
    CurrentY = VCurrentY + Ctrl_OmbreV
    Print Ctrl_Caption
Else
    If Ctrl_Ombre Then
        ForeColor = Ctrl_Ombre_Color
        CurrentX = VCurrentX + Ctrl_OmbreH
        CurrentY = VCurrentY + Ctrl_OmbreV
        Print Ctrl_Caption
    End If
    ForeColor = Ctrl_Font_Color
    CurrentX = VCurrentX
    CurrentY = VCurrentY
    Print Ctrl_Caption
End If
End Function

Public Property Get Caption() As String
Caption = Ctrl_Caption
End Property

Public Property Let Caption(ByVal New_Caption As String)
Ctrl_Caption = New_Caption
Texte
PropertyChanged "Caption"
End Property

Public Property Get Font() As Font
Set Font = UserControl.Font
End Property

Public Property Set Font(ByVal New_Font As Font)
Set UserControl.Font = New_Font
UserControl.FontName = Font.Name
UserControl.FontSize = Font.Size
UserControl.FontBold = Font.Bold
UserControl.FontItalic = Font.Italic
UserControl.FontStrikethru = Font.Strikethrough
UserControl.FontUnderline = Font.Underline
Texte
PropertyChanged "Font"
End Property

Public Property Get AlignementH() As Horizontal
AlignementH = Ctrl_AlignementH
End Property

Public Property Let AlignementH(ByVal New_AlignementH As Horizontal)
Ctrl_AlignementH = New_AlignementH
Texte
PropertyChanged "AlignementH"
End Property

Public Property Get AlignementV() As Vertical
AlignementV = Ctrl_AlignementV
End Property

Public Property Let AlignementV(ByVal New_AlignementV As Vertical)
Ctrl_AlignementV = New_AlignementV
Texte
PropertyChanged "AlignementV"
End Property

Public Property Get FontColor() As OLE_COLOR
FontColor = Ctrl_Font_Color
End Property

Public Property Let FontColor(ByVal New_Font_Color As OLE_COLOR)
Ctrl_Font_Color = New_Font_Color
Texte
PropertyChanged "FontColor"
End Property

Public Property Get OmbreColor() As OLE_COLOR
OmbreColor = Ctrl_Ombre_Color
End Property

Public Property Let OmbreColor(ByVal New_Ombre_Color As OLE_COLOR)
Ctrl_Ombre_Color = New_Ombre_Color
Texte
PropertyChanged "OmbreColor"
End Property

Public Property Get BackColor() As OLE_COLOR
BackColor = Ctrl_Back_Color
End Property

Public Property Let BackColor(ByVal New_Back_Color As OLE_COLOR)
Ctrl_Back_Color = New_Back_Color
Texte
PropertyChanged "BackColor"
End Property

Public Property Get OmbreH() As Integer
OmbreH = Ctrl_OmbreH
End Property

Public Property Let OmbreH(ByVal New_OmbreH As Integer)
Ctrl_OmbreH = New_OmbreH
Texte
PropertyChanged "OmbreH"
End Property

Public Property Get OmbreV() As Integer
OmbreV = Ctrl_OmbreV
End Property

Public Property Let OmbreV(ByVal New_OmbreV As Integer)
Ctrl_OmbreV = New_OmbreV
Texte
PropertyChanged "OmbreV"
End Property

Public Property Get Ombre() As Boolean
Ombre = Ctrl_Ombre
End Property

Public Property Let Ombre(ByVal New_Ombre As Boolean)
Ctrl_Ombre = New_Ombre
Texte
PropertyChanged "Ombre"
End Property

Public Property Get ClickMove() As Boolean
ClickMove = Ctrl_ClickMove
End Property

Public Property Let ClickMove(ByVal New_ClickMove As Boolean)
Ctrl_ClickMove = New_ClickMove
Texte
PropertyChanged "ClickMove"
End Property

Conclusion

Voila mon code n'est pas trés commenter mais il est relativement simple a comprendre si on a déjà fais des contrôles utilisateur.
Si vous trouver des bugs, questions, remarques...
 

Fichier Zip

Pour les "Membres Club", vous pouvez télécharger directement un fichier contenu dans le zip sans télécharger le zip en entier !

Télécharger le zip

Commentaires et avis

signaler à un administrateur
Commentaire de DowIChaT le 27/08/2005 07:42:46

Super cool ton nouveau Label, je cherchait justement la possibilité de centrer horizontalement et verticalement le texte ce qui est maintenant possible et en plus l'effets d'ombre que tu as ajouter est super. Merci tu as fais une super bonne job!!!

signaler à un administrateur
Commentaire de DowIChaT le 27/08/2005 07:45:58

J'ai également oublié de dire que ton code est super bien implémenté et clair et comme tu l'as dit aussi il est très simple à comprendre. Merci encore !!!

signaler à un administrateur
Commentaire de SupraDolph le 27/08/2005 15:08:51

Merci DowIChaT :)
Mon code est clair mais avec un peu plus de commenaires je crois que ça aurait pu être mieu.

Ajouter un commentaire



Nos sponsors

Sondage...

CalendriCode

Juillet 2009
LMMJVSD
  12345
6789101112
13141516171819
20212223242526
2728293031  

Consulter la suite du CalendriCode

Comparez les prix Nouvelle version

Photothèque Nouveau !



Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés
Temps d'éxécution de la page : 0,250 sec

Google Coop CodeS-SourceS Google Coop CodeS-SourceS


Certaines images présentes sur le site (notament certains avatars) sont issues des collections IconShock, donc si vous souhaitez utiliser ces icons vous devez les acheter, ne les copiez pas et ne utilisez pas dans vos sites et applications sans les avoir commandé.