calendarcontrol properties lost at export

  • Thread starter Thread starter Willem Peper
  • Start date Start date
W

Willem Peper

Hi,
I created a macro in vba for outlook which uses the calendar control. If I
export this userform and import it on another computer the calendar control
has changed some of its properties, eg the langueage s english instead of
german, the font size is shrunken to illegible 2 points.
How can i move the macro to another computer without changing it?
i cannot transfer the whole otm because there are other macros.

Regards
Willem
 
Sometimes properties for controls are stored in .frx files related to the
exported .frm file; you may want to try copying that over as well.

However, if you solution needs to be distributed to a large number of users
or installed very frequently, it is recommended that you use Visual Studio to
design it as a COM Add-In. The following links contain background
information and additional resources for your situation:

Description of managing and distributing Outlook 2002 Visual Basic for
Applications (VBA) projects:
http://support.microsoft.com/default.aspx?scid=kb;en-us;290779

Developing COM Add-ins for Microsoft Outlook:
http://www.outlookcode.com/d/comaddins.htm
 
Back
Top