[VB] Trouver un tuple dans un RS

Trouver un tuple dans un RS [VB] - VB/VBA/VBS - Programmation

Marsh Posté le 14-05-2002 à 09:21:48    

VOilà j'ai crée un recordset avec RDO et je cherche une fonction qui permette de trouver un tuple se trouvant dans le recordSet j'ai vu que ça existait sous ADO (fontion Find).
Merci


---------------
"I choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it" B. Gates
Reply

Marsh Posté le 14-05-2002 à 09:21:48   

Reply

Marsh Posté le 14-05-2002 à 09:29:38    

fonction toute con:
 

Code :
  1. while not rs.eof and not trouve
  2.   if rs("nomchamp" )=valeur then
  3.     trouve=true
  4.   else
  5.     rs.movenext
  6.   end if
  7. end while


---------------
"I wonder if the internal negative pressure in self pumping toothpaste tubes is adjusted for different market altitudes." John Carmack
Reply

Marsh Posté le 14-05-2002 à 10:44:15    

mareek a écrit a écrit :

fonction toute con:
 

Code :
  1. while not rs.eof and not trouve
  2.   if rs("nomchamp" )=valeur then
  3.     trouve=true
  4.   else
  5.     rs.movenext
  6.   end if
  7. end while

 




Merci c vrai que c pas con :)


---------------
"I choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it" B. Gates
Reply

Sujets relatifs:

Leave a Replay

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