COMException error

C

Chris Clement

I added a mask COM control to my app and now some computers are getting a
"Class not registered" COMException while others are not. I have verified
that they all have the DLLs on the same directory. Any idea what could be
causing this? Thanks.

Here is the detailed error:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80040154): Class not
registered
at System.Windows.Forms.AxHost.CreateInstance()
at System.Windows.Forms.AxHost.GetOcxCreate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.AxHost.EndInit()
at salesProposal.VerifoneProposal.InitializeComponent()
at salesProposal.VerifoneProposal..ctor(Int64 intProposalID)
at salesProposal.DataBrowser.menuItemVerifoneProposal_Click(Object
sender, EventArgs e)
at System.Windows.Forms.MenuItem.OnClick(EventArgs e)
at System.Windows.Forms.MenuItemData.Execute()
at System.Windows.Forms.Command.Invoke()
at System.Windows.Forms.Control.WmCommand(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
salesProposal
Assembly Version: 1.0.1.0
Win32 Version: 1.0.1.0
CodeBase: file:///C:/Program%20Files/program/program.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Web.Services
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Xml
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Web
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dll
----------------------------------------
pwk8uuyx
Assembly Version: 0.0.0.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Data
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
rq7zqfds
Assembly Version: 0.0.0.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
 
N

Nicholas Paldino [.NET/C# MVP]

Chris,

When you create assemblies for interop, you not only have to make sure
that the interop assemblies are shipped, but that the COM component that it
references is properly installed on the machine. In this case, you have to
make sure each machine has the masked edit control installed as well.

Hope this helps.
 
C

Chris Clement

Nicholas,

Thanks for the reply. Unfortunately, I don't know much about COM
components. Can you give me a tip as to how I can install the masked edit
control? All I have are the DLLs.

Thanks for your help.

Chris


Nicholas Paldino said:
Chris,

When you create assemblies for interop, you not only have to make sure
that the interop assemblies are shipped, but that the COM component that it
references is properly installed on the machine. In this case, you have to
make sure each machine has the masked edit control installed as well.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
I added a mask COM control to my app and now some computers are getting a
"Class not registered" COMException while others are not. I have verified
that they all have the DLLs on the same directory. Any idea what could be
causing this? Thanks.

Here is the detailed error:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80040154): Class not
registered
at System.Windows.Forms.AxHost.CreateInstance()
at System.Windows.Forms.AxHost.GetOcxCreate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.AxHost.EndInit()
at salesProposal.VerifoneProposal.InitializeComponent()
at salesProposal.VerifoneProposal..ctor(Int64 intProposalID)
at salesProposal.DataBrowser.menuItemVerifoneProposal_Click(Object
sender, EventArgs e)
at System.Windows.Forms.MenuItem.OnClick(EventArgs e)
at System.Windows.Forms.MenuItemData.Execute()
at System.Windows.Forms.Command.Invoke()
at System.Windows.Forms.Control.WmCommand(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
salesProposal
Assembly Version: 1.0.1.0
Win32 Version: 1.0.1.0
CodeBase: file:///C:/Program%20Files/program/program.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Web.Services
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Xml
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Web
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dll
----------------------------------------
pwk8uuyx
Assembly Version: 0.0.0.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Data
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
rq7zqfds
Assembly Version: 0.0.0.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
ElementsEx
Assembly Version: 1.0.1339.20627
Win32 Version: 1.0.1339.20627
CodeBase: file:///C:/Program%20Files/program/ElementsEx.DLL
----------------------------------------
AxInterop.MSMask
Assembly Version: 1.1.0.0
Win32 Version: 1.1.0.0
CodeBase: file:///C:/Program%20Files/program/AxInterop.MSMask.DLL
 
N

Nicholas Paldino [.NET/C# MVP]

Chris,

Well, I am not sure, because I don't know the specifics of the control
you are trying to install. When you install a COM component, it can be as
little as just registering it (in which case you just use REGSVR32 or an
install program to do this), or the registration in addition to other
registry entries, files, other dlls, etc, etc.

When you say you have the DLLs, does that mean you have the COM dlls, or
the interop dlls?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
Nicholas,

Thanks for the reply. Unfortunately, I don't know much about COM
components. Can you give me a tip as to how I can install the masked edit
control? All I have are the DLLs.

Thanks for your help.

Chris


message news:[email protected]...
Chris,

When you create assemblies for interop, you not only have to make sure
that the interop assemblies are shipped, but that the COM component that it
references is properly installed on the machine. In this case, you have to
make sure each machine has the masked edit control installed as well.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
I added a mask COM control to my app and now some computers are
getting
could
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dllfile:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dllfile:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dllfile:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
 
C

Chris Clement

I have two interop dlls: Interop.MSMask.dll and AxInterop.MSMask.dll. They
both are required. I tried doing the regsvr32, but didn't work. So you are
saying that there is something else that needs to be installed on the
computer for this to work?


Nicholas Paldino said:
Chris,

Well, I am not sure, because I don't know the specifics of the control
you are trying to install. When you install a COM component, it can be as
little as just registering it (in which case you just use REGSVR32 or an
install program to do this), or the registration in addition to other
registry entries, files, other dlls, etc, etc.

When you say you have the DLLs, does that mean you have the COM dlls, or
the interop dlls?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
Nicholas,

Thanks for the reply. Unfortunately, I don't know much about COM
components. Can you give me a tip as to how I can install the masked edit
control? All I have are the DLLs.

Thanks for your help.

Chris


message news:[email protected]...
Chris,

When you create assemblies for interop, you not only have to make sure
that the interop assemblies are shipped, but that the COM component
that
it
references is properly installed on the machine. In this case, you
have
to
make sure each machine has the masked edit control installed as well.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

I added a mask COM control to my app and now some computers are
getting
a
"Class not registered" COMException while others are not. I have verified
that they all have the DLLs on the same directory. Any idea what
could
be
causing this? Thanks.

Here is the detailed error:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80040154): Class not
registered
at System.Windows.Forms.AxHost.CreateInstance()
at System.Windows.Forms.AxHost.GetOcxCreate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.AxHost.EndInit()
at salesProposal.VerifoneProposal.InitializeComponent()
at salesProposal.VerifoneProposal..ctor(Int64 intProposalID)
at salesProposal.DataBrowser.menuItemVerifoneProposal_Click(Object
sender, EventArgs e)
at System.Windows.Forms.MenuItem.OnClick(EventArgs e)
at System.Windows.Forms.MenuItemData.Execute()
at System.Windows.Forms.Command.Invoke()
at System.Windows.Forms.Control.WmCommand(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
salesProposal
Assembly Version: 1.0.1.0
Win32 Version: 1.0.1.0
CodeBase: file:///C:/Program%20Files/program/program.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dllfile:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dllfile:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dllfile:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
 
N

Nicholas Paldino [.NET/C# MVP]

Chris,

You misunderstand. You need to register the DLL that contains the COM
component. The interop assemblies do not contain this, they only act as a
bridge to the original COM component.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
I have two interop dlls: Interop.MSMask.dll and AxInterop.MSMask.dll. They
both are required. I tried doing the regsvr32, but didn't work. So you are
saying that there is something else that needs to be installed on the
computer for this to work?


message news:[email protected]...
Chris,

Well, I am not sure, because I don't know the specifics of the control
you are trying to install. When you install a COM component, it can be as
little as just registering it (in which case you just use REGSVR32 or an
install program to do this), or the registration in addition to other
registry entries, files, other dlls, etc, etc.

When you say you have the DLLs, does that mean you have the COM
dlls,
or
the interop dlls?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
Nicholas,

Thanks for the reply. Unfortunately, I don't know much about COM
components. Can you give me a tip as to how I can install the masked edit
control? All I have are the DLLs.

Thanks for your help.

Chris


"Nicholas Paldino [.NET/C# MVP]" <[email protected]>
wrote
in
message Chris,

When you create assemblies for interop, you not only have to
make
sure
that the interop assemblies are shipped, but that the COM component that
it
references is properly installed on the machine. In this case, you have
to
make sure each machine has the masked edit control installed as well.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

I added a mask COM control to my app and now some computers are getting
a
"Class not registered" COMException while others are not. I have
verified
that they all have the DLLs on the same directory. Any idea what could
be
causing this? Thanks.

Here is the detailed error:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80040154): Class not
registered
at System.Windows.Forms.AxHost.CreateInstance()
at System.Windows.Forms.AxHost.GetOcxCreate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.AxHost.EndInit()
at salesProposal.VerifoneProposal.InitializeComponent()
at salesProposal.VerifoneProposal..ctor(Int64 intProposalID)
at salesProposal.DataBrowser.menuItemVerifoneProposal_Click(Object
sender, EventArgs e)
at System.Windows.Forms.MenuItem.OnClick(EventArgs e)
at System.Windows.Forms.MenuItemData.Execute()
at System.Windows.Forms.Command.Invoke()
at System.Windows.Forms.Control.WmCommand(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd,
Int32
msg,
IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
salesProposal
Assembly Version: 1.0.1.0
Win32 Version: 1.0.1.0
CodeBase: file:///C:/Program%20Files/program/program.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dllfile:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dllfile:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dllfile:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
 
C

Chris Clement

Cool. Got it working. Found the COM component in the path column in the
Add/Remove Items of the VS.NET toolbox. Had to register the msmask32.ocx
(or wise installmaster did anyway) on the computer. That did the trick.

Thanks, Nicholas!


Nicholas Paldino said:
Chris,

You misunderstand. You need to register the DLL that contains the COM
component. The interop assemblies do not contain this, they only act as a
bridge to the original COM component.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Chris Clement said:
I have two interop dlls: Interop.MSMask.dll and AxInterop.MSMask.dll. They
both are required. I tried doing the regsvr32, but didn't work. So you are
saying that there is something else that needs to be installed on the
computer for this to work?


message news:[email protected]...
be
as
little as just registering it (in which case you just use REGSVR32 or an
install program to do this), or the registration in addition to other
registry entries, files, other dlls, etc, etc.

When you say you have the DLLs, does that mean you have the COM
dlls,
or
the interop dlls?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Nicholas,

Thanks for the reply. Unfortunately, I don't know much about COM
components. Can you give me a tip as to how I can install the
masked
edit
control? All I have are the DLLs.

Thanks for your help.

Chris


in
message Chris,

When you create assemblies for interop, you not only have to make
sure
that the interop assemblies are shipped, but that the COM
component
that
it
references is properly installed on the machine. In this case,
you
have
to
make sure each machine has the masked edit control installed as well.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

I added a mask COM control to my app and now some computers are
getting
a
"Class not registered" COMException while others are not. I have
verified
that they all have the DLLs on the same directory. Any idea what
could
be
causing this? Thanks.

Here is the detailed error:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80040154): Class not
registered
at System.Windows.Forms.AxHost.CreateInstance()
at System.Windows.Forms.AxHost.GetOcxCreate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean
fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean
fIgnoreVisible)
at System.Windows.Forms.AxHost.EndInit()
at salesProposal.VerifoneProposal.InitializeComponent()
at salesProposal.VerifoneProposal..ctor(Int64 intProposalID)
at salesProposal.DataBrowser.menuItemVerifoneProposal_Click(Object
sender, EventArgs e)
at System.Windows.Forms.MenuItem.OnClick(EventArgs e)
at System.Windows.Forms.MenuItemData.Execute()
at System.Windows.Forms.Command.Invoke()
at System.Windows.Forms.Control.WmCommand(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at
System.Windows.Forms.ControlNativeWindow.OnMessage(Message&
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.web.services/1.0.5000.0__b03f5f7f11d50a3a/system.web.services.dllfile:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dllfile:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dllfile:///c:/windows/assembly/gac/system.web/1.0.5000.0__b03f5f7f11d50a3a/system.web.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dllfile:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dllfile:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top