Se encontraron 2 coincidencias
- 10 Dic 2010, 00:45
- Foro: Preguntas Sencillas. (Empieza aquí <Aprendiendo las bases y Comandos)
- Tema: ayuda para mover una imagen png con gdi+
- Respuestas: 4
- Vistas: 2195
- 21 Oct 2009, 17:57
- Foro: Soporte (Ayuda >Hacker)
- Tema: Problemas con la Funcion While 1
- Respuestas: 3
- Vistas: 940
Re: Problemas con la Funcion While 1
$xx = 0 While $xx <= 20 Sleep(200) $xx = $xx + 1 ConsoleWrite($xx & @LF) WEnd ConsoleWrite("------OK------"& @LF) For $xx = 20 to 1 Step -1 Sleep(200) ConsoleWrite($xx & @LF) Next ConsoleWrite("------OK------"& @LF) $xx = 0 Do ConsoleWrite...