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

 

 


Tema destacado: Entrar al Canal Oficial Telegram de elhacker.net


  Mostrar Mensajes
Páginas: [1] 2
1  Programación / Programación Visual Basic / Re: Como puedo poner mi programa donde esta el reloj de windows... en: 29 Octubre 2007, 18:23 pm
usa este modulo: (no es mio esta especificado el autor i la fuente)

Código:
'---------------------------------------------------------------------------------------
' Module    : modTray
' DateTime  : 12/05/2005 21:38
' Author    : Carlos Alberto S.
' Purpose   : System tray module with high resolution icon (Windows XP), balloon (with
'               or without sound) and mouse event support for icon and balloon.
' Credits   :
'
'   (1) Frankie Miklos -aKa- PuPpY
'   http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=54577&lngWId=1
'   (2) Jim Jose
'   http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=59003&lngWId=1
'   (3) Aaron Spuler (for the code regarding LoadImage API - high resolution icon)
'   http://www.spuler.us/
'
'---------------------------------------------------------------------------------------

Option Explicit

'API to load high resolution icon
Private Declare Function LoadImage Lib "user32" Alias "LoadImageA" (ByVal hInst As Long, ByVal lpsz As String, ByVal dwImageType As Long, ByVal dwDesiredWidth As Long, ByVal dwDesiredHeight As Long, ByVal dwFlags As Long) As Long
Private Const LR_LOADFROMFILE = &H10
Private Const LR_LOADMAP3DCOLORS = &H1000
Private Const IMAGE_ICON = 1
'System tray
Private Declare Function Shell_NotifyIcon Lib "shell32.dll" Alias "Shell_NotifyIconA" (ByVal dwMessage As Long, lpData As NOTIFYICONDATA) As Long
Private Const NIF_MESSAGE = &H1
Private Const NIF_ICON = &H2
Private Const NIF_TIP = &H4
Private Const NIF_STATE = &H8
Private Const NIF_INFO = &H10
Private Const NIM_ADD = &H0
Private Const NIM_MODIFY = &H1
Private Const NIM_DELETE = &H2
Private Const NIM_SETFOCUS = &H3
Private Const NIM_SETVERSION = &H4
Private Const NIM_VERSION = &H5
Private Const WM_USER As Long = &H400
Private Const NIN_BALLOONSHOW = (WM_USER + 2)
Private Const NIN_BALLOONHIDE = (WM_USER + 3)
Private Const NIN_BALLOONTIMEOUT = (WM_USER + 4)
Private Const NIN_BALLOONUSERCLICK = (WM_USER + 5)
Private Const NOTIFYICON_VERSION = 3
Private Const NIS_HIDDEN = &H1
Private Const NIS_SHAREDICON = &H2
Private Const WM_NOTIFY As Long = &H4E
Private Const WM_COMMAND As Long = &H111
Private Const WM_CLOSE As Long = &H10
Private Const WM_MOUSEMOVE As Long = &H200
Private Const WM_LBUTTONDOWN As Long = &H201
Private Const WM_LBUTTONUP As Long = &H202
Private Const WM_LBUTTONDBLCLK As Long = &H203
Private Const WM_MBUTTONDOWN As Long = &H207
Private Const WM_MBUTTONUP As Long = &H208
Private Const WM_MBUTTONDBLCLK As Long = &H209
Private Const WM_RBUTTONDOWN As Long = &H204
Private Const WM_RBUTTONUP As Long = &H205
Private Const WM_RBUTTONDBLCLK As Long = &H206

Public Enum bFlag
    NIIF_NONE = &H0
    NIIF_INFO = &H1
    NIIF_WARNING = &H2
    NIIF_ERROR = &H3
    NIIF_GUID = &H5
    NIIF_ICON_MASK = &HF
    NIIF_NOSOUND = &H10 'turn the balloon bleep sound off
End Enum

Private Type NOTIFYICONDATA
    cbSize As Long
    hwnd As Long
    uID As Long
    uFlags As Long
    uCallbackMessage As Long
    hIcon As Long
    szTip As String * 128
    dwState As Long
    dwStateMask As Long
    szInfo As String * 256
    uTimeoutAndVersion As Long
    szInfoTitle As String * 64
    dwInfoFlags As Long
End Type

Public Enum TrayRetunEventEnum
    MouseMove = &H200            'On Mousemove
    LeftUp = &H202               'Left Button Mouse Up
    LeftDown = &H201             'Left Button MouseDown
    LeftDbClick = &H203          'Left Button Double Click
    RightUp = &H205              'Right Button Up
    RightDown = &H204            'Right Button Down
    RightDbClick = &H206         'Right Button Double Click
    MiddleUp = &H208             'Middle Button Up
    MiddleDown = &H207           'Middle Button Down
    MiddleDbClick = &H209        'Middle Button Double Click
    BalloonClick = (WM_USER + 5) 'Balloon Click
End Enum

Public ni As NOTIFYICONDATA
Public Sub TrayAddIcon(ByVal MyForm As Form, ByVal MyIcon As String, ByVal ToolTip As String, Optional ByVal bFlag As bFlag)

    With ni
        .cbSize = Len(ni)
        .hwnd = MyForm.hwnd
        .uID = vbNull
        .uFlags = NIF_ICON Or NIF_TIP Or NIF_MESSAGE
        .uCallbackMessage = WM_MOUSEMOVE
        .hIcon = LoadImage(App.hInstance, MyIcon, IMAGE_ICON, 16, 16, LR_LOADFROMFILE Or LR_LOADMAP3DCOLORS)
        .szTip = ToolTip & vbNullChar
    End With
   
    Call Shell_NotifyIcon(NIM_ADD, ni)

End Sub

Public Sub TrayRemoveIcon()

    Shell_NotifyIcon NIM_DELETE, ni
   
End Sub

Public Sub TrayBalloon(ByVal MyForm As Form, ByVal sBaloonText As String, sBallonTitle As String, Optional ByVal bFlag As bFlag)

    With ni
        .cbSize = Len(ni)
        .hwnd = MyForm.hwnd
        .uID = vbNull
        .uFlags = NIF_INFO
        .dwInfoFlags = bFlag
        .szInfoTitle = sBallonTitle & vbNullChar
        .szInfo = sBaloonText & vbNullChar
    End With

    Shell_NotifyIcon NIM_MODIFY, ni

End Sub

Public Sub TrayTip(ByVal MyForm As Form, ByVal sTipText As String)

    With ni
        .cbSize = Len(ni)
        .hwnd = MyForm.hwnd
        .uID = vbNull
        .uFlags = NIF_ICON Or NIF_TIP Or NIF_MESSAGE
        .szTip = sTipText & vbNullChar
    End With

    Shell_NotifyIcon NIM_MODIFY, ni

End Sub


Se ruega usen google . . .



H4NG3R
2  Programación / Programación Visual Basic / Re: ejecutar exe al iniciar sisteme en: 29 Octubre 2007, 18:21 pm
mirate esto : http://foro.elhacker.net/index.php/topic,146876.html

Jajaja la proxima usa el botoncico d buscar o el Google . . .

Enga H4NG3R
3  Programación / Programación Visual Basic / Re: Ayuda con mi troyano y capturar pantalla. en: 21 Octubre 2007, 15:20 pm
Yom lo que ago es simplement unauna vez tienes la pantalla capturada, la passo a bytes, como? En Vb ni idea xD, xo se k lo ago kn VB .NET i dudo k el codigo sea = aisi k busca por ahi . . .

Bueno ventajas: - Se envai mas rapido
                        - Evitas problema se sobresqribir
                         - Mas deificl de detectar el troyano
                         

Enga Salut!

H4NG3R
4  Programación / .NET (C#, VB.NET, ASP) / TcpClient! en: 2 Octubre 2007, 20:14 pm
Buenas,

Sabe alguien como haber un objeto classe Sockets.TcpClient  con el evento Dataarrival como un Sockets.Socket?

Eske necessitu el TcpClient.getstream, xo no puedo depender de un timer para ver si me mandan algo . ..


Alguna idea?

Asias

H4NG3R
5  Programación / .NET (C#, VB.NET, ASP) / Re: C# MOdificar Controlos des de Class en: 28 Septiembre 2007, 01:11 am
Me expliko mas:

Tenemos un Form1.Cs K inizializa un tree view llamado TreeView1. En public i kn el modify en public.


Aora tenemos el Operaciones.Cs que tiene k meter un solucion (Grupos de Msn), en el TreeView anterior.


Pero si pogno la variable publica me pide que cree una instance al objeto i si lo ago, me canvia el valor de TreeView1 xo al salir del clas lo restablece.


Me sabiran ayudar?


H4NG3R
6  Programación / .NET (C#, VB.NET, ASP) / Re: C# MOdificar Controlos des de Class en: 27 Septiembre 2007, 16:26 pm
pos mumm x ejemplo

TreeView1.nodes.add ("NO se hacerlo");

espero t respuesta

H4NG3R
7  Programación / .NET (C#, VB.NET, ASP) / C# MOdificar Controlos des de Class en: 27 Septiembre 2007, 00:28 am
Lleva un ratiko grande buskando pos eso komo modificar un controlo (Tree Viewer) de From1.cs des de otro class.

Bueno gracias ;P

H4NG3R
8  Programación / Programación Visual Basic / Re: Utilizar WebBrowser atraves de un proxy. en: 11 Septiembre 2007, 19:54 pm
exacto xD
9  Programación / Programación Visual Basic / Re: Enviar a FTP en: 11 Septiembre 2007, 19:47 pm
no me refiero a auth en el ordi donde se ejecuta . . .

es decir auth al fw
10  Programación / Programación Visual Basic / Re: Enviar a FTP en: 3 Septiembre 2007, 00:43 am
xo pide auth no?
Páginas: [1] 2
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines