Hi,
I have begun to play with eConnect com interface to do integration with GP. I need to query GP for all the GL Accounts. I seem not be able to figure out how to do it with the XML interface. Is it possible or must I use store proc to do it?
Thank you.
Here is a reply I got from the microsoft.public.vc.mfc that seem to correct my problem.
Hello Sascha,
Sorry for the late response. Now I'd like to share the following
information with you:
I noticed that you implement DumpElements<CString> and DumpElements<int>
methods in MyClass1.cpp...
here is the complete listing of MyClass 1 & 2
//MyClass1.h
#pragma once
#include <afxtempl.h>
class CMyClass1
{
public:
CMyClass1(void);
virtual ~CMyClass1(void);
protected:
CMap<int,int,CString,CString> m_myMap1;
};
//MyClass1.cpp
#include "StdAfx.h"
#include...
You are correct for the includes.
No in MYClass2 there is no definition of the DumpElements function. I tried to put the CMyClass1 into a namespace, it did not change anything.
HI, I am maybe missing something here…
Here is an example of my problem
//MyClass1.h
#pragma once
#include <afxtempl.h>
class CMyClass1
{
public:
CMyClass1(void);
virtual ~CMyClass1(void);
protected:
CMap<int,int,CString,CString> m_myMap1;
};
//MyClass1.cpp
#include "StdAfx.h"...
Hi,
I try to use the DumpElements function to dump specific
information from a CMap declared in has a member of a Class. If I define the Dump function
has follow in CPP:
template <> void AFXAPI DumpElements<CString>
(CDumpContext& dc, const CString* pElements, INT_PTR
nCount)
{
. do...
HI,
I am using VC++ 6.0 and MSXML 4.0. I am trying to copy the node matching a
XPATH from one DOMDocument to an other document.
CXMLDOMNodeList itemList = xmlDOMSrc.SelectNodes(sXPath);
for (int i=0; i< itemList.GetLength(); i++) {
itemNode = itemList.NextNode();
if(itemNode){...
I'm having a similar problem using CR8.5.
I'm using the weekly break frequency (in the group dlg) to group some data by week. This is working fine. The problem is that some customer do not use Sunday has first day of week. Is there some function to use tell CR the global variable that I can set...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.