The sample code you found is missing some additional sample code. The TestSignature.Utils is not a part of the .NET framework. You will need to go back to whereever you got the sample code and see if there are additional code samples (something that may have a namespace declaration at the top of TestSignature.Utils). It may also be available as a compiled DLL that you need to add a reference to. Without knowing where you got this sample piece of code it is difficult to provide you with an answer.
On May 28, 6:35 am, mypicturefaded <[email protected]> wrote: > I cannot find the correct reference to one piece of code I have. This > is some sample code I found, and I need to build on it. What reference > do I need to add to make this work?? > > Here is a code snippet: > > 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; > > I get the error at using TestSignature.Utils; > If I comment the line out, some of the code losses functionality. > What needs to be added?
