Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

OnReloadFailedEventHandler

HI guys,

I want to capture the error message while reloading a Document.

Here is my code.

m_qv = new AxQlikOCXLib.AxQlikOCX();

m_qv.OnReloadFailed += new AxQlikOCXLib._DQlikOCXEvents_OnReloadFailedEventHandler(m_qv_OnReloadFailed);

void m_qv_OnReloadFailed(object sender, AxQlikOCXLib._DQlikOCXEvents_OnReloadFailedEvent e)

  {

           

            log.Error("QV Error: " + e.msg);

           

            e.result = 1

   }

But it does not work. even though i have errors in reloading.

Any suggestions?

Saurabh

0 Replies