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
J

Jump_Around

@Jump_Around
About
Posts
54
Topics
39
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • changing text color
    J Jump_Around

    What is the easiest way for changing CButton (MFC) text control?? Please help

    C / C++ / MFC question c++ help

  • Initializnig a dialogbox dimensions??
    J Jump_Around

    How to define a specific dialog window dimensions when the application (dialog based) starts? I could 't find such property in the property tabs. Please help

    C / C++ / MFC help tutorial question

  • problem with including headers
    J Jump_Around

    I have a question. I have some headers files in a directory which has been created inside the project directory. When I want to include the header file from a .cpp file the compiler says "no such file or directory" My question is where to add (projects settings) a path to the headers?? Please help me

    C / C++ / MFC help question c++

  • MessageBox and font changing?
    J Jump_Around

    Is there a possibility to change fonts in MessageBox(...) Please help

    C / C++ / MFC help question

  • detecting outgoing connections
    J Jump_Around

    I want to write a proxy so I need to detect all outgoing connections from my computer. Any sugestions how to do that. Please help

    C / C++ / MFC help tutorial

  • MAPI
    J Jump_Around

    I have a question, can I use MAPI to add extra functions to Outlook Express (not Outlook).

    C / C++ / MFC question

  • Outlook please help
    J Jump_Around

    Another question. Can I use MAPI to solve the problem?

    C / C++ / MFC help tutorial

  • Outlook please help
    J Jump_Around

    Well, I would rather write it in C++ without using any components(especially in case the component is written in VB). How to check in spy++ what kind of message is comming when an email arrives? I know there are some products which have control on Outlook, without using any components, so I want to achive the same. Any more sugestions? P.S Thank ypu for your help

    C / C++ / MFC help tutorial

  • Outlook please help
    J Jump_Around

    Well, what I really want to do is a project which scans an incoming email content and puts it to a folder dependently what the content looks like. Please give me any suggestions, maybe a piece of code. Thank you

    C / C++ / MFC help tutorial

  • Outlook please help
    J Jump_Around

    Is there any possibility to call a function when an email arrives in the Outlook Express. How to get notification when an email arrives. Please help

    C / C++ / MFC help tutorial

  • Outlook Express please help
    J Jump_Around

    Is anyone who knows how to add a button (toolbar) to the Microsoft Outlook Express. I know there are some aplications which add extra buttons to OE. The second question is how to call a function when an email arrvies? Please help

    C / C++ / MFC question help tutorial

  • Video capturing
    J Jump_Around

    I have a problem with video capturing. When I call create function everything goes fine, it means capDriver is loaded succesfully, setting callback function goes fine.... . What i see on the cap window is just the first image which has been grabed. The problem is that the call back function is not called. How to change the code if I want to use frame callback function? Please help typedef LRESULT (CALLBACK *FRAMECALLBACK)(HWND , LPVIDEOHDR); LRESULT PASCAL _grabber_CallbackProc(HWND hWnd, LPVIDEOHDR lpVHdr); BOOL CCaptureVideo::Create(DWORD dwStyle, const RECT& rect, HWND pParentWnd) { hCaptureWnd=capCreateCaptureWindow("AviCap_Basic", dwStyle, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, pParentWnd, AVICAP_WINDOW_ID); if(!hCaptureWnd) { TRACE("CAviCap Window creation failed\n"); //iLastError=CAP_WINCREATION_FAILED; return FALSE; } if( capDriverConnect(hCaptureWnd, DEFAULT_CAPTURE_DRIVER) ) { AfxMessageBox("cap Driver connect ok"); } if (capSetCallbackOnFrame(hCaptureWnd, _grabber_CallbackProc) ) { AfxMessageBox("Callback ok"); } if( capPreview(hCaptureWnd, FALSE)) { AfxMessageBox("Preview ok"); } return TRUE; } LRESULT PASCAL _grabber_CallbackProc(HWND hWnd, LPVIDEOHDR lpVHdr) { AfxMessageBox("grab"); return 0; }

    C / C++ / MFC help delphi debugging tutorial question

  • Enumerating connections
    J Jump_Around

    How to enumerate a connection as Active as soon as it starts dialing? under windows 2000/XP/NT? Only under win 98 RasEnumConnections function returns handle when the system starts dialing? Please help, very important

    C / C++ / MFC help tutorial question

  • system startup progrematicaly
    J Jump_Around

    you have to put the path to your .exe file into the registry HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run using win api you can do this like that name is a path to your application void SetDeafultRegistries(char *name) { if( name == NULL) return; HKEY hKey; if(::RegCreateKeyEx(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Run", NULL, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, NULL)==ERROR_SUCCESS) { RegSetValueEx(hKey, "InternetProfile", NULL, REG_SZ, (BYTE*)(name), strlen(name)); } RegCloseKey(hKey); return; }

    C / C++ / MFC question

  • Wininet.h problem
    J Jump_Around

    I want to use an example from msdn which tells how to set the proxy settings (Explorer). The problem is that my compiler doesn't know what PROXY_TYPE_PROXY is and many others. Those deifinitions are in the wininet.h but probably I have the older version cause there is nothing about in there. My wuestion is how to download (wininet.h), I do not need (and have no time) to download all sdk. Maybe you know hot to change proxy setting for DUN ? Please help.

    C / C++ / MFC help tutorial question announcement

  • embedding window into dialog
    J Jump_Around

    I need your help How to embbed a simple window into dialogbox (modeless) using CreateWindowEx function?. I really need that one

    C / C++ / MFC help tutorial question

  • Dial up connections, please help
    J Jump_Around

    Is anyone here who knows how to set a dial up connection as a deafult one ( using WinApi) Please help

    C / C++ / MFC help tutorial

  • Changing fonts on the button
    J Jump_Around

    How to change a font on a button using windows API? Please help

    C / C++ / MFC json help tutorial question

  • Dialog box question
    J Jump_Around

    OK but I said I use api windows not MFC. Any suggestions?

    C / C++ / MFC question json help tutorial

  • Dialog box question
    J Jump_Around

    I use api and I have a question DialogBox(hInst, MAKEINTRESOURCE(IDD_AUTHORIZATION), main_hwnd, (DLGPROC)authDialog); where main_hwnd is a handler to the parent window. But when the dialog box appears it is not shown relatively to the parent window. Relatively I mean at the center. Could you help me how to change the code to set the dialog box at the center of parent window?

    C / C++ / MFC question json help tutorial
  • Login

  • Don't have an account? Register

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