Welcome to Lockergnome.com!
HomeHome FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Permissions problem during VSTO addin loading

 
   Home -> Office -> Program Add-Ins RSS
Next:  Program Add-Ins: outlook addins/everyone  
Author Message
Rajesh K

External


Since: Jul 27, 2007
Posts: 6



(Msg. 1) Posted: Thu Aug 02, 2007 2:26 pm
Post subject: Permissions problem during VSTO addin loading
Archived from groups: microsoft>public>outlook>program_addins (more info?)

Hi,
My addin [based on OutlookRibbonXVB_VSTO sample] was not getting loaded on
a non-devlopment machine [Vista + O2k7] . When I set env variable
VSTO_SUPPRESSDISPLAYALERTS to 0, I get a log which indicates my permissions
are somehow wrong. This is also true with UAC turned off.
Maybe everyone else know how to get around this problem but not me Sad

Hope someone can help ... I was under the impression that addins are
implicitly trusted.
Thanks
Rajesh K

Could not load file or assembly 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed to
grant permission to execute. (Exception from HRESULT: 0x80131418)


************** Exception Text **************
System.IO.FileLoadException: Could not load file or assembly
'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' or one of its dependencies. Failed to grant permission
to execute. (Exception from HRESULT: 0x80131418)
File name: 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' ---> System.Security.Policy.PolicyException: Execution
permission cannot be acquired.
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
PermissionSet& denied, Boolean checkExecutionPermission)
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
PermissionSet& denied, Int32& securitySpecialFlags, Boolean
checkExecutionPermission)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.HandleOnlineOffline(Exception e, String basePath, String filePath)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadStartupAssembly(EntryPoint
entryPoint, Dependency dependency, Dictionary`2 assembliesHash)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.ConfigureAppDomain()
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadAssembliesAndConfigureAppDomain(IHostServiceProvider serviceProvider)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadEntryPointsHelper(IHostServiceProvider serviceProvider)




************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Applications.Runtime
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.816
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Appl...tions.R
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e.../System
----------------------------------------
Microsoft.Office.Tools.Common
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.816
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/8.0...0__b03f
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77...561934e
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f1...0a3a/Sy
----------------------------------------
Back to top
Login to vote
Ken Slovak - [MVP - Outlo

External


Since: Oct 17, 2003
Posts: 3213



(Msg. 2) Posted: Fri Aug 03, 2007 9:19 am
Post subject: Re: Permissions problem during VSTO addin loading [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Addins are implicitly trusted once they're running. Getting a managed code
VSTO addin to actually load requires that when you deploy the addin that you
set up security using CASPOL, a SetSecurity project or even manually using
the Framework admin utility. The strongly named assembly must have full
trust granted to it.

There are walkthroughs for each version of VSTO that describe the
requirements and provide a SetSecurity project along with a set of custom
actions that you add to that project. Find the walkthrough for your VSTO
version and follow it exactly and you'll be able deploy your addin.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Rajesh K" <RajeshK.TakeThisOut@discussions.microsoft.com> wrote in message
news:EDE05E39-EA81-4F48-8A36-8E82A56D064F@microsoft.com...
> Hi,
> My addin [based on OutlookRibbonXVB_VSTO sample] was not getting loaded
> on
> a non-devlopment machine [Vista + O2k7] . When I set env variable
> VSTO_SUPPRESSDISPLAYALERTS to 0, I get a log which indicates my
> permissions
> are somehow wrong. This is also true with UAC turned off.
> Maybe everyone else know how to get around this problem but not me Sad
>
> Hope someone can help ... I was under the impression that addins are
> implicitly trusted.
> Thanks
> Rajesh K
>
> Could not load file or assembly 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0,
> Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed
> to
> grant permission to execute. (Exception from HRESULT: 0x80131418)
>
>
> ************** Exception Text **************
> System.IO.FileLoadException: Could not load file or assembly
> 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
> PublicKeyToken=null' or one of its dependencies. Failed to grant
> permission
> to execute. (Exception from HRESULT: 0x80131418)
> File name: 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
> PublicKeyToken=null' ---> System.Security.Policy.PolicyException:
> Execution
> permission cannot be acquired.
> at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
> PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
> PermissionSet& denied, Boolean checkExecutionPermission)
> at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
> PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
> PermissionSet& denied, Int32& securitySpecialFlags, Boolean
> checkExecutionPermission)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.HandleOnlineOffline(Exception
> e, String basePath, String filePath)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadStartupAssembly(EntryPoint
> entryPoint, Dependency dependency, Dictionary`2 assembliesHash)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.ConfigureAppDomain()
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadAssembliesAndConfigureAppDomain(IHostServiceProvider
> serviceProvider)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadEntryPointsHelper(IHostServiceProvider
> serviceProvider)
>
>
>
>
> ************** Loaded Assemblies **************
> mscorlib
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
> ----------------------------------------
> Microsoft.VisualStudio.Tools.Applications.Runtime
> Assembly Version: 8.0.0.0
> Win32 Version: 8.0.50727.816
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Appl...tions.R
> ----------------------------------------
> System
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
> ----------------------------------------
> System.Xml
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e.../System
> ----------------------------------------
> Microsoft.Office.Tools.Common
> Assembly Version: 8.0.0.0
> Win32 Version: 8.0.50727.816
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/8.0...0__b03f
> ----------------------------------------
> System.Windows.Forms
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77...561934e
> ----------------------------------------
> System.Drawing
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f1...0a3a/Sy
> ----------------------------------------
>
Back to top
Login to vote
Rajesh K

External


Since: Jul 27, 2007
Posts: 6



(Msg. 3) Posted: Fri Aug 03, 2007 10:38 am
Post subject: Re: Permissions problem during VSTO addin loading [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Ken,

I am using VSTO SE, and Outlook 2007. The only reference I see is for VSTO
[not SE] with O2K3 at:
http://msdn2.microsoft.com/en-us/library/aa537173(office.11).aspx

Am I making some mistakes there? Part 2 has a code walkthorough for O2K3.
Thanks
Rajesh

"Ken Slovak - [MVP - Outlook]" wrote:

> Addins are implicitly trusted once they're running. Getting a managed code
> VSTO addin to actually load requires that when you deploy the addin that you
> set up security using CASPOL, a SetSecurity project or even manually using
> the Framework admin utility. The strongly named assembly must have full
> trust granted to it.
>
> There are walkthroughs for each version of VSTO that describe the
> requirements and provide a SetSecurity project along with a set of custom
> actions that you add to that project. Find the walkthrough for your VSTO
> version and follow it exactly and you'll be able deploy your addin.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "Rajesh K" <RajeshK.DeleteThis@discussions.microsoft.com> wrote in message
> news:EDE05E39-EA81-4F48-8A36-8E82A56D064F@microsoft.com...
> > Hi,
> > My addin [based on OutlookRibbonXVB_VSTO sample] was not getting loaded
> > on
> > a non-devlopment machine [Vista + O2k7] . When I set env variable
> > VSTO_SUPPRESSDISPLAYALERTS to 0, I get a log which indicates my
> > permissions
> > are somehow wrong. This is also true with UAC turned off.
> > Maybe everyone else know how to get around this problem but not me Sad
> >
> > Hope someone can help ... I was under the impression that addins are
> > implicitly trusted.
> > Thanks
> > Rajesh K
Back to top
Login to vote
Ken Slovak - [MVP - Outlo

External


Since: Oct 17, 2003
Posts: 3213



(Msg. 4) Posted: Mon Aug 06, 2007 8:57 am
Post subject: Re: Permissions problem during VSTO addin loading [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The correct walkthrough to use for VSTO 2005 SE is at
http://msdn2.microsoft.com/en-us/library/bb332051.aspx. Follow that one.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Rajesh K" <RajeshK.TakeThisOut@discussions.microsoft.com> wrote in message
news:F3654FC5-26D5-41A4-95DB-877B6750EDCB@microsoft.com...
> Hi Ken,
>
> I am using VSTO SE, and Outlook 2007. The only reference I see is for
> VSTO
> [not SE] with O2K3 at:
> http://msdn2.microsoft.com/en-us/library/aa537173(office.11).aspx
>
> Am I making some mistakes there? Part 2 has a code walkthorough for O2K3.
> Thanks
> Rajesh
Back to top
Login to vote
Rajesh K

External


Since: Jul 27, 2007
Posts: 6



(Msg. 5) Posted: Tue Aug 07, 2007 1:12 pm
Post subject: Re: Permissions problem during VSTO addin loading [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I now get another set of permission errors listed at the bottom. Also, in
the pre-installed dependency list, I did not see VSTOSe runtime dependency.
Nor did I see any for Outlook/Office 2007 runtime libraries or any thing of
that nature. I only saw .net 2.0 dependency and I checked that. What am I
doing wrong here?

Could not load file or assembly 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed to
grant permission to execute. (Exception from HRESULT: 0x80131418)


************** Exception Text **************
System.IO.FileLoadException: Could not load file or assembly
'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' or one of its dependencies. Failed to grant permission
to execute. (Exception from HRESULT: 0x80131418)
File name: 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null' ---> System.Security.Policy.PolicyException: Execution
permission cannot be acquired.
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
PermissionSet& denied, Boolean checkExecutionPermission)
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
PermissionSet& denied, Int32& securitySpecialFlags, Boolean
checkExecutionPermission)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.HandleOnlineOffline(Exception e, String basePath, String filePath)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadStartupAssembly(EntryPoint
entryPoint, Dependency dependency, Dictionary`2 assembliesHash)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.ConfigureAppDomain()
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadAssembliesAndConfigureAppDomain(IHostServiceProvider serviceProvider)
at
Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadEntryPointsHelper(IHostServiceProvider serviceProvider)




************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
Microsoft.VisualStudio.Tools.Applications.Runtime
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.816
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Appl...tions.R
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e.../System
----------------------------------------
Microsoft.Office.Tools.Common
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.816
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/8.0...0__b03f
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77...561934e
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
CodeBase:
file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f1...0a3a/Sy
----------------------------------------
Back to top
Login to vote
Ken Slovak - [MVP - Outlo

External


Since: Oct 17, 2003
Posts: 3213



(Msg. 6) Posted: Tue Aug 07, 2007 4:32 pm
Post subject: Re: Permissions problem during VSTO addin loading [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Did you study that walkthrough I pointed you to? It has information about
pre-requisites, requirements and how to set up a bootstrapper for them. All
the problems you're having are covered in the walkthrough.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Rajesh K" <RajeshK RemoveThis @discussions.microsoft.com> wrote in message
news:D657A4AF-7000-408D-A8A1-4E420DFB1DB4@microsoft.com...
>
> I now get another set of permission errors listed at the bottom. Also, in
> the pre-installed dependency list, I did not see VSTOSe runtime
> dependency.
> Nor did I see any for Outlook/Office 2007 runtime libraries or any thing
> of
> that nature. I only saw .net 2.0 dependency and I checked that. What am
> I
> doing wrong here?
>
> Could not load file or assembly 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0,
> Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed
> to
> grant permission to execute. (Exception from HRESULT: 0x80131418)
>
>
> ************** Exception Text **************
> System.IO.FileLoadException: Could not load file or assembly
> 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
> PublicKeyToken=null' or one of its dependencies. Failed to grant
> permission
> to execute. (Exception from HRESULT: 0x80131418)
> File name: 'TrustToneRibbonXVB_VSTO, Version=1.0.0.0, Culture=neutral,
> PublicKeyToken=null' ---> System.Security.Policy.PolicyException:
> Execution
> permission cannot be acquired.
> at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
> PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
> PermissionSet& denied, Boolean checkExecutionPermission)
> at System.Security.SecurityManager.ResolvePolicy(Evidence evidence,
> PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset,
> PermissionSet& denied, Int32& securitySpecialFlags, Boolean
> checkExecutionPermission)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.HandleOnlineOffline(Exception
> e, String basePath, String filePath)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadStartupAssembly(EntryPoint
> entryPoint, Dependency dependency, Dictionary`2 assembliesHash)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.ConfigureAppDomain()
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadAssembliesAndConfigureAppDomain(IHostServiceProvider
> serviceProvider)
> at
> Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.LoadEntryPointsHelper(IHostServiceProvider
> serviceProvider)
>
>
>
>
> ************** Loaded Assemblies **************
> mscorlib
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
> ----------------------------------------
> Microsoft.VisualStudio.Tools.Applications.Runtime
> Assembly Version: 8.0.0.0
> Win32 Version: 8.0.50727.816
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.Tools.Appl...tions.R
> ----------------------------------------
> System
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
> ----------------------------------------
> System.Xml
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e.../System
> ----------------------------------------
> Microsoft.Office.Tools.Common
> Assembly Version: 8.0.0.0
> Win32 Version: 8.0.50727.816
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Office.Tools.Common/8.0...0__b03f
> ----------------------------------------
> System.Windows.Forms
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77...561934e
> ----------------------------------------
> System.Drawing
> Assembly Version: 2.0.0.0
> Win32 Version: 2.0.50727.312 (rtmLHS.050727-3100)
> CodeBase:
> file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f1...0a3a/Sy
> ----------------------------------------
>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Program Add-Ins All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Categories:
 General
 Microsoft Windows XP
 Microsoft Windows Vista
 Microsoft Windows (other)
  Microsoft Office
 Microsoft Office (other)
 Computer Security
 Linux
 Movies


[ Contact us | Terms of Service/Privacy Policy ]