Click here to Skip to main content
15,893,668 members
Articles / Desktop Programming / MFC

Float and datetime to Vietnamese textual

Rate me:
Please Sign up or sign in to vote.
4.40/5 (6 votes)
4 Aug 2002CPOL1 min read 65.8K   921   10  
A DLL to convert Float and datetime to Vietnamese textual string
/////////////////////////////////////////////////////////////////////////////
// SonJFalconNumE.h
//
// Date:        Monday, May 14, 2002
// Author:      Nguyen Luong Son
//
// Description: A class to generate English textual 
//				description of interger
//
// CopyRight(c) Nguyen Luong Son FVL 2002
// Email:		nlson@fujitsu.com.vn						
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SONJFANCOLNUME_H__F8D0C6F4_A17F_4E50_98C6_4BE4BDB66E17__INCLUDED_)
#define AFX_SONJFANCOLNUME_H__F8D0C6F4_A17F_4E50_98C6_4BE4BDB66E17__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CSonJFancolNumE  
{
public:
	static char * OrdinalE(char * numstr, char * g_num);
	static char * CardinalE(char *numstr, char *g_num);
	CSonJFancolNumE();
	virtual ~CSonJFancolNumE();

};

#endif // !defined(AFX_SONJFANCOLNUME_H__F8D0C6F4_A17F_4E50_98C6_4BE4BDB66E17__INCLUDED_)

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions