Hi,
I'm using an interop assembly to pipe a VB6 OCX into my application. Today
we altered the original OCX to add a new subroutine. The new subroutine is
not showing up in my intellisense. I created a new application and added
the OCX, and it shows up fine there.
Here's what I did in my original application:
* Removed the control from my form
* Removed USBIOACS from References
* Removed AxUSBIOACS from References
* Removed the references from bin/debug
* Removed the control from the toolbox
* Checked to make sure there were no references in Form1.Designer.vb
* Re-added the control to my form
However, it still doesn't show up in intellisense, and when I try to
compile it, the compile bombs.
What else can I try to get this working?
Regards,
Scott
Family Tree Mike - 02 Mar 2008 12:57 GMT
> Hi,
>
[quoted text clipped - 8 lines]
> * Removed USBIOACS from References
> * Removed AxUSBIOACS from References
You removed any imports statements, right?
> * Removed the references from bin/debug
> * Removed the control from the toolbox
> * Checked to make sure there were no references in Form1.Designer.vb
I would rebuild at this step. This would have no information about the
control.
> * Re-added the control to my form
>
> However, it still doesn't show up in intellisense, and when I try to
> compile it, the compile bombs.
>
> What else can I try to get this working?
Otherwise, it seems like you are doing things right.
> Regards,
> Scott
kimiraikkonen - 02 Mar 2008 17:20 GMT
On Mar 1, 12:57 am, Scott McNair
<smcn...@beachexpress.takethispartout.com> wrote:
> Hi,
>
[quoted text clipped - 20 lines]
> Regards,
> Scott
Is the new subroutine "Public" ?
Scott McNair - 03 Mar 2008 14:22 GMT
kimiraikkonen <kimiraikkonen85@gmail.com> wrote in news:b8c8fa09-ada4-4c9a-
8095-850e0f9e62eb@s37g2000prg.googlegroups.com:
> Is the new subroutine "Public" ?
Yes; if I create a new application and include it, the sub shows up.