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;.
Coder Block
Posts
-
intialisation of charecter array -
intialisation of charecter arrayhi guys, If i create one character array of some size like, char* TempArray[10]; how do i intialise it???
-
Details regarding insertion of wide characters into a sqlite3 database programaticallyyou may reffer this article on Accessing a SQLite Database with C++[^]
-
How to Load Image from Toolbar BMP resources for MenuItem icons ?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()); -
How to Load Image from Toolbar BMP resources for MenuItem icons ?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.
-
How to resize tab controls in mfc.?I am not sure what you really want but u can use
MoveWindow()
Function . Moves,resize window as per co-ordinate. :)
-
How to set values in CPageSetupDialog?As usual declare all this in .h file of CPageSetupDialog..
-
How to set values in CPageSetupDialog?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..
} -
Converting big integer value to stringHi 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??. .
-
Adding atl support to existing mfc applicationHi 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
-
Executing two project side by sideThanks 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
-
Executing two project side by sideHi 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