I'm having problems referencing an assembly, but unsure where to find out why...
The AppTree contains the Assembly name of "myAssemblyTitle" (as the dll filename without dll) and the treehandlertype is the class information of "BaseTree" am I calling it incorrectly from the AppTree?
Code:
namespace myNameSpace
{
publicclassMyClass : BaseTree
{
public MyClass(string application) : base(application)
{
//zero constructor
}
//// Initialize the tree..//protectedoverridevoid CreateRootNode (refXmlTreeNode rootNode)
{
rootNode.Icon = "FolderIcon";
rootNode.OpenIcon = "FolderIconOpen";
rootNode.NodeType = "init" + TreeAlias;
rootNode.NodeID = "init";
rootNode.Text = "My Section";
}
//// Override the render method to create the new section tree//publicoverridevoid Render(refXmlTree Tree)
Does anyone know why its not rendering the nodes? I think its because its calling the Assembly wrong but unsure..
treeHandlerAssembly, treeHandlerType
I'm having problems referencing an assembly, but unsure where to find out why...
The AppTree contains the Assembly name of "myAssemblyTitle" (as the dll filename without dll) and the treehandlertype is the class information of "BaseTree" am I calling it incorrectly from the AppTree?
Code:
is working on a reply...