Cory

Cory

  • NA
  • 3
  • 0

Trouble with a namespace...

May 28 2009 8:56 AM

I got this code from a sample and I need to add on to it and make it customizable.
Everything works except one reference.
If I comment the line out, some of the program losses functionality.
What reference do I need to add, or what needs to be done to correct this problem.

namespace TestSignature
{
    using System;
    using System.Diagnostics;
    using System.Drawing;
    using System.IO;
    using System.Reflection;
    using System.Security.Cryptography;
    using System.Security.Cryptography.X509Certificates;
    using System.Security.Cryptography.Xml;
    using System.Text;
    using System.Windows.Forms;
    using System.Xml;
   
    using Extensibility;
    using Microsoft.Office.Core;
    using stdole;

    using TestSignature.Utils;

    using XmlDataObject = System.Security.Cryptography.Xml.DataObject;

The error comes at "using TestSignature.Utils;"

And states: "The type or namespace  name 'Utils' does not exsist in the namespace 'TestSignature' (are you missing an assembly reference?)


Answers (3)