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
C

Coder Block

@Coder Block
About
Posts
12
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • intialisation of charecter array
    C Coder Block

    nop i need array of charecter pointer?? not normal pointer above example that you have given is normal character string i need array of characters string. And i will change my sign;.

    C / C++ / MFC question data-structures

  • intialisation of charecter array
    C Coder Block

    hi guys, If i create one character array of some size like, char* TempArray[10]; how do i intialise it???

    C / C++ / MFC question data-structures

  • Details regarding insertion of wide characters into a sqlite3 database programatically
    C Coder Block

    you may reffer this article on Accessing a SQLite Database with C++[^]

    C / C++ / MFC database sqlite help

  • How to Load Image from Toolbar BMP resources for MenuItem icons ?
    C Coder Block

    why are you not trying this??

    CImage image;
    image.Load(_T("C:\\image.png")); // just change extension to load jpg
    CBitmap bitmap;
    bitmap.Attach(image.Detach());

    C / C++ / MFC question graphics help tutorial

  • How to Load Image from Toolbar BMP resources for MenuItem icons ?
    C Coder Block

    Basically, MFC is quit strong to handle all this things enternally, you only need to do is that give same ID to toolbar and menubar item. Like, If you have PQR.bmp on ID_CLICK_ME toolbar then give ID_CLICK_ME to menu bar item so it directly taken POR.bmp as menubar bitmap.

    C / C++ / MFC question graphics help tutorial

  • How to resize tab controls in mfc.?
    C Coder Block

    I am not sure what you really want but u can use

    MoveWindow()

    Function . Moves,resize window as per co-ordinate. :)

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

  • How to set values in CPageSetupDialog?
    C Coder Block

    As usual declare all this in .h file of CPageSetupDialog..

    C / C++ / MFC question tutorial

  • How to set values in CPageSetupDialog?
    C Coder Block

    may be this help u... :) u may have dialog class like,

    CPageSetupDialog abc;
    //Conding to set values.
    abc.papersize = 10;
    abc.sorce = "ACC";
    abc.margin = 44;
    //ETC.
    //And then modal it..Like,
    if(abc.DoModal() == IKOK)
    {
    //Success;
    }else
    {
    //Fail..
    }

    C / C++ / MFC question tutorial

  • Converting big integer value to string
    C Coder Block

    Hi All, I want convert BIG integer value to string for that i used _strtoi64 that convert values still 9,223,372,036,854,775,807 but for big value greated than "9,223,372,036,854,775,807" it gives wrong value have i convert greated than "9,223,372,036,854,775,807" value to string??. .

    C / C++ / MFC question

  • Adding atl support to existing mfc application
    C Coder Block

    Hi All, I want implement MFC Docking Framework[^] in my existing mfc application i have take same trial but it gives me assertion like before execution of my project. in output window a text appears Like, "Performing registration" and after that came below assertion File: c:\program files\microsoft visual studio.net 2003\vc7\atlmfc\include\atlbase.h Line: 2619 Expression: _pAtlModule == 0

    ATL / WTL / STL csharp c++ visual-studio com

  • Executing two project side by side
    C Coder Block

    Thanks for reply becouse for lots of trial i get first reply now my problem is strait forward i have two application on depend on another like i have mfc application for user selection to generate some data to create .cpp file now this .cpp file used by WIN32 API project to create a Win32 api exe my second project. my concern only with win32 exe not with MFC exe so i want to execute win32 exe after mfc application selection complete

    C / C++ / MFC c++ json

  • Executing two project side by side
    C Coder Block

    Hi All, I have two project one in mfc and othe in Win32 from MFC project i create on .cpp file that used in win32 API application so i want to execute MFC application first and on the click of OK i want to execute WIN32 API application

    C / C++ / MFC c++ json
  • Login

  • Don't have an account? Register

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