Click here to Skip to main content
15,895,142 members
Articles / Programming Languages / C++

ECG for Windows XP (Export data to TXT files)

Rate me:
Please Sign up or sign in to vote.
3.67/5 (13 votes)
1 Sep 20045 min read 95.7K   6.1K   40  
This is ECG_1.1 project version. Now the program can save medical records in to TXT files and can run on Windows XP.
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++

// NOTE: Do not modify the contents of this file.  If this class is regenerated by
//  Microsoft Visual C++, your modifications will be overwritten.


#include "stdafx.h"
#include "testocx.h"

/////////////////////////////////////////////////////////////////////////////
// CTestOCX

IMPLEMENT_DYNCREATE(CTestOCX, CWnd)

/////////////////////////////////////////////////////////////////////////////
// CTestOCX properties

/////////////////////////////////////////////////////////////////////////////
// CTestOCX operations

short CTestOCX::GetFill(short color)
{
	short result;
	static BYTE parms[] =
		VTS_I2;
	InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, parms,
		color);
	return result;
}

void CTestOCX::SetFill(short color, short nNewValue)
{
	static BYTE parms[] =
		VTS_I2 VTS_I2;
	InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
		 color, nNewValue);
}

void CTestOCX::SetArr(double* Dest)
{
	static BYTE parms[] =
		VTS_PR8;
	InvokeHelper(0x1, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
		 Dest);
}

void CTestOCX::AboutBox()
{
	InvokeHelper(0xfffffdd8, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Systems Engineer
Bulgaria Bulgaria
PhD, Cum Laude in digital automation systems
M.S. in Telemommunication management
B.S. in Telecommunication systems engineering
Programming: CUDA, C/C++, VHDL
Software and Hardware development and consulting:
data acquisition, image processing, medical instrumentation

Comments and Discussions