Relative Content

Tag Archive for c++mfc

Outlook is not opening in another system, implemented in C++, MFC framework

I am working on a project, in this project I am add a feature, if I click on a button then it will open the outlook and send a file to another user. in my system the build is working fine, version of the outlook is 2010.
In another system the feature is not working. if he clicked on the button then an error message is coming
it saying: NO Such interface supported. in his system version of the outlook is 2021.

Outlook is not opening in another system, implemented in C++, MFC framework

I am working on a project, in this project I am add a feature, if I click on a button then it will open the outlook and send a file to another user. in my system the build is working fine, version of the outlook is 2010.
In another system the feature is not working. if he clicked on the button then an error message is coming
it saying: NO Such interface supported. in his system version of the outlook is 2021.

Outlook is not opening in another system, implemented in C++, MFC framework

I am working on a project, in this project I am add a feature, if I click on a button then it will open the outlook and send a file to another user. in my system the build is working fine, version of the outlook is 2010.
In another system the feature is not working. if he clicked on the button then an error message is coming
it saying: NO Such interface supported. in his system version of the outlook is 2021.

Outlook is not opening in another system, implemented in C++, MFC framework

I am working on a project, in this project I am add a feature, if I click on a button then it will open the outlook and send a file to another user. in my system the build is working fine, version of the outlook is 2010.
In another system the feature is not working. if he clicked on the button then an error message is coming
it saying: NO Such interface supported. in his system version of the outlook is 2021.

Outlook is not opening in another system, implemented in C++, MFC farmwork

I am working on a project, in this project I am add a feature, if I click on a button then it will open the outlook and send a file to another user. in my system the build is working fine, version of the outlook is 2010.
In another system the feature is not working. if he clicked on the button then an error message is coming
it saying: NO Such interface supported. in his system version of the outlook is 2021.

MFC worker Thread Synchronisation

I’m using MFC threading:
both main thread and worker thread are using the same function ReceiveResponse().
and I change myMaster->configDone so that the worker thread executes different work based on myMaster->configDone value.
the problem is that I may change myMaster->configDone value in my main thread, but the worker thread sometimes would receive data even when the myMaster->configDone != tComSts::COM_CFG_DONE. in my opinion because it hasnt finish the loop before that the main thread changed the value of myMaster->configDone.
what should I do in this case please?