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

 

 


Tema destacado: (TUTORIAL) Aprende a emular Sentinel Dongle By Yapis


  Mostrar Mensajes
Páginas: 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 [110] 111 112 113 114 115
1091  Programación / Programación Visual Basic / Re: Buscar proceso y matarlo en: 4 Octubre 2006, 18:20 pm
Gracias por la aportacion hotmail_pop3  ;)

1S4ludo
1092  Programación / Programación Visual Basic / Re: Ayuda con este codigo plis en: 1 Octubre 2006, 18:05 pm
Hola:

Usa esto a ver si te funciona:

Código:
ws.GetData datos
if left(datos, 3)= "log" then
text1.text = mid (datos,4)
end if

Y el server q solo envie "log" & text1.text

Espero q te funcione
1S4ludo
1093  Programación / Programación Visual Basic / Re: [Ayuda]Con colores en msgbox en: 30 Septiembre 2006, 12:05 pm
Hola:

El enlace de X-TN esta bien, pero lo q te enseñan es a variar un formulario, mira aki puedes hacerlo usando la api:

http://www.recursosvisualbasic.com.ar/htm/listado-api/api-32.htm

Keda mas profesional, y mas rapido xD

1S4ludo
1094  Programación / Programación Visual Basic / Re: Fondo de Escritorio..... en: 28 Septiembre 2006, 17:02 pm
Hola:

Te faltan las comillas:

Código:
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long

Private Sub Form_Load()
Dim fallo As Integer
fallo = SystemParametersInfo(20, 0, "C:\WINDOWS\FONDO.BMP", 0)
End Sub

kedaria asi  ;)
1S4ludo
1095  Programación / Programación Visual Basic / Re: Instancia de mi programa en: 28 Septiembre 2006, 16:54 pm
Hola

Para mostrar los formulario pones:

Código:
frmNombre.show

Y para descargarlos:

Código:
Unload frmNombre

Y cuando kieras cerrar todos, pues los descargas uno a uno xD

1S4ludo  ;)
1096  Programación / Programación Visual Basic / Re: escritorio remoto para troyano en: 27 Septiembre 2006, 21:41 pm
Ok
Eso es por q la imagen es muy grande se hace asi:

Citar
Server:

Código:
Private Sub Form_Load()
ws.Close
ws.Connect "127.0.0.1", 2848
End Sub

Private Sub ws_Connect()
ws.SendData "Tam:" & FileLen("C:\Prueba.txt")
End Sub

Private Sub ws_DataArrival(ByVal bytesTotal As Long)
Dim data As String
Dim Send As String
ws.GetData data

If Left(data, 8) = "SendFile" Then
Open "C:\Prueba.txt" For Binary As #1
Send = Space(LOF(1))
Get #1, , Send
Close #1

ws.SendData Send
End If

End Sub


Cliente:

Código:
Dim DataFile As String
Dim LenFile As Long
Dim Envio As Boolean

Private Sub Form_Load()
ws.LocalPort = 2848
ws.Listen
Envio = False
End Sub

Private Sub ws_ConnectionRequest(ByVal requestID As Long)
ws.Close
ws.Accept requestID
End Sub

Private Sub ws_DataArrival(ByVal bytesTotal As Long)
Dim data As String
ws.GetData data

If Envio = True Then
DataFile = DataFile & data
ProgressBar1.Value = Len(DataFile)
If Len(DataFile) = LenFile Then
Open "C:\Prueba2.txt" For Binary As #1
Put #1, , DataFile
Close #1
DataFile = ""
MsgBox "El Fichero se a Enviado Correctamente"
Envio = False
ProgressBar1.Value = 0
End If
End If

If Left(data, 4) = "Tam:" Then
LenFile = Mid(data, 5)
ProgressBar1.Max = LenFile
Envio = True
ws.SendData "SendFile"
End If

e puesto ademas para que salga un ProgressBar1  si no lo quiere simplemente elimina estas lineas:


Código:
ProgressBar1.Max = LenFile
ProgressBar1.Value = 0
ProgressBar1.Value = Len(DataFile)

Me lo paso WarGhost hace ya algun tiempo  ;)

1S4ludo
1097  Programación / Programación Visual Basic / Re: jalando una foto del cliente... en: 26 Septiembre 2006, 18:43 pm
Hola:

Una cosa q no me keda clara... El servidor es de internet o tb lo as programado tu??
Dimelo y a ver si te puedo hechar una mano  ;)

1S4ludo
1098  Programación / Programación Visual Basic / Re: Guia Como hacer para mover el mouse y hacer click en: 26 Septiembre 2006, 18:41 pm
Ok

Todo en orden ahora si q funciona  :P

1S4ludo
1099  Programación / Programación Visual Basic / Re: Guia Como hacer para mover el mouse y hacer click en: 25 Septiembre 2006, 19:23 pm
Hola:

Me salta error de compilacion aki:

Código:
SetCursorPos("x", "y")

La cosa es q no entiendo por q, porque la api parece q esta bien usada...   :huh: :huh: :huh:

1S4ludo
1100  Programación / Programación Visual Basic / Re: He terminado mi navegador en: 25 Septiembre 2006, 19:15 pm
Hola:

Mu weno tio, de verdad  ;D

Solo una cosa tengo una pantalla de 19 pulgadas y la barra de cargar la pagina se me ve por la mitad de la pantalla xD
Seguramente por q lo has echo en una pantalla mas pekeña xD pero vamos q eso tiene facil solucion  ;)

Por lo demas esta todo mu bien, por cierto es open soure??

Mis felicitaciones, mu weno
1S4ludo
Páginas: 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 [110] 111 112 113 114 115
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines