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
R

Rinu_Raj

@Rinu_Raj
About
Posts
95
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Active Document Container applications in C#
    R Rinu_Raj

    Hi, Please advice me how to implement Active Document Container applications in C#. Is that possible to interact with Active Document Application developed in VC++ 6.0 or a brand new concept or technology available with C# ? Please advice ...

    C# csharp c++ docker tutorial question

  • Doubt regarding Private bytes(VM Size)
    R Rinu_Raj

    Dear friends, Could you please advice me what actually is the VM Size or Private bytes ? Does it exactly includes the code part of the executable ? for eg: If the binary size increase by 1 MB does it means that corresponding increase of 1 MB will be there in Private bytes of that process ? Or Private bytes is only the allocated data area of the process(allocated either by the process itself or through the loaded DLLs)? Thanks

    C / C++ / MFC question

  • C++ Daimond Problem
    R Rinu_Raj

    Hope you are aware of run time polymorhism. Keep the same name function/method as virtual function in the base class. For the derived class object pointer allocate the corresponding base class (whose function needs to be invoked) then call the function resulting the corresponding base class get invoked. See below to make things clear

    class A
    {
    public:
    virtual void show(){cout<<"Class A invoked"};
    }
    class B
    {
    public:
    virtual void show(){cout<<"Class B invoked"};
    }
    class C: public A, public B
    {
    }

    main()
    {
    C* ptr = new A;
    ptr->show(); // "Class A invoked" will be printed
    C* ptr1 = new B;
    ptr1->show(); // "Class B invoked" will be printed
    }

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

  • COM ATL EXE program
    R Rinu_Raj

    Please check this link http://www.codeproject.com/com/COM\_EXE\_Server.asp Hoping that is the one you need Rinu Raj

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

  • Listbox control
    R Rinu_Raj

    You may right the interface function for setting the value in the second dialog On the button click of first dialog { Dlg->SetDataToListBox( m_Edit.GetWindowText()); //Where Dlg is the second dialog class object } In the second dialog 2ndDlg::SetDataToListBox( CString EditData ) // SetDataToListBox function the dialog class of the second dialog { m_ListBox.AddString( EditData ); } Rinu Raj

    C / C++ / MFC help question

  • converting string to unicode wchar_t?
    R Rinu_Raj

    Try MultiByteToWideChar(..) Rinu Raj

    C / C++ / MFC tutorial question

  • How to intialize a pointer variable ?
    R Rinu_Raj

    We are a bit confused in your post char* pBuff = 0; // Initialize the pointer with 0 pBuff = new char[10]; // Allocate memory for a character array of size 10 if( 0 == pBuff ) { // Failed to allocate memory } else { // Allocation successfull } Rinu Raj

    C / C++ / MFC question tutorial

  • error LNK2001
    R Rinu_Raj

    is that lib available in path ? if not please add the path what about the header file associated is that compatible with the lib ? Rinu Raj

    C / C++ / MFC help c++ com docker question

  • error LNK2001
    R Rinu_Raj

    Please check whether you hav added lib path Project|Properties|Linker|Input|Addition al Dependencies. Rinu Raj

    C / C++ / MFC help c++ com docker question

  • Delete a File
    R Rinu_Raj

    will you paste the code you closing the handle of hile and removing file Rinu Raj

    C / C++ / MFC graphics game-dev help question learning

  • Delete a File
    R Rinu_Raj

    You are creating a temp file right ? Close the file handle of the temp file then try DeleteFile(..) it will work Rinu Raj Rinu Raj

    C / C++ / MFC graphics game-dev help question learning

  • Delete a File
    R Rinu_Raj

    Try calling DeleteFile(..) in your class's destructor Rinu Raj

    C / C++ / MFC graphics game-dev help question learning

  • [Message Deleted] [modified]
    R Rinu_Raj

    What is the error you are facing with struct XXXX{ CListmy_second_Struct; char buff[10]; char buff1[10]; }YYY; ?? Rinu Raj

    C / C++ / MFC help performance question

  • How to get KeyPessed event from an editbox
    R Rinu_Raj

    case WM_COMMAND : if(LOWORD(wParam) == EN_CHANGE) check MSDN for details Rinu Raj

    C / C++ / MFC tutorial question

  • CFileDialog
    R Rinu_Raj

    I think you are using OS XP or 2000, then try dlg.GetOFN().lpstrFile = MyPath; it will work Rinu Raj

    C / C++ / MFC help

  • WARNING
    R Rinu_Raj

    try using #pragma warning(disable : 4089) if not successfull try the following disable LNK4089 by adding /IGNORE:4089 to your linker options Rinu Raj

    C / C++ / MFC question

  • How to get KeyPessed event from an editbox
    R Rinu_Raj

    Map the EN_CHANGE notification Rinu Raj

    C / C++ / MFC tutorial question

  • How to exit from aplication ?
    R Rinu_Raj

    whats happening ? is that one not wuiting ? Rinu Raj

    C / C++ / MFC tutorial question

  • how to send a struct
    R Rinu_Raj

    Can you please explain what you really need ? Rinu Raj

    C / C++ / MFC tutorial

  • Edit Box
    R Rinu_Raj

    thats what he needed i think

    C / C++ / MFC sysadmin question announcement
  • Login

  • Don't have an account? Register

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