Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

Dody_DK

@Dody_DK
About
Posts
60
Topics
24
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Hooking & modifying WSARec
    D Dody_DK

    I successeded hooking the WSARec for read only: I hooked the following: INT WINAPI WSARecvHookProc(SOCKET s, LPWSABUF lpBuffers, DWORD dwBufferCount, LPDWORD lpNumberOfBytesRecvd, LPDWORD lpFlags, LPWSAOVERLAPPED lpOverlapped, LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine) My question is how to write to the hooked buffer. I want to modify a packet with value 1 to 0 how can I rewrite the buffer with the value I want? I am coding with c++ (VS2005) Thanks in advance!

    C / C++ / MFC question c++ tutorial

  • How to Hook Socket?
    D Dody_DK

    Is there an explaination to how to hook socket? thanks in advance!

    C / C++ / MFC tutorial question

  • How to add menu to other applications
    D Dody_DK

    I tried to find the article and searched after the arthur name but no result are you sure it is the right name? thanks!

    C / C++ / MFC tutorial question

  • How to add menu to other applications
    D Dody_DK

    thanks alot I didn't think it was easy like that to do what I am trying to, I thought I needed to hook the application first I have one more question, how I can I add the WM_COMMAND ability to this code so when I click on "test" a MessaBox will pop up? thanks in advance!

    C / C++ / MFC tutorial question

  • How to add menu to other applications
    D Dody_DK

    Hey All I am wondering how to add new menu to other application, meaning I want to add a menu to another application that is not mine let's say I want to add menu to Windows Live Messenger or Yahoo! any idea how? thanks in advance!

    C / C++ / MFC tutorial question

  • Hook procedure ( SetWindowHookEx() )
    D Dody_DK

    thank you for the usefull links, and this is my first try: this is my callback function LRESULT CALLBACK MouseProc(int nCode, WPARAM wParam, LPARAM lParam) { if (nCode<0) return CallNextHookEx(0,nCode,wParam,lParam); if (wParam == WM_RBUTTONDOWN) { MessageBox(GetForegroundWindow(), "Yes", "Works", MB_OK); } return CallNextHookEx(0,nCode,wParam,lParam); } and in onbutton function I set: HOOKPROC wlm; HHOOK check; HINSTANCE WLMDLL; WLMDLL = LoadLibrary((LPCTSTR) "MyHook.dll"); wlm = (HOOKPROC)GetProcAddress(WLMDLL, "MouseProc"); check = SetWindowsHookEx(WH_MOUSE,wlm,WLMDLL,0); as you can see I am trying to do a mouse hook, this try is to get any right click, but later when I get it to work, I want it to be for a defined application that when it gets right click the the popup pops up can you see what I am doing wrong in my code? thanks in advance! |) () |) '/

    C / C++ / MFC json tutorial question

  • Hook procedure ( SetWindowHookEx() )
    D Dody_DK

    Hey I am trying to use SetWindowHookEx() API to inject my code into another process, but I am kinda lost with the hook procedure that should be placed in the .dll file is there an explaination about how to build a hook procedure? thanks in advance!

    C / C++ / MFC json tutorial question

  • How to follow decryption process?
    D Dody_DK

    I am trying to manage the Windows Live Messenger Contact List for a usefull add-on, but the .WindowsLiveContact file is encrypted, so I am not sure where to start to follow the encryption process for Windows Live Messenger, so any help or guide to show how to start following the decryption process of Windows Live Messenger for the Contact List? Thanks in advance

    C / C++ / MFC tutorial security help question

  • FlashWindowEx
    D Dody_DK

    thanks alot, I download the last PSDK and linked the vc++ compilter to the new dorectories, and it works great now, thanks alot...

    C / C++ / MFC c++ question

  • FlashWindowEx
    D Dody_DK

    the problem is I don't have FlashWindowEx in the WinUser.h here is what I have FlashWindow( HWND hWnd, #if(WINVER >= 0x0500) DWORD dwFlags); #else BOOL bInvert); #endif #if(WINVER >= 0x0500) #define FLASHW_STOP 0 #define FLASHW_CAPTION 0x00000001 #define FLASHW_TRAY 0x00000002 #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY) #define FLASHW_TIMER 0x00000004 #define FLASHW_TIMERNOFG 0x0000000C #endif /* WINVER >= 0x0500 */ any help with it? thanks....

    C / C++ / MFC c++ question

  • FlashWindowEx
    D Dody_DK

    Why I can't use the FlashWindowEx() with MFC based dialog... it gives me that FlashWindowEx is not declared, any way to use it? thanks in advance...

    C / C++ / MFC c++ question

  • colorref
    D Dody_DK

    don't call me a dude, and I read before I ask, and if it is bothering you then don't answer at all, I don't need your answer, got it dude?

    C / C++ / MFC com

  • colorref
    D Dody_DK

    yes I got it, but how can I use it with the following classes http://codeproject.com/miscctrl/colour_picker.asp[^] and http://codeproject.com/miscctrl/colourpickerxp.asp[^] I mean, I want the color value of the chosen color from the drop button. thanks alot

    C / C++ / MFC com

  • colorref
    D Dody_DK

    oki, but how can I use the GetRValue, GetGValue, GetBValue functions to display the colorref value in a messagebox or an editbox? an example code? thanks alot

    C / C++ / MFC com

  • colorref
    D Dody_DK

    upon the following tutorials http://codeproject.com/miscctrl/#Colour+Selection+Controls[^] and especially http://codeproject.com/miscctrl/colour_picker.asp[^] and http://codeproject.com/miscctrl/colourpickerxp.asp[^] I could successfully use te classes, but I want to ask, upon these two articles, is the any way to get the value of the COLORREF and disploay it in a MessageBox or in an editbox using SetWindowText() thanks in advance...

    C / C++ / MFC com

  • LVM_FINDITEM
    D Dody_DK

    i will try and let you know, thanks alot

    C / C++ / MFC help question

  • LVM_FINDITEM
    D Dody_DK

    any code that explain how?

    C / C++ / MFC help question

  • LVM_FINDITEM
    D Dody_DK

    I am having problem to find and select an item in a ListView ::SendMessage(hWnd, LVM_FINDITEM, -1, (LPARAM)"item to find"); am I doing something wrong?

    C / C++ / MFC help question

  • How to use type library files?
    D Dody_DK

    I know how to import the .lib files into vc++, but how to use them? if I import MSN Messengers .lib files, then I can see its classes like DMessengerEvents::OnSignin; but when I creat a button and put the code in Onclick, then nothing happen... any ideas about this?

    C / C++ / MFC c++ tutorial question

  • How to request data from URL
    D Dody_DK

    okay thanks alot, I will give it a try....

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups