[VB6] Comment initialiser une variable static en VB?

Comment initialiser une variable static en VB? [VB6] - VB/VBA/VBS - Programmation

Marsh Posté le 29-03-2004 à 16:08:40    

Tout est dans le titre.
 
Ex en C:  

Code :
  1. static int i=10;


Message édité par Lancelot** le 29-03-2004 à 16:09:16
Reply

Marsh Posté le 29-03-2004 à 16:08:40   

Reply

Marsh Posté le 30-03-2004 à 10:54:10    

Code :
  1. Static i As Integer


 
[:prodigy]


Message édité par ixemul le 30-03-2004 à 10:54:24
Reply

Marsh Posté le 30-03-2004 à 10:54:20    

solution un peu lourde c'est vrai :
 

Code :
  1. static initialisation as boolean
  2. static i as integer
  3. 'si initialisation pas encore effectuée
  4. if initialisation = False then
  5.        'initialisation
  6.        i=10
  7.        'initialisation faite
  8.        initialisation = True
  9. end if


Message édité par cerdoc le 30-03-2004 à 11:03:45
Reply

Marsh Posté le 30-03-2004 à 17:07:13    

ixemul a écrit :

Code :
  1. Static i As Integer


 
[:prodigy]


 
ça je savais  ;)

Reply

Marsh Posté le 30-03-2004 à 17:08:23    

cerdoc a écrit :

solution un peu lourde c'est vrai :
 

Code :
  1. static initialisation as boolean
  2. static i as integer
  3. 'si initialisation pas encore effectuée
  4. if initialisation = False then
  5.        'initialisation
  6.        i=10
  7.        'initialisation faite
  8.        initialisation = True
  9. end if




 
Merci. Très lourd en effet  :(

Reply

Sujets relatifs:

Leave a Replay

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