Casio DT-X7 Series Software Manual page 35

Hide thumbs Also See for DT-X7 Series:
Table of Contents

Advertisement

Sample Program
HANDLE hFile;
WIN32_FIND_DATA FileFindData;
hFile = FindFirstFile(TEXT("\\Windows\\mshtml.dll"), &FileFindData);
if(hFile == INVALID_HANDLE_VALUE)
{
// The IE module is not loaded.
MessageBox(NULL, TEXT("FindFile ERROR!"), TEXT("LoadModule"), MB_OK);
}
else
{
// The IE module is loaded.
MessageBox(NULL, TEXT("Find a file!"), TEXT("LoadModule"), MB_OK);
}
35

Advertisement

Table of Contents
loading

Table of Contents