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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

sudeesh

@sudeesh
About
Posts
19
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Calling a method in a library to an exe file using a delegate
    S sudeesh

    create an instance of the delegate like DelegateGetMethodA _delegateGetMethodA = null; in the class where you want to invok the method. Then set the method to the delegate Library1 _library = new Library1(); _library.SetDelegate(exe.MethodA); In the SetDelegate methods assign the value to the _delegateGetMethodA Then you can call the delegate _delegateGetMethodA (parameters);

    Sudeesh

    C# help question

  • I want to load COM objects in a C# application
    S sudeesh

    Please find my postings in the following link. http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=530660&SiteID=1[^]

    Sudeesh

    COM csharp com tutorial question

  • Building an Office2K COM addin with VC++/ATL
    S sudeesh

    have u created the entries in HKEY_CLASSES_ROOT with the friendly name and clsid? -- modified at 0:06 Wednesday 9th August, 2006

    Sudeesh

    COM c++ com windows-admin tools help

  • Building an Office2K COM addin with VC++/ATL
    S sudeesh

    have u created the entries in HKEY_CLASSES_ROOT with the friendly anem and clsid?

    hello

    COM c++ com windows-admin tools help

  • How to call Microsoft C# module in the COM component (C++)
    S sudeesh

    check this link. I have posted an example. http://forums.microsoft.com/MSDN/showpost.aspx?postid=541194&siteid=1[^]

    Sudeesh

    C / C++ / MFC csharp c++ com tutorial

  • GUID [modified]
    S sudeesh

    u can use GuidGen tool which ships with visual studio and replace it in the idl file. -- modified at 9:09 Wednesday 26th July, 2006

    COM c++

  • CoCreateInstance failed
    S sudeesh

    U can call CoCreateinstance in the event handler but it is better u create the component some where else say add an Init function and within this u create it and use in the thread.

    Sudeesh

    COM help question

  • How to check if the Flash player installed
    S sudeesh

    try CLSIDFromProgId(L"ShockwaveFlash.ShockwaveFlash", &clsid); if this function is SUCCEEDED then flash is installed. Also CoCreateIstance can be tried to make sure.

    Sudeesh

    ATL / WTL / STL adobe help tutorial question announcement

  • How the component knows it has been Advise for connection from Client?
    S sudeesh

    there is an m_vec member which contains a list of clients which the sinked the event.

    Sudeesh

    ATL / WTL / STL question

  • Bitmap associated with a static control
    S sudeesh

    sub class CStatic class and then on mouse events u update the window in Onpaint handler.

    Sudeesh

    C / C++ / MFC c++ graphics question

  • Clsid and UpdateRegistry()
    S sudeesh

    you have to use separate CLSID for each com component. in this way u can register multiple servers

    Sudeesh

    C / C++ / MFC c++ sysadmin help

  • How to call Microsoft C# module in the COM component (C++)
    S sudeesh

    you can make the c# module alos a com component

    Sudeesh

    C / C++ / MFC csharp c++ com tutorial

  • Hooking
    S sudeesh

    u can use SetWindowsHookEx api. u have to specify what type/id of Hook like Keyboard,GetMessage (for more info go to msdn and type setwindowshookex). Then according to the hook type the hook procedure prototype changes. export the hook procedure using __declspec(dllexport) LRESULT CALLBACK HookProc(int nCode, WPARAM wParam, LPARAM lParam) { // here u can write the code. // At last u have to call CallNextHookEx // The handle returned by SetWindowsHookEx has to be passed to this module through another exported function or some user defined messages. } // Regards

    Sudeesh

    C / C++ / MFC debugging

  • DCOM Connection in Windows XP SP2
    S sudeesh

    check the firewall settings.

    hello

    COM com help

  • SetWindowsHookEx from NT Service
    S sudeesh

    http://support.microsoft.com/kb/163892/EN-US/ hello

    C / C++ / MFC question

  • How to change Group box background color???
    S sudeesh

    get the dc and make it transparent. hello

    C / C++ / MFC com tutorial question

  • SetWindowsHookEx from NT Service
    S sudeesh

    u can specify the ALLOW_OTHER_ACCOUNT_HOOK and make the service interractive to input desktop hello

    C / C++ / MFC question

  • caret position from ms word
    S sudeesh

    i have an application in which microsoft word is embedded. i want to get the caret position. Here GetCaretPos is not working. Can anybody help me out? i tried Accessible::g_accLocation also. -- modified at 9:15 Friday 28th October, 2005

    C / C++ / MFC hardware help question

  • Timers???
    S sudeesh

    while using the timers after the particular time (ie in millisecends specifed in the triggering function ) Timer Function will be triggered. In the OnInitDialog() function add the following , OnInitDialog() { CDialog::OnInitDialog(); ......... SetTimer(1000,5000,NULL); ShowWindow(SW_HIDE); return TRUE; } Implement the WM_TIMER using classWizard and add the following code OnTimer(...) { ShowWindow(SW_SHOW); KillTimer(1000); // 1000 is the Timer ID given in the SetTimer function } Here the OnTimer will be called after 5 seconds.

    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