wyndham westgate tiempos tiempo salir que pasa para pagar mexico formato florida dejo compartidos compartido como carta cancelar cancelando abogados vba excel-vba while-loop

vba - westgate - formato carta para cancelar tiempo compartido



Salir de un tiempo... Wend loop (1)

Estoy usando un ciclo While ... Wend de VBA.

Dim count as Integer While True count=count+1 If count = 10 Then ''''What should be the statement to break the While...Wend loop? ''''Break or Exit While not working EndIf Wend

No quiero usar condiciones como `While count <= 10 ... Wend


Un While/Wend solo se puede salir prematuramente con un GOTO o saliendo de un bloque externo ( Exit sub / function / another exitable loop )

Cambiar a un juego de Do Do;

Do While True count = count + 1 If count = 10 Then Exit Do End If Loop

(O para el bucle con una variable de control de incremento)

for count = 1 to 10 msgbox count next