Ogni blocco if ha bisogno del suo End If. Quindi puoi usare i due tipi di scrittura:
oppurecodice:if choice = vbyes then ... end if if choice = vbno then ... end if
senz'altro in questo caso è più comodo usare elseif, mettendo un solo end if alla fine.codice:if choice = vbyes then ... elseif choice = vbno then ... endif
![]()