Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Microsoft Calendar Control 11.0

Some people in my office recently (re)started using an Excel model that was
used a long time ago. A guy who initially developed the model is not with
the company anymore. Some people have experienced trouble inputting
information into text boxes on the first UserForm that pops up (I personally
never experienced this problem). On the machines where there is an error, I
checked the VBA code and traced the problem to this: MISSING Microsoft
Calendar Control 11.0. So, I unchecked the box next to the library, and then
close the program and restart it and sometimes it works but sometimes it does
not work. How can I permanently disable this Microsoft Calendar Control
11.0? Or, how can I prevent it from repeatedly coming up on certain machines
in the office? I suspect there is a setting somewhere in Excel that would
allow me to disable this feature.

Regards,
Ryan---

--
RyGuy
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Microsoft Calendar Control 11.0

I guess you are using Excel 2003 or earlier? If so then the Calendar
Control v11 (mscal.ocx) was not supplied with the initial Excel
installation, and needs to be downloaded and installed on the target
machines. Excel 2007 has a version 12 loaded as standard.

Your simples option would be to remove the object from the UserForm, but you
probably will loose functionality. Consider downloading and installing the
calendar, reference here, but there are others..
http://www.fontstuff.com/mailbag/qvba01.htm

If you are using Excel 2007, then the calendar to reference is version 12
not version 11


--

Regards,
Nigel




"ryguy7272" wrote in message
...
Some people in my office recently (re)started using an Excel model that
was
used a long time ago. A guy who initially developed the model is not with
the company anymore. Some people have experienced trouble inputting
information into text boxes on the first UserForm that pops up (I
personally
never experienced this problem). On the machines where there is an error,
I
checked the VBA code and traced the problem to this: MISSING Microsoft
Calendar Control 11.0. So, I unchecked the box next to the library, and
then
close the program and restart it and sometimes it works but sometimes it
does
not work. How can I permanently disable this Microsoft Calendar Control
11.0? Or, how can I prevent it from repeatedly coming up on certain
machines
in the office? I suspect there is a setting somewhere in Excel that would
allow me to disable this feature.

Regards,
Ryan---

--
RyGuy


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Microsoft Calendar Control 11.0

Thanks for the look Nigel. Actually, there is no calendar on the UserForm.
That's why I'm baffled. I had a reference to Calendar Control 11.0 in my
Excel. I unchecked the box, asked a colleague to open the model from the
network, and it worked. Maybe this will resolve the issue; time will tell.
I wish I knew more about this... Does anyone know what may cause this
behavior. Do you think some employees may not be getting critical updates
for MSOffice?

Thanks again,
Ryan--

--
RyGuy


"Nigel" wrote:

I guess you are using Excel 2003 or earlier? If so then the Calendar
Control v11 (mscal.ocx) was not supplied with the initial Excel
installation, and needs to be downloaded and installed on the target
machines. Excel 2007 has a version 12 loaded as standard.

Your simples option would be to remove the object from the UserForm, but you
probably will loose functionality. Consider downloading and installing the
calendar, reference here, but there are others..
http://www.fontstuff.com/mailbag/qvba01.htm

If you are using Excel 2007, then the calendar to reference is version 12
not version 11


--

Regards,
Nigel




"ryguy7272" wrote in message
...
Some people in my office recently (re)started using an Excel model that
was
used a long time ago. A guy who initially developed the model is not with
the company anymore. Some people have experienced trouble inputting
information into text boxes on the first UserForm that pops up (I
personally
never experienced this problem). On the machines where there is an error,
I
checked the VBA code and traced the problem to this: MISSING Microsoft
Calendar Control 11.0. So, I unchecked the box next to the library, and
then
close the program and restart it and sometimes it works but sometimes it
does
not work. How can I permanently disable this Microsoft Calendar Control
11.0? Or, how can I prevent it from repeatedly coming up on certain
machines
in the office? I suspect there is a setting somewhere in Excel that would
allow me to disable this feature.

Regards,
Ryan---

--
RyGuy


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 735
Default Microsoft Calendar Control 11.0

That should resolve it. References will persist, even if you do not employ
them in your code, it is likely that the original developer set the
reference and did not reset it. If the object is referenced on a machine
with the mscal.ocx and it does not exist on the target machine or an out of
date version then you get the error you describe.

Critical updates for MSOffice is completely different, your IS department
should be controlling these.

--

Regards,
Nigel




"ryguy7272" wrote in message
...
Thanks for the look Nigel. Actually, there is no calendar on the
UserForm.
That's why I'm baffled. I had a reference to Calendar Control 11.0 in my
Excel. I unchecked the box, asked a colleague to open the model from the
network, and it worked. Maybe this will resolve the issue; time will
tell.
I wish I knew more about this... Does anyone know what may cause this
behavior. Do you think some employees may not be getting critical updates
for MSOffice?

Thanks again,
Ryan--

--
RyGuy


"Nigel" wrote:

I guess you are using Excel 2003 or earlier? If so then the Calendar
Control v11 (mscal.ocx) was not supplied with the initial Excel
installation, and needs to be downloaded and installed on the target
machines. Excel 2007 has a version 12 loaded as standard.

Your simples option would be to remove the object from the UserForm, but
you
probably will loose functionality. Consider downloading and installing
the
calendar, reference here, but there are others..
http://www.fontstuff.com/mailbag/qvba01.htm

If you are using Excel 2007, then the calendar to reference is version 12
not version 11


--

Regards,
Nigel




"ryguy7272" wrote in message
...
Some people in my office recently (re)started using an Excel model that
was
used a long time ago. A guy who initially developed the model is not
with
the company anymore. Some people have experienced trouble inputting
information into text boxes on the first UserForm that pops up (I
personally
never experienced this problem). On the machines where there is an
error,
I
checked the VBA code and traced the problem to this: MISSING Microsoft
Calendar Control 11.0. So, I unchecked the box next to the library,
and
then
close the program and restart it and sometimes it works but sometimes
it
does
not work. How can I permanently disable this Microsoft Calendar
Control
11.0? Or, how can I prevent it from repeatedly coming up on certain
machines
in the office? I suspect there is a setting somewhere in Excel that
would
allow me to disable this feature.

Regards,
Ryan---

--
RyGuy



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Microsoft Calendar Control 11.0

Thanks for letting me know about this!

Regards,
Ryan--

--
RyGuy


"Nigel" wrote:

That should resolve it. References will persist, even if you do not employ
them in your code, it is likely that the original developer set the
reference and did not reset it. If the object is referenced on a machine
with the mscal.ocx and it does not exist on the target machine or an out of
date version then you get the error you describe.

Critical updates for MSOffice is completely different, your IS department
should be controlling these.

--

Regards,
Nigel




"ryguy7272" wrote in message
...
Thanks for the look Nigel. Actually, there is no calendar on the
UserForm.
That's why I'm baffled. I had a reference to Calendar Control 11.0 in my
Excel. I unchecked the box, asked a colleague to open the model from the
network, and it worked. Maybe this will resolve the issue; time will
tell.
I wish I knew more about this... Does anyone know what may cause this
behavior. Do you think some employees may not be getting critical updates
for MSOffice?

Thanks again,
Ryan--

--
RyGuy


"Nigel" wrote:

I guess you are using Excel 2003 or earlier? If so then the Calendar
Control v11 (mscal.ocx) was not supplied with the initial Excel
installation, and needs to be downloaded and installed on the target
machines. Excel 2007 has a version 12 loaded as standard.

Your simples option would be to remove the object from the UserForm, but
you
probably will loose functionality. Consider downloading and installing
the
calendar, reference here, but there are others..
http://www.fontstuff.com/mailbag/qvba01.htm

If you are using Excel 2007, then the calendar to reference is version 12
not version 11


--

Regards,
Nigel




"ryguy7272" wrote in message
...
Some people in my office recently (re)started using an Excel model that
was
used a long time ago. A guy who initially developed the model is not
with
the company anymore. Some people have experienced trouble inputting
information into text boxes on the first UserForm that pops up (I
personally
never experienced this problem). On the machines where there is an
error,
I
checked the VBA code and traced the problem to this: MISSING Microsoft
Calendar Control 11.0. So, I unchecked the box next to the library,
and
then
close the program and restart it and sometimes it works but sometimes
it
does
not work. How can I permanently disable this Microsoft Calendar
Control
11.0? Or, how can I prevent it from repeatedly coming up on certain
machines
in the office? I suspect there is a setting somewhere in Excel that
would
allow me to disable this feature.

Regards,
Ryan---

--
RyGuy


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Microsoft Calendar Control French Jake[_11_] Excel Programming 0 August 8th 05 10:56 PM
Where can I get a copy of the Microsoft calendar control? shelley New Users to Excel 2 April 22nd 05 10:09 PM
Microsoft Calendar Control Richard Mogy Excel Programming 7 March 7th 05 04:00 AM
Microsoft Calendar Control 10.0 Don Rouse Excel Programming 1 August 5th 04 09:04 AM
How to use Microsoft Calendar Control 9.0 on a Userform Anupam Sharma Excel Programming 4 August 27th 03 06:19 PM


All times are GMT +1. The time now is 04:49 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"