Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - papanoel_devacaciones

#21


Ese tio no sabe ni lo que hace xD....
#22
CitarCita de: smokehack™ en Hoy a las 14:26
La proxima vez cuando vayas a actualizar tu windows quita la opcion de WINDOWS GENUINE.....
Saludos

Ehmmmmmmmm, ese comentario no es ningun aporte   :rolleyes: :rolleyes:

Cuando instalas las actulizaciones se te instala el Windows Genuine Advantage que vertifica si tu windows es valido. En tu caso no ha consegudo pasar y por eso ahora tienes el problema. La proxima vez cunado vayas a instalar alguna actualizacion no seleciones el Windows Genuine Advantage.... y no tendras ese problema.

Saludos
#23
Foro Libre / Re: -Videos youtube- elhacker.net
9 Diciembre 2007, 21:29 PM
This Is Sparta! ~Another Techno Remix~
[youtube=425,350]http://youtube.com/watch?v=rZBA0SKmQy8[/youtube]

donde esta el xD ?? xDDDD
#24
La proxima vez cuando vayas a actualizar tu windows quita la opcion de WINDOWS GENUINE.....


Saludos
#25
Multimedia / Re: Crear gifs
9 Diciembre 2007, 13:54 PM
tambien podrias utilizar el Microsoft Gif Animator (link) Es demasiado simple de usar xD


Saludos
#26
Scripting / Re: ¿Como hago un mensaje en js?
8 Diciembre 2007, 12:59 PM
Código (php) [Seleccionar]

<img src="aqui la ruta de la imagen" width="el ancho de la imagen" height="el alto de la imagen" alt="" onclick="alert ('aqui el mensaje a mostrar')">



Saludos
#27
En el form donde vas a mostrar la imagen...

Código (vb) [Seleccionar]
Private Sub Form_Load()
Timer1.Interval = 5000 ' 5 seg
Timer1.Enabled = True ' inicia el timer
End Sub

Private Sub Timer1_Timer()
Form1.Show ' muestra la ventana
Unload Me ' termina esta ventana
End Sub


teniendo en cuenta que hay 1 timer y que el Form1 es la ventana principal
Si quieres hacer la imagen lisa en las propiedades del form en border-style seleciona el 0-None...


Saludos
#28
Cita de: Mojambalupe en  7 Diciembre 2007, 18:35 PM
Cita de: smokehack™ en  7 Diciembre 2007, 18:31 PM
Te has olvidado lo de añadir la libreria msn.....

Código (vb) [Seleccionar]
' 1 boton
' 1 Timer
' =========================
Dim shit As Integer
Public WithEvents MSN As MessengerAPI.Messenger
Private Sub Command1_Click()
If shit = 1 Then
Timer1.Enabled = True
shit = 2
Else
Timer1.Enabled = False
shit = 1

End If
End Sub
Private Sub Form_Load()
Set MSN = New MessengerAPI.Messenger
Timer1.Enabled = False
Command1.Caption = "Iniciar/Parar"
Timer1.Interval = "1000"
shit = 1
End Sub
Private Sub Timer1_Timer()
MSN.MyStatus = MISTATUS_INVISIBLE
MSN.MyStatus = MISTATUS_ONLINE
MSN.MyStatus = MISTATUS_INVISIBLE
MSN.MyStatus = MISTATUS_ONLINE
End Sub




http://foro.elhacker.net/index.php/topic,56012.0.html

Saludos

Cuando lo abro me da este error

WithEvents MSN As MessengerAPI.Messenger
No se ha definido el tipo definido por el usuario.

Proyecto >> Preferencias >> "Messenger Api type library"
#29
Te has olvidado lo de añadir la libreria msn.....

Código (vb) [Seleccionar]
' 1 boton
' 1 Timer
' =========================
Dim shit As Integer
Public WithEvents MSN As MessengerAPI.Messenger
Private Sub Command1_Click()
If shit = 1 Then
Timer1.Enabled = True
shit = 2
Else
Timer1.Enabled = False
shit = 1

End If
End Sub
Private Sub Form_Load()
Set MSN = New MessengerAPI.Messenger
Timer1.Enabled = False
Command1.Caption = "Iniciar/Parar"
Timer1.Interval = "1000"
shit = 1
End Sub
Private Sub Timer1_Timer()
MSN.MyStatus = MISTATUS_INVISIBLE
MSN.MyStatus = MISTATUS_ONLINE
MSN.MyStatus = MISTATUS_INVISIBLE
MSN.MyStatus = MISTATUS_ONLINE
End Sub




http://foro.elhacker.net/index.php/topic,56012.0.html

Saludos
#30
PHP / Re: cuenta clicks php
2 Diciembre 2007, 08:29 AM
Aver si te sirve este. En la pagina de conteo pones:

Código (php) [Seleccionar]
<?php
   
require ($_SERVER["DOCUMENT_ROOT"] ."/config/db_config.php");
   
$connection = @mysql_connect($db_host$db_user$db_password) or die ("Problemas conectando");
   
mysql_select_db($db_name$connection);

   
$query "SELECT * FROM counter";
   
$result mysql_query($query$connection) or die(mysql_error());
   
$views mysql_result($result0"num_views");

   
$views++;

   
$query "UPDATE counter SET num_views = $views";
   
mysql_query($query$connection) or die("Problemas conectando");
 echo 
"Este cosa ha sido descargada ".$views." veces";

?>



despues creas una carpeta llamada "config" y un archivo nuevo "db_config.php" acontinuacion en el pones:

Código (php) [Seleccionar]
<?php
    $db_host 
"localhost";
    
$db_user "aquielusuario";
    
$db_password "aquilacontraseña";
    
$db_name "aquielnombredelabasededatos";
?>


Espero que te sirva xD


Saludos