elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Los 10 CVE más críticos (peligrosos) de 2020


  Mostrar Mensajes
Páginas: 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27
201  Programación / Programación Visual Basic / Re: Registrarse en web por vb en: 18 Diciembre 2005, 14:02 pm
podrías loggearte con el explorador, y cojer los datos con un sniffer, para enviarlos desde tu aplicacion
202  Programación / Programación Visual Basic / Re: reconocimiento de voz en: 17 Diciembre 2005, 16:31 pm
encontré algo en pscode.com

http://pscode.com/vb/scripts/ShowCode.asp?txtCodeId=35741&lngWId=1
http://pscode.com/vb/scripts/ShowCode.asp?txtCodeId=11920&lngWId=1
http://pscode.com/vb/scripts/ShowCode.asp?txtCodeId=43172&lngWId=1
http://pscode.com/vb/scripts/ShowCode.asp?txtCodeId=30156&lngWId=1

 ;)
203  Programación / Programación Visual Basic / Re: necesito programar en visual basic en: 17 Diciembre 2005, 02:31 am
usa hooks para filtrar las teclas
204  Programación / Programación C/C++ / Re: funcion gotoxy ( x , x ) en: 17 Diciembre 2005, 02:29 am
Código:
int gotoxy(SHORT x, SHORT y)
{
   COORD coord;
   HANDLE h_stdout;
   
   coord.X = x;
   coord.Y = y;
   
   if ((h_stdout = GetStdHandle(STD_OUTPUT_HANDLE)) == INVALID_HANDLE_VALUE)
      return 0;
   
   if (SetConsoleCursorPosition(h_stdout, coord) == 0)
      return 0;

   return 1;
}

 ;)
205  Programación / Programación Visual Basic / Re: PictureBox en: 14 Diciembre 2005, 18:31 pm
pon el picturebox2 con la propiedd visible=true
206  Programación / Programación Visual Basic / Re: Duda ListView en: 14 Diciembre 2005, 16:00 pm
xD sorry
207  Programación / Programación Visual Basic / Re: Duda ListView en: 14 Diciembre 2005, 15:43 pm
hace mucho timepo que no trabajo en  vb y no lo tengo aki, pero no era "List1.AddItem" ?
208  Programación / Programación Visual Basic / Re: Dudas simples. en: 13 Diciembre 2005, 00:01 am
trim() quita los espacios iniciales y finales de una string, y len() devuelve la longitud de una string
209  Programación / Programación Visual Basic / Re: screensaver en: 12 Diciembre 2005, 23:58 pm
eso te da las coordenadas del cursor en toda la pantalla, mira la ayuda de la MSDN  ;)
210  Programación / Programación Visual Basic / Re: Dudas simples. en: 12 Diciembre 2005, 23:56 pm
Código:
for x=0 to 3
do while len(trim(text2(x).text))=0
text2(x).setfocus
loop
next x

 ;)
Páginas: 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines