mscomct2.ocx 16r2: The system cannot find the file specified.

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

mscomct2.ocx 16r2: The system cannot find the file specified.

Ted Shen-3
With 5.1.4, I am getting a message about a missing file, mscomct2.ocx
'The system cannot find the file specified' when I run an app I am
working on from the development environment.  Some earlier postings
mention that to install this missing file, some Microsoft product such
as VB needs to be installed.  Is there a way to avoid generating this
message without buying and installing VB or other products?

Thanks.

Ted Shen


Reply | Threaded
Open this post in threaded view
|

Re: mscomct2.ocx 16r2: The system cannot find the file specified.

Ian Bartholomew-19
Ted,

> as VB needs to be installed.  Is there a way to avoid generating this
> message without buying and installing VB or other products?

Either completely deleting the two Dolphin classes involved (MaskedEdit and
MonthView) or changing their #icon class methods to something like

^Icon fromId: 1

should do it.

--
Ian

Use the Reply-To address to contact me.
Mail sent to the From address is ignored.


Reply | Threaded
Open this post in threaded view
|

Re: mscomct2.ocx 16r2: The system cannot find the file specified.

Ted Shen-3
Ian,

Thank you, changing the #icon class method as you described work well.

Ted


"Ian Bartholomew" <[hidden email]> wrote in message news:<[hidden email]>...

> Ted,
>
> > as VB needs to be installed.  Is there a way to avoid generating this
> > message without buying and installing VB or other products?
>
> Either completely deleting the two Dolphin classes involved (MaskedEdit and
> MonthView) or changing their #icon class methods to something like
>
> ^Icon fromId: 1
>
> should do it.