Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sschantz

  1. sschantz

    Retrieving all GL accounts from GP?

    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.
  2. sschantz

    How to use DumpElements

    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...
  3. sschantz

    How to use DumpElements

    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 &quot;StdAfx.h&quot; #include...
  4. sschantz

    How to use DumpElements

    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.
  5. sschantz

    How to use DumpElements

    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 &quot;StdAfx.h&quot...
  6. sschantz

    How to use DumpElements

    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...
  7. sschantz

    CloneNode not working

    Thank you This is working.
  8. sschantz

    CloneNode not working

    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){...
  9. sschantz

    Group By Week (I'm a Newbie)

    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...

Part and Inventory Search

Back
Top