Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown
Asked Answered
S

2

8

I am getting an error in my simple project.

This is my code:

if (axZKFPEngX1.InitEngine() == 0) {
    label1.Text = "Connected";
}
else {
    label1.Text = "Connection Failed";
}

I already added reference composites AxInterop.ZKFPEngXControl and Interop.ZKFPEngXControl.

While debugging, I click the button, and a warning appears:

InvalidActiveXStateException was handled.

"Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown"**

Soulful answered 30/8, 2011 at 8:26 Comment(0)
G
23

try to call CreateControl() from your component first.

Glazunov answered 14/10, 2011 at 15:42 Comment(0)
M
1

The answer by Constantin is Fulfill your requirement but here I wanted to add one more thing with it. If you wanted to reflected this changes via all the threads and not only by calling thread (in multiple thread scenario) then use

CreateControl();
InitWB();
SkinAllThreads();

Actually in multiple threading scenario if your skinning code is in one of the thread then may be it is not reflect change for other current thread so at that time this code is play important role in it.

Here is some Documents I mention kindly go through it for reference :

  1. initwb() method
  2. DirectSkin other Methods
  3. Adding Direct Skin to Application
Mekka answered 30/9, 2014 at 12:26 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.