本文整理汇总了C++中ErrorMessageBox函数的典型用法代码示例。如果您正苦于以下问题:C++ ErrorMessageBox函数的具体用法?C++ ErrorMessageBox怎么用?C++ ErrorMessageBox使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了ErrorMessageBox函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: CoCreateInstance
// loads the demux into the FilterGraph
HRESULT
CBDAFilterGraph::LoadDemux()
{
HRESULT hr = S_OK;
hr = CoCreateInstance(
CLSID_MPEG2Demultiplexer,
NULL,
CLSCTX_INPROC_SERVER,
IID_IBaseFilter,
reinterpret_cast<void**>(&m_pDemux)
);
if (FAILED (hr))
{
ErrorMessageBox(TEXT("Could not CoCreateInstance CLSID_MPEG2Demultiplexer\n"));
return hr;
}
hr = m_pFilterGraph->AddFilter(m_pDemux, L"Demux");
if(FAILED(hr))
{
ErrorMessageBox(TEXT("Unable to add demux filter to graph\n"));
return hr;
}
return hr;
}
开发者ID:grakidov,项目名称:Render3D,代码行数:28,代码来源:graph.cpp
示例2: CArchiveScanner
bool FileSystemInitializer::Initialize()
{
if (initSuccess)
return true;
try {
Platform::SetOrigCWD();
dataDirLocater.LocateDataDirs();
dataDirLocater.Check();
archiveScanner = new CArchiveScanner();
vfsHandler = new CVFSHandler();
initSuccess = true;
} catch (const std::exception& ex) {
// abort VFS-init thread
initFailure = true;
// even if we end up here, do not clean up configHandler yet
// since it can already have early observers registered that
// do not remove themselves until exit
Cleanup(false);
ErrorMessageBox(ex.what(), "Spring: caught std::exception", MBF_OK | MBF_EXCL);
} catch (...) {
initFailure = true;
Cleanup(false);
ErrorMessageBox("", "Spring: caught generic exception", MBF_OK | MBF_EXCL);
}
return (initSuccess && !initFailure);
}
开发者ID:nixtux,项目名称:spring,代码行数:33,代码来源:FileSystemInitializer.cpp
示例3: ErrorMessageBox
void
CMainFrame::OnCmdResetDevice(DWORD dwSlotNo)
{
ndas::DevicePtr pDevice;
if (!ndas::FindDeviceBySlotNumber(pDevice, dwSlotNo))
{
return;
}
if (!pDevice->Enable(FALSE))
{
ErrorMessageBox(IDS_ERROR_RESET_DEVICE);
return;
}
::SetCursor(AtlLoadSysCursor(IDC_WAIT));
CSimpleWaitDlg().DoModal(m_hWnd, 2000);
::SetCursor(AtlLoadSysCursor(IDC_ARROW));
if (!pDevice->Enable(TRUE))
{
ErrorMessageBox(IDS_ERROR_RESET_DEVICE);
}
ndas::UpdateDeviceList();
}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:28,代码来源:mainframe.cpp
示例4: pTaskDialogVerify
void
CNdasDevicePropGeneralPage::OnModifyWriteKey(UINT, int, HWND)
{
ACCESS_MASK access = m_pDevice->GetGrantedAccess();
if (access & GENERIC_WRITE)
{
int response = pTaskDialogVerify(
m_hWnd,
IDS_REMOVE_WRITE_KEY_CONFIRM_TITLE,
IDS_REMOVE_WRITE_KEY_CONFIRM,
IDS_REMOVE_WRITE_KEY_CONFIRM_DESC,
_T("DontConfirmRemoveWriteKey"),
TDCBF_YES_BUTTON | TDCBF_NO_BUTTON,
IDNO,
IDYES);
if (IDYES == response)
{
BOOL fSuccess = m_pDevice->SetAsReadOnly();
if (!fSuccess)
{
ErrorMessageBox(m_hWnd, IDS_ERROR_REMOVE_WRITE_KEY);
}
else
{
_UpdateDeviceData();
}
}
}
else
{
CNdasDeviceAddWriteKeyDlg dlg;
dlg.SetDeviceId(m_pDevice->GetStringId());
dlg.SetDeviceName(m_pDevice->GetName());
INT_PTR iResult = dlg.DoModal();
ATLTRACE("iResult = %d\n", iResult);
if (iResult == IDOK)
{
BOOL fSuccess = m_pDevice->SetAsReadWrite(dlg.GetWriteKey());
if (!fSuccess)
{
ErrorMessageBox(m_hWnd, IDS_ERROR_ADD_WRITE_KEY);
}
else
{
_UpdateDeviceData();
}
}
else
{
;
}
}
}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:57,代码来源:ndasdevicepropgeneralpage.cpp
示例5: DIJoystick_EnumAxisObjectsProc
static int CALLBACK DIJoystick_EnumAxisObjectsProc(LPCDIDEVICEOBJECTINSTANCE lpddoi, LPVOID pvRef)
{
joystick_type* joystick = (joystick_type*)pvRef;
DIPROPRANGE diprg;
HRESULT hr;
joystick->axes[joystick->num_axes].guid = lpddoi->guidType;
joystick->axes[joystick->num_axes].name = (TCHAR *)malloc((_tcslen(lpddoi->tszName) + 1) * sizeof(TCHAR));
_tcscpy(joystick->axes[joystick->num_axes].name, lpddoi->tszName);
joystick->axes[joystick->num_axes].offset = lpddoi->dwOfs;
/*ErrorMessageBox("got axis %s, offset %i",lpddoi->tszName, lpddoi->dwOfs);*/
memset(&diprg, 0, sizeof(DIPROPRANGE));
diprg.diph.dwSize = sizeof(DIPROPRANGE);
diprg.diph.dwHeaderSize = sizeof(DIPROPHEADER);
diprg.diph.dwObj = lpddoi->dwOfs;
diprg.diph.dwHow = DIPH_BYOFFSET;
diprg.lMin = 0;
diprg.lMax = 255;
hr = IDirectInputDevice2_SetProperty(joystick->did, DIPROP_RANGE, &diprg.diph);
if (FAILED(hr)) /* if this fails, don't use this axis */
{
free(joystick->axes[joystick->num_axes].name);
joystick->axes[joystick->num_axes].name = NULL;
return DIENUM_CONTINUE;
}
#ifdef JOY_DEBUG
if (FAILED(hr))
{
ErrorMessageBox("DirectInput SetProperty() joystick axis %s failed - %s\n",
joystick->axes[joystick->num_axes].name,
DirectXDecodeError(hr));
}
#endif
/* Set axis dead zone to 0; we need accurate #'s for analog joystick reading. */
SetDIDwordProperty(joystick->did, DIPROP_DEADZONE, lpddoi->dwOfs, DIPH_BYOFFSET, 0);
#ifdef JOY_DEBUG
if (FAILED(hr))
{
ErrorMessageBox("DirectInput SetProperty() joystick axis %s dead zone failed - %s\n",
joystick->axes[joystick->num_axes].name,
DirectXDecodeError(hr));
}
#endif
joystick->num_axes++;
return DIENUM_CONTINUE;
}
开发者ID:Robbbert,项目名称:store1,代码行数:54,代码来源:dinputjoy.cpp
示例6: ErrorMessageBox
HRESULT
CBDAFilterGraph::ChangeChannel(
LONG lMajorChannel,
LONG lMinorChannel
)
{
HRESULT hr = S_OK;
m_lMajorChannel = lMajorChannel;
m_lMinorChannel = lMinorChannel;
CComPtr <IScanningTuner> pIScanningTuner;
if (!m_pNetworkProvider)
{
ErrorMessageBox(TEXT("The FilterGraph is not yet built.\n"));
return E_FAIL;
}
hr = m_pNetworkProvider.QueryInterface (&pIScanningTuner);
if (FAILED(hr))
{
ErrorMessageBox(TEXT("Cannot QI for IScanningTuner\n"));
return hr;
}
// create tune request
CComPtr <IATSCChannelTuneRequest> pTuneRequest;
hr = CreateATSCTuneRequest(
m_lPhysicalChannel,
lMajorChannel,
lMinorChannel,
&pTuneRequest
);
if(SUCCEEDED(hr))
{
hr = m_pITuner->put_TuneRequest (pTuneRequest);
if (FAILED (hr))
ErrorMessageBox(TEXT("Cannot submit tune request\n"));
}
else
{
ErrorMessageBox(TEXT("Cannot Change Channels\n"));
}
return hr;
}
开发者ID:grakidov,项目名称:Render3D,代码行数:48,代码来源:graph.cpp
示例7: error_code_messagebox
static void error_code_messagebox(HWND hwnd, DWORD error_code)
{
TCHAR title[256];
if (!LoadString(hInst, IDS_ERROR, title, COUNT_OF(title)))
lstrcpy(title, TEXT("Error"));
ErrorMessageBox(hwnd, title, error_code);
}
开发者ID:HBelusca,项目名称:NasuTek-Odyssey,代码行数:7,代码来源:edit.c
示例8: MainFunc
void MainFunc(int argc, char** argv, int* ret) {
#ifdef __MINGW32__
// For the MinGW backtrace() implementation we need to know the stack end.
{
extern void* stack_end;
char here;
stack_end = (void*) &here;
}
#endif
while (!Threading::IsMainThread())
;
#ifdef USE_GML
set_threadnum(GML_DRAW_THREAD_NUM);
#if GML_ENABLE_TLS_CHECK
if (gmlThreadNumber != GML_DRAW_THREAD_NUM) {
ErrorMessageBox("Thread Local Storage test failed", "GML error:", MBF_OK | MBF_EXCL);
}
#endif
#endif
try {
SpringApp app;
*ret = app.Run(argc, argv);
} CATCH_SPRING_ERRORS
}
开发者ID:niavok,项目名称:spring,代码行数:27,代码来源:Main.cpp
示例9: ATLASSERT
void
CDeviceAdvancedPage::OnDeactivateDevice(UINT uCode, int nCtrlID, HWND hwndCtrl)
{
ATLASSERT(NULL != m_pDevice.get());
CString strMessage = (LPCTSTR) IDS_CONFIRM_DEACTIVATE_DEVICE;
CString strTitle = (LPCTSTR) IDS_MAIN_TITLE;
ATLASSERT(!strMessage.IsEmpty());
ATLASSERT(!strTitle.IsEmpty());
INT_PTR iResponse = MessageBox(
strMessage,
strTitle,
MB_YESNO | MB_ICONQUESTION);
if (IDYES != iResponse)
{
return;
}
if (!m_pDevice->Enable(FALSE))
{
ErrorMessageBox(m_hWnd, IDS_ERROR_DISABLE_DEVICE);
}
m_wndDeactivate.EnableWindow(FALSE);
m_wndReset.EnableWindow(FALSE);
}
开发者ID:tigtigtig,项目名称:ndas4windows,代码行数:29,代码来源:devpropsh.cpp
示例10: VERIFY
LPBYTE CBZDoc::QueryMapView1(LPBYTE pBegin, DWORD dwOffset)
{
LPBYTE p = pBegin + dwOffset;
if(IsOutOfMap1(p)) {
if(p == m_pData + m_dwTotal && p == m_pMapStart + m_dwMapSize) return pBegin; // ###1.61a
DWORD dwBegin = pBegin - m_pData;
VERIFY(::UnmapViewOfFile(m_pMapStart));
m_dwFileOffset = (p - m_pData) & FILEOFFSET_MASK;
m_dwMapSize = min(options.dwMaxMapSize, m_dwTotal - m_dwFileOffset);
if(m_dwMapSize == 0) { // ###1.61a
m_dwFileOffset = (m_dwTotal - (~FILEOFFSET_MASK + 1)) & FILEOFFSET_MASK;
m_dwMapSize = m_dwTotal - m_dwFileOffset;
}
m_pMapStart = (LPBYTE)::MapViewOfFile(m_hMapping, m_bReadOnly ? FILE_MAP_READ : FILE_MAP_WRITE, 0, m_dwFileOffset, m_dwMapSize);
TRACE("MapViewOfFile Doc=%X, %X, Offset:%X, Size:%X\n", this, m_pMapStart, m_dwFileOffset, m_dwMapSize);
if(!m_pMapStart) {
ErrorMessageBox();
AfxPostQuitMessage(0);
return NULL;
}
m_pData = m_pMapStart - m_dwFileOffset;
pBegin = m_pData + dwBegin;
}
return pBegin;
}
开发者ID:tnzk,项目名称:bz,代码行数:25,代码来源:BZDoc.cpp
示例11: NewHandler
void NewHandler() {
LOG_L(L_ERROR, "Failed to allocate memory"); // make sure this ends up in the log also
OutputStacktrace();
ErrorMessageBox("Failed to allocate memory", "Spring: Fatal Error", MBF_OK | MBF_CRASH);
}
开发者ID:304471720,项目名称:spring,代码行数:7,代码来源:CrashHandler.cpp
示例12: ATLASSERT
void
CNdasDevicePropAdvancedPage::OnDeactivateDevice(UINT uCode, int nCtrlID, HWND hwndCtrl)
{
ATLASSERT(NULL != m_pDevice.get());
int response = AtlTaskDialogEx(
m_hWnd,
IDS_MAIN_TITLE,
IDS_CONFIRM_DEACTIVATE_DEVICE,
IDS_CONFIRM_DEACTIVATE_DEVICE_DESC,
TDCBF_YES_BUTTON | TDCBF_NO_BUTTON,
TD_INFORMATION_ICON);
if (IDYES != response)
{
return;
}
if (!m_pDevice->Enable(FALSE))
{
ErrorMessageBox(m_hWnd, IDS_ERROR_DISABLE_DEVICE);
}
m_wndDeactivate.EnableWindow(FALSE);
m_wndReset.EnableWindow(FALSE);
}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:26,代码来源:ndasdevicepropadvancedpage.cpp
示例13: ErrorMessageBox
void EAE_Engine::Tools::OutputErrorMessage( const char* const i_errorMessage, const char* const i_optionalFileName )
{
// This formatting causes the errors to show up in Visual Studio's "Error List" tab
std::cerr << ( i_optionalFileName ? i_optionalFileName : "Asset Build" ) << ": error: " << i_errorMessage << "\n";
ErrorMessageBox(i_errorMessage);
// DEBUG_PRINT("For file %s, Asset Build: error: %s\n", i_optionalFileName, i_errorMessage);
}
开发者ID:leonpardlee,项目名称:CDEngine,代码行数:7,代码来源:UtilityFunctions.cpp
示例14: main
/**
* @brief main
* @return exit code
* @param argc argument count
* @param argv array of argument strings
*
* Main entry point function
*/
int main(int argc, char* argv[])
{
// PROFILE builds exit on execv ...
// HEADLESS run mostly in parallel for testing purposes, 100% omp threads wouldn't help then
#if !defined(PROFILE) && !defined(HEADLESS)
bool restart = false;
restart |= SetNvOptimusProfile(argv);
restart |= SetOpenMpEnvVars(argv);
#ifndef WIN32
if (restart) {
std::vector<std::string> args(argc-1);
for (int i=1; i<argc; i++) {
args[i-1] = argv[i];
}
const std::string err = Platform::ExecuteProcess(argv[0], args);
ErrorMessageBox(err, "Execv error:", MBF_OK | MBF_EXCL);
}
#endif
#endif
int ret = Run(argc, argv);
std::string exe = EngineTypeHandler::GetRestartExecutable();
if (exe != "") {
std::vector<std::string> args;
for (int i=1; i<argc; i++)
args.push_back(argv[i]);
if (!EngineTypeHandler::RestartEngine(exe, args)) {
handleerror(NULL, EngineTypeHandler::GetRestartErrorMessage(), "Missing engine type", MBF_OK | MBF_EXCL);
}
}
return ret;
}
开发者ID:AlexDiede,项目名称:spring,代码行数:40,代码来源:Main.cpp
示例15: UnloadHive
static BOOL UnloadHive(HWND hWnd)
{
WCHAR Caption[128];
LPCWSTR pszKeyPath;
HKEY hRootKey;
LONG regUnloadResult;
/* get the item key to unload */
pszKeyPath = GetItemPath(g_pChildWnd->hTreeWnd, 0, &hRootKey);
/* load and set the caption and flags for dialog */
LoadStringW(hInst, IDS_UNLOAD_HIVE, Caption, COUNT_OF(Caption));
/* Enable the 'restore' privilege, unload the hive, disable the privilege */
EnablePrivilege(SE_RESTORE_NAME, NULL, TRUE);
regUnloadResult = RegUnLoadKeyW(hRootKey, pszKeyPath);
EnablePrivilege(SE_RESTORE_NAME, NULL, FALSE);
if(regUnloadResult == ERROR_SUCCESS)
{
/* refresh tree and list views */
RefreshTreeView(g_pChildWnd->hTreeWnd);
pszKeyPath = GetItemPath(g_pChildWnd->hTreeWnd, 0, &hRootKey);
RefreshListView(g_pChildWnd->hListWnd, hRootKey, pszKeyPath);
}
else
{
ErrorMessageBox(hWnd, Caption, regUnloadResult);
return FALSE;
}
return TRUE;
}
开发者ID:hoangduit,项目名称:reactos,代码行数:31,代码来源:framewnd.c
示例16: ErrorMessageBox
void
CNdasDevicePropGeneralPage::OnRename(UINT, int, HWND)
{
CNdasDeviceRenameDlg wndRename;
wndRename.SetName(m_pDevice->GetName());
INT_PTR iResult = wndRename.DoModal();
if (IDOK == iResult)
{
CString strNewName = wndRename.GetName();
if (0 != strNewName.Compare(m_pDevice->GetName()))
{
if (!m_pDevice->SetName(strNewName))
{
ErrorMessageBox(m_hWnd, IDS_ERROR_RENAME_DEVICE);
}
else
{
m_wndDeviceName.SetWindowText(strNewName);
CString strTitle;
strTitle.FormatMessage(IDS_DEVICE_PROP_TITLE, strNewName);
GetParent().SetWindowText(strTitle);
_UpdateDeviceData();
}
}
}
}
开发者ID:Nevermore2015,项目名称:ndas4windows,代码行数:28,代码来源:ndasdevicepropgeneralpage.cpp
示例17: Run
int Run(int argc, char* argv[])
{
int ret = -1;
#ifdef __MINGW32__
// For the MinGW backtrace() implementation we need to know the stack end.
{
extern void* stack_end;
char here;
stack_end = (void*) &here;
}
#endif
Threading::DetectCores();
Threading::SetMainThread();
// run
try {
SpringApp app(argc, argv);
ret = app.Run();
} CATCH_SPRING_ERRORS
// check if (a thread in) Spring crashed, if so display an error message
Threading::Error* err = Threading::GetThreadError();
if (err != NULL) {
ErrorMessageBox(" error: " + err->message, err->caption, err->flags, true);
}
return ret;
}
开发者ID:Liuyangbiao,项目名称:spring,代码行数:31,代码来源:Main.cpp
示例18: DoExchangeItem
// Returns true if successful
static int DoExchangeItem(HWND hFrom, HWND hTo, int nMinItem)
{
LVITEM lvi;
wchar_t buf[80];
lvi.iItem = ListView_GetNextItem(hFrom, -1, LVIS_SELECTED | LVIS_FOCUSED);
if (lvi.iItem < nMinItem)
{
if (lvi.iItem != -1) // Can't remove the first column
ErrorMessageBox("Cannot move selected item");
SetFocus(hFrom);
return 0;
}
lvi.iSubItem = 0;
lvi.mask = LVIF_PARAM | LVIF_TEXT;
lvi.pszText = buf;
lvi.cchTextMax = WINUI_ARRAY_LENGTH(buf);
if (ListView_GetItem(hFrom, &lvi))
{
// Add this item to the Show and delete it from Available
(void)ListView_DeleteItem(hFrom, lvi.iItem);
lvi.iItem = ListView_GetItemCount(hTo);
(void)ListView_InsertItem(hTo, &lvi);
ListView_SetItemState(hTo, lvi.iItem, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED);
SetFocus(hTo);
return lvi.iItem;
}
return 0;
}
开发者ID:Robbbert,项目名称:store1,代码行数:35,代码来源:columnedit.cpp
示例19: ATLTRACE
void
CMainFrame::OnCmdMountDeviceRO(NDAS_LOGICALDEVICE_ID logDeviceId)
{
ndas::LogicalDevicePtr pLogDevice;
if (!ndas::FindLogicalDevice(pLogDevice, logDeviceId))
{
ATLTRACE("Invalid logical device id specified: %d\n", logDeviceId);
return;
}
if (!pLogDevice->PlugIn(FALSE))
{
ErrorMessageBox(IDS_ERROR_MOUNT_DEVICE_RO);
return;
}
if (!pLogDevice->UpdateStatus())
{
// Service Communication failure?
return;
}
if (NDAS_LOGICALDEVICE_STATUS_MOUNT_PENDING == pLogDevice->GetStatus())
{
CWaitMountDialog().DoModal(m_hWnd, pLogDevice);
}
}
开发者ID:JanD1943,项目名称:ndas4windows,代码行数:26,代码来源:mainframe.cpp
示例20: UnloadHive
static BOOL UnloadHive(HWND hWnd)
{
TCHAR Caption[128];
LPCTSTR pszKeyPath;
HKEY hRootKey;
LONG regUnloadResult;
/* get the item key to unload */
pszKeyPath = GetItemPath(g_pChildWnd->hTreeWnd, 0, &hRootKey);
/* load and set the caption and flags for dialog */
LoadString(hInst, IDS_UNLOAD_HIVE, Caption, COUNT_OF(Caption));
/* now unload the hive */
regUnloadResult = RegUnLoadKey(hRootKey, pszKeyPath);
if(regUnloadResult == ERROR_SUCCESS)
{
/* refresh tree and list views */
RefreshTreeView(g_pChildWnd->hTreeWnd);
pszKeyPath = GetItemPath(g_pChildWnd->hTreeWnd, 0, &hRootKey);
RefreshListView(g_pChildWnd->hListWnd, hRootKey, pszKeyPath);
}
else
{
ErrorMessageBox(hWnd, Caption, regUnloadResult);
return FALSE;
}
return TRUE;
}
开发者ID:HBelusca,项目名称:NasuTek-Odyssey,代码行数:27,代码来源:framewnd.c
注:本文中的ErrorMessageBox函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论