Click here to Skip to main content
15,919,358 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Animation in MFC Pin
Ryan Binns10-Feb-05 12:37
Ryan Binns10-Feb-05 12:37 
GeneralRe: Animation in MFC Pin
Member 148449610-Feb-05 18:26
Member 148449610-Feb-05 18:26 
GeneralPlease HELP Pin
Rassul Yunussov8-Feb-05 0:39
Rassul Yunussov8-Feb-05 0:39 
GeneralRe: Please HELP Pin
2249178-Feb-05 0:52
2249178-Feb-05 0:52 
GeneralRe: Please HELP Pin
Rassul Yunussov8-Feb-05 1:39
Rassul Yunussov8-Feb-05 1:39 
GeneralRe: Please HELP Pin
2249178-Feb-05 17:03
2249178-Feb-05 17:03 
GeneralRe: Please HELP Pin
Rassul Yunussov8-Feb-05 18:24
Rassul Yunussov8-Feb-05 18:24 
GeneralRe: Please HELP Pin
Rassul Yunussov8-Feb-05 1:42
Rassul Yunussov8-Feb-05 1:42 
And Here Is The Way I Call It:
IMTServerPtr pServer(CLSID_MTServer);
		CString str;
		BSTR bstring;
		for(int i = 0 ;i<10;i++)
		{
			bstring = pServer->GetAgentCode();
			str = (CString)bstring;
			SysFreeString(bstring);
		}
		CFileDialog dlg(TRUE,0,"*.xml",OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,"XML Files");
		if(dlg.DoModal()==IDOK)
		{
			for(int i = 0;i<20;i++)
			{
			
			BSTR bstr = dlg.GetPathName().AllocSysString();
			pServer->ExportAgents(bstr);
			//p->ExportAgents(bstr);
			SysFreeString(bstr);
			}
		}
		if(dlg.DoModal()==IDOK)
		{
			for(int i = 0;i<20;i++)
			{
			BSTR bstr = dlg.GetPathName().AllocSysString();
			//p->ExportNomen(bstr);
			pServer->ExportNomen(bstr);
			SysFreeString(bstr);
			}
		}
		str = "C:\\";
		bstring = str.AllocSysString();
		//p->ImportNaklad(bstring);
		for(int i = 0;i<20;i++)
		{
			pServer->ImportNaklad(bstring);
			pServer->ClearHistory();
		}
		SysFreeString(bstring);
		bstring = pServer->GetAgentCode();
		str = (CString)bstring;
		AfxMessageBox(str);

GeneralLocale Problem........... Pin
nutkase8-Feb-05 0:03
nutkase8-Feb-05 0:03 
GeneralRe: Locale Problem........... Pin
David Crow8-Feb-05 2:55
David Crow8-Feb-05 2:55 
Generalencryption and decryption in vc++ Pin
shaans7-Feb-05 23:20
shaans7-Feb-05 23:20 
GeneralRe: encryption and decryption in vc++ Pin
shiraztk8-Feb-05 0:15
shiraztk8-Feb-05 0:15 
GeneralRe: encryption and decryption in vc++ Pin
namaskaaram8-Feb-05 0:58
namaskaaram8-Feb-05 0:58 
QuestionHow to define size for CTreeView's branches Pin
bilas7-Feb-05 23:14
bilas7-Feb-05 23:14 
AnswerRe: How to define size for CTreeView's branches Pin
Fred D.8-Feb-05 0:05
Fred D.8-Feb-05 0:05 
GeneralRe: How to define size for CTreeView's branches Pin
bilas8-Feb-05 3:55
bilas8-Feb-05 3:55 
Questionhow power point slids integrate with vc++ MFC diloge? Pin
syed abbdul qavi7-Feb-05 23:11
syed abbdul qavi7-Feb-05 23:11 
AnswerRe: how power point slids integrate with vc++ MFC diloge? Pin
David Crow8-Feb-05 2:56
David Crow8-Feb-05 2:56 
GeneralHitting allmenu items of an launched application Pin
Vaibhav Sanghavi7-Feb-05 23:03
Vaibhav Sanghavi7-Feb-05 23:03 
QuestionHow to find that Machine is on LAN Pin
RuchirD7-Feb-05 22:19
RuchirD7-Feb-05 22:19 
AnswerRe: How to find that Machine is on LAN Pin
2249177-Feb-05 22:29
2249177-Feb-05 22:29 
GeneralRe: How to find that Machine is on LAN Pin
RuchirD8-Feb-05 17:11
RuchirD8-Feb-05 17:11 
GeneralToolTip in ATL Pin
mc.george7-Feb-05 22:10
mc.george7-Feb-05 22:10 
GeneralDisplay Full Item Text in CListCtrl Pin
aruc7-Feb-05 20:15
aruc7-Feb-05 20:15 
GeneralRe: Display Full Item Text in CListCtrl Pin
David Crow8-Feb-05 2:58
David Crow8-Feb-05 2:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.