本文整理匯總了C++中XString::GetLength方法的典型用法代碼示例。如果您正苦於以下問題:C++ XString::GetLength方法的具體用法?C++ XString::GetLength怎麽用?C++ XString::GetLength使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XString
的用法示例。
在下文中一共展示了XString::GetLength方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: SaveFile
BOOL MyAppWindow :: SaveFile( void )
{
XFile savefile;
XString s;
mle->GetText( &s );
/* now open the file, create a new one if the given filename is not existing, otherwise overwrite */
/* it. open the file for write-access, dont allow any other programm to use the file while it is open*/
if( savefile.Open( path, XFILE_CREATE_IF_NEW | XFILE_REPLACE_EXISTING, XFILE_SHARE_DENYNONE | XFILE_WRITEONLY, s.GetLength()) == 0)
{
/* set the file-cursor to the beginning of the file */
savefile.Seek( 0, FILE_BEGIN);
/*save the string */
savefile.Write ( (char*) s, s.GetLength());
/* close the file */
savefile.Close();
saved = TRUE;
return TRUE;
}
else
{
XMessageBox( "could not open file", "error", MB_OK| MB_ERROR);
return FALSE;
}
}