Recently I wanted to avoid that the infolog pops-up with several

'No Device'

How to solved "No Device" error message on client start with Dynamics AX 2009

error messages when opening the AX client with ConfigKey Telephony Integration enabled.

This error message is caused by the ActiveX component for the phone integration on form smmPhone which returns an error for each phone device which is offline.

I did the following code changes to prevent the error message:

AOT\Forms\smmPhone\Designs\Design\ActiveX:axPhone\Methods\onEvent_TapiError 

// AOSRunMode::Client
void onEvent_TapiError(int errorCode)
{
;
if(errorCode != -2147483582) // Added by Jimmy 2011-07-19 Avoid 'No Device' Error

error(
this.errorMsg(errorCode));
}

相关文章:

  • 2022-12-23
  • 2021-07-17
  • 2022-12-23
  • 2021-11-15
  • 2022-12-23
  • 2021-10-15
  • 2021-06-01
  • 2021-07-11
猜你喜欢
  • 2022-12-23
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2021-08-21
相关资源
相似解决方案