Comparer deux structures

Comparer deux structures - VB/VBA/VBS - Programmation

Marsh Posté le 09-12-2004 à 09:36:03    

Bonjour, j'ai une question un peu bête.
 
J'aimerai pouvoir comparer deux structures en vb mais je ne sais pas comment faire.
 
exemple de code:
 
Public Type rect
    Left As Long
     Top As Long
   Right As Long
  Bottom As Long
End Type
 
dim rect1 as rect
dim rect2 as rest
 
with rect1
     .left   = 4
     .top    = 4
     .right  = 10
     .bottom = 20
wend
 
with rect2
     .left   = 4
     .top    = 4
     .right  = 10
     .bottom = 20
wend
 
 
j'aimerai maintenant pouvoir effectuer l'opération de comparaison suivante:
 
if rect1 = rect2 then
   ...
end if
 
mzid ca n'a pas l'air d'être la bonne syntaxe.
Si vous pouviez m'aider.
 
Merci

Reply

Marsh Posté le 09-12-2004 à 09:36:03   

Reply

Marsh Posté le 09-12-2004 à 15:15:33    

lcprog a écrit :

Bonjour, j'ai une question un peu bête.
 
J'aimerai pouvoir comparer deux structures en vb mais je ne sais pas comment faire.
 
exemple de code:
 
Public Type rect
    Left As Long
     Top As Long
   Right As Long
  Bottom As Long
End Type
 
dim rect1 as rect
dim rect2 as rest => dim rect2 as rect
 
with rect1
     .left   = 4
     .top    = 4
     .right  = 10
     .bottom = 20
wend
 
with rect2
     .left   = 4
     .top    = 4
     .right  = 10
     .bottom = 20
wend
 
 
j'aimerai maintenant pouvoir effectuer l'opération de comparaison suivante:
 
if rect1 = rect2 then
   ...
end if
 
mzid ca n'a pas l'air d'être la bonne syntaxe.
Si vous pouviez m'aider.
 
Merci

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed