I have converted VC6 project to .Net 2005 VC++.

It gives me warning :
warning C4717: 'CExcel::PrintL ine' : recursive on all control paths, function will cause runtime stack overflow

void CExcel::PrintLi ne( LPCSTR pchText )
{
PrintLine( _bstr_t( pchText ) );
}

void CExcel::Print( LPCSTR pchText )
{
Print( _bstr_t( pchText ) );
}

Above functions...