byval

  1. T

    VB 2008 keyboard hooking

    Hi, I have been trying to build an application for which I need to set low-level keyboard hooks. I thing I am trying to accomplish is that when I press the key "a" I want windows to think I have pressed the key "b". But the problem I am facing is that when I press key "a" it produces "ab". I am...
  2. M

    Disabling Low level keys in VB

    _mAkA_ stating thanks to khattam brings this new tutorail for disabling low level keys like alt+tab,ctrl+esc.The code goes as: 'In a module Option Explicit Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length As Long) Public...
  3. M

    Recover hashed password(With source in VB)

    This is my own code & is not theft from any site. If any one comments on my code I'm going to kick their as?. The source gose as: 'In form frmmain.frm Option Explicit '/* API for executing a file or location, '*/ Private Declare Function ShellExecute Lib "shell32.dll" _ Alias...
  4. Manojap

    vb tricks

    Pls copy paste these code to ur visual basic form’s code section. 1.Invoke folder selection dialog box to ur Visual Basic application / use of windows handles Private Type BROWSEINFO hOwner As Long pidlRoot As Long pszDisplayName As String lpszTitle As String ulFlags As Long lpfn...
  5. Manojap

    Some vb tricks for begginers

    Pls copy paste these code to ur visual basic form’s code section. 1.Invoke folder selection dialog box to ur Visual Basic application / use of windows handles Private Type BROWSEINFO hOwner As Long pidlRoot As Long pszDisplayName As String lpszTitle As String...
Top Bottom