creating a hook dll in vb to be used in vb
-
Sir To create a hook dll people recomending to create a dll in visualc++ and use that in vb. Is it not possible to create a vb dll for a creating a system wide hook dll for example keybaord hook dll and use the same way as we use dll made from vc++ or delphin software. Please give me suggestions what are the draw backs in creating a vb dll and what are the constraints we have to consider in creating a dll in vc++ that can be used in vb for the purpose of system wide hook Thanks in advance rvvimal
-
Sir To create a hook dll people recomending to create a dll in visualc++ and use that in vb. Is it not possible to create a vb dll for a creating a system wide hook dll for example keybaord hook dll and use the same way as we use dll made from vc++ or delphin software. Please give me suggestions what are the draw backs in creating a vb dll and what are the constraints we have to consider in creating a dll in vc++ that can be used in vb for the purpose of system wide hook Thanks in advance rvvimal
percyvimal wrote: Is it not possible to create a vb dll for a creating a system wide hook dll Nope. Sorry. :( But you might look around for a system-wide hook DLL that's meant for use with .NET. Remember, btw, that you should only use system-wide hooks where absolutely necessary. ;)
**"Have a heart that never hardens, a temper that never tires, a touch that never hurts." -- Charles Dickens
-
percyvimal wrote: Is it not possible to create a vb dll for a creating a system wide hook dll Nope. Sorry. :( But you might look around for a system-wide hook DLL that's meant for use with .NET. Remember, btw, that you should only use system-wide hooks where absolutely necessary. ;)
**"Have a heart that never hardens, a temper that never tires, a touch that never hurts." -- Charles Dickens
Thanks sir, But if you could provide me what are the important things that is necessary for creating a vc++ dll like i didnt understand the address parametes where u need to send the address of the call back function and how the function should be decalared in vc++ etc then it will be really helpful to me thanks in advance
-
Thanks sir, But if you could provide me what are the important things that is necessary for creating a vc++ dll like i didnt understand the address parametes where u need to send the address of the call back function and how the function should be decalared in vc++ etc then it will be really helpful to me thanks in advance
The hook types WH_KEYBOARD_LL, WH_MOUSE_LL, WH_JOURNALRECORD and WH_JOURNALPLAYBACK can be written perfectly well in VB5 or 6. The others require the hook procedure to be in the dll exports section which is not possible in VB. '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd