Salir de un rato ... Wend loop

Estoy usando un bucle 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 una condición como `While count <= 10 ... Wend

Respuestas a la pregunta(1)

Su respuesta a la pregunta