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

Jijo Raj

@Jijo Raj
About
Posts
627
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Button Ownerdraw - Transparency Issue
    J Jijo Raj

    - I've created a CPngButton from CBitmapButton. - It overrides DrawItem() and draws the given PNG image using GDI+. - The wm_erasebkgnd and wm_ctlcolor is taken care. - while displaing the CMainFrame its displaying properly. - Later if we resize the window couple of times, the transparent portions of button becomes black. - OS is Windows 7 with Aero enabled. - Screenshot is here[^] - Any idea what I'm missing here? (Some more information: The buttons are hosted on a CWnd as container. This CWnd is placed over left of menubar to looks like a quick access toolbar, which is a requirement). Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    C / C++ / MFC c++ winforms com graphics docker

  • How to count pages in PDF file using VC++
    J Jijo Raj

    Hi Shanmuga, As Richard suggested, you've to use some thirdparty PDF SDK/library to get the pdf page count. One option would be - QuickPDF Library[^] which is a absolutly free. You can use the api - DPLPageCount()[^] to get the page count. Have a look at their samples(well documented) about how to initialize the library and use it. Hope this helps. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks.

    C / C++ / MFC csharp c++ visual-studio help tutorial

  • Split a string in MFC
    J Jijo Raj

    Hi, You can use CStringT::Tokenize()[^]. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

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

  • need delete a file in vc++
    J Jijo Raj

    Hi kamalilam,

    kamalilam wrote:

    now i want to delete this file using single slash("\") inside path..

    As per C++ Character Constants[^], \ has special meaning in strings. So - "d:\\testapp\\abc.exe" is really "d:\testapp\abc.exe". Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

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

  • How to create a vector?
    J Jijo Raj

    Hi deadlyabbas,

    const int ROW = 7; // Row
    const int COLUMN = 3; // Column

    // same as - double m_Value [7] [3]; initialized with 0.0
    // vector can be initialized by - vector<type>( size, DefaultValue );
    vector< vector<double> > m_Value( ROW, vector<double>( COLUMN, 0.0 ));

    Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    C / C++ / MFC graphics tutorial question

  • [Message Deleted]
    J Jijo Raj

    Hello, Have a look into case insensitive string[^] as well. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    C / C++ / MFC

  • String Problem
    J Jijo Raj

    Hi hraman, Remove the 'sort' style of your list box and everything will be alright. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    C / C++ / MFC help tutorial

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Mark Wallace wrote:

    There goes the job at Google...

    The Jon Skeet story. right? But I'll be pleased to have job at Mircosoft, if they offer one to take revenge. ;) Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Hi Navaneeth, Thanks a lot! I'm from South India. To be precise - Trivandrum, Kerala. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    RyanEK wrote:

    Congrats on your MVP. I enjoy reading your blog... it's quite refreshing Smile

    Ah! You like my blog. Thanks for those kind words! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks a lot Christian. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    bryce wrote:

    very good

    Thanks Bryce! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks Rutvik! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks Pete! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks David. Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks Pallini! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Hi Rajesh,

    Rajesh R Subramanian wrote:

    Keep the good work up.

    Thanks a lot!

    Rajesh R Subramanian wrote:

    I think now India has 5 Visual C++ MVPs!

    Indeed, we are now 5!

    Rajesh R Subramanian wrote:

    Send me an email and we will be in touch.

    Sure, i'll send a mail and add you to messenger.

    Rajesh R Subramanian wrote:

    We'll catch up at the South Asia MVP Summit at Microsoft IDC. It must be exciting to meet up with the IDC folks (VS team, especially).

    Yes. I'm looking forward...

    Rajesh R Subramanian wrote:

    Alok, you, me, Santosh, Nibu.

    BTW, Nibu and me sits in adjacent cubicles. We work together in same project since 2007. :-D Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Thanks Henry! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Deyan Georgiev wrote:

    With the great power comes great responsibility! Now you MUST givez me the codez!!! The Microsoft says so!

    :laugh:

    Deyan Georgiev wrote:

    P.S: Congratulations!

    Thanks Deyan! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture question

  • With God's grace - I'm Microsoft MVP for Visual C++
    J Jijo Raj

    Dear All, I just want to share my happiness with you all that with God's grace i've been awarded as Microsoft MVP for Visual C++ for 2009-2010. Please go through my MVP Profile[^]. Thanks you all for the support you have given me! And Carlo(CPallini), atlast your words[^] came true! And thanks David(Randor) for those kind words[^]! Once again, thanks CodeProject! Best Regards, Jijo.

    _____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.

    The Lounge c++ com architecture 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