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
M

MANISH RASTOGI

@MANISH RASTOGI
About
Posts
106
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • file transfer
    M MANISH RASTOGI

    http://msdn.microsoft.com/en-us/library/1e4zc0sx(v=vs.80).aspx[^]

    C / C++ / MFC c++

  • How to make member functions of an application accessible by a DLL?
    M MANISH RASTOGI

    Export function from exe and import in dll. Below example is taken from http://www.codeguru.com/cpp/w-p/dll/article.php/c3649 In the EXE: // Do exactly as you would export a DLL... extern "C" { EXPORT void ExeFn(char * lpszMessage) { MessageBox(NULL,lpszMessage,"From Exe",MB_OK); } } In the DLL: ... // Get the handle of the EXE that loaded us. FnPtrT FnPtr = (FnPtrT)::GetProcAddress(GetModuleHandle(NULL), "ExeFn"); if(FnPtr) (*FnPtr)("Message From The DLL"); else MessageBox(NULL,"It Did Not work :(","From DLL",MB_OK); ...

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

  • [SOLVED] COM Dll Not Getting Registered In Windows Server 2008 [modified]
    M MANISH RASTOGI

    Hi Experts, I am facing a strange problem. I developed a simple COM dll in VS2008 using ATL on vista 32 bit platerform. When I try to register it on windows server 2008, I am getting below error. The module "D:\TestATL.dll" failed to load. Make sure the binary is stored at the specified path or debug it to check for problems with the binary or dependent .DLL files. The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail. I searched this problem on google but could not find any solution. Any idea about this. Solution: http://www.codeguru.com/forum/showthread.php?t=454296 Thanks Manish

    modified on Saturday, November 27, 2010 1:08 AM

    ATL / WTL / STL help c++ php com sysadmin

  • Tab Order
    M MANISH RASTOGI

    using SetWindowPos API.

    C / C++ / MFC tutorial question

  • CListCtrl
    M MANISH RASTOGI

    Change the position of listctrl using MoveWindow Or SetWindowPos.

    C / C++ / MFC tutorial

  • CListCtrl
    M MANISH RASTOGI

    Make it child of the control.

    C / C++ / MFC tutorial

  • How to receive HTTP request? [modified]
    M MANISH RASTOGI

    There is no specific socket for http.

    C / C++ / MFC c++ xml json tutorial question

  • How to receive HTTP request? [modified]
    M MANISH RASTOGI

    As I get you want to create server. Simple open a socket and start listening on a specified port. for test open internet explorer. type http://127.0.0.1:5000 5000 is port number on which server is listening request. It is changable but should be same on both server and client. On server read socket.

    C / C++ / MFC c++ xml json tutorial question

  • How to receive HTTP request? [modified]
    M MANISH RASTOGI

    Are you want to create your own http server?

    C / C++ / MFC c++ xml json tutorial question

  • Need some help immediately
    M MANISH RASTOGI

    KeyBoard Hooks[^]

    C / C++ / MFC help question

  • Unicode to Hex conversion
    M MANISH RASTOGI

    Convert unicode text into byte stream, then convert that byte stream into hex.

    C / C++ / MFC tutorial question help

  • auto closing messagebox
    M MANISH RASTOGI

    See This. MessageBoxTimeout API[^]

    C / C++ / MFC

  • How to get ordinal value of function programitically ?
    M MANISH RASTOGI

    Dear All, I have created a dll in vc and exported some function. How can get ordinal value from function name in vc? I searched on google but could not find the result which I was looking for. Thanks Manish

    C / C++ / MFC

  • Set Monitor Contrast.............?
    M MANISH RASTOGI

    See below link http://www.codeproject.com/KB/miscctrl/gamma_manager.aspx

    C / C++ / MFC help tutorial question

  • How to get ip from computer name?
    M MANISH RASTOGI

    'Obtain ip address automatically' set - on remote computer, got different ip. 'Prefered DSN Server' settings had wrong value. After changing it got correct ip.

    C / C++ / MFC help tutorial question

  • How to get ip from computer name?
    M MANISH RASTOGI

    Hi All, I am using gethostbyname function to get ip from name. It works fine if ip is defined. But if 'Obtain ip address automatically' settings is on, this function gives some different ip. Any help please. Thanks

    C / C++ / MFC help tutorial question

  • Get dependent Dll list
    M MANISH RASTOGI

    Hi, I am writing an utility dll like dependency walker. I have no idea how to get dependent dll. Any idea about this. Thanks

    C / C++ / MFC tools tutorial

  • How can save COLORREF value in access database ?
    M MANISH RASTOGI

    Use Number Datatype.

    C / C++ / MFC question database help

  • Reg : Key Down message not receiving in dialog procedure
    M MANISH RASTOGI

    BOOL CALLBACK DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { BOOL bResult = FALSE; switch(uMsg) { case WM_INITDIALOG: // implemention code; bResult = TRUE; break; case WM_KEYDOWN: // implemention code; bResult = TRUE; break; } return(bResult); } DialogBox(g_hInstance, MAKEINTRESOURCE(IDD_DIALOG1), NULL, DialogProc);

    C / C++ / MFC c++ tutorial

  • Reg : Key Down message not receiving in dialog procedure
    M MANISH RASTOGI

    Hi, I created an dialog application in SDK. Dialog does not contain any control. I tried to capture WM_KEYDOWN message, but not receiving this messaage. In MFC I can track this message in PreTranslateMessage but I do not know how to track in SDK. Any Idea please. Thanks

    C / C++ / MFC c++ 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