Navision with DLL .Net create for me

KaMuYKaMuY Member Posts: 2
1 Create Dll .Net.

Source:

using System;

namespace Ex3{
public interface IClass1{
int p(int tmp);
}
public class Class1 : IClass1{
int x ;
public Class1(){
}
public int p (int tmp){
return tmp;
}
}
}


2 Registro la Dll:

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>RegAsm.exe /register /tlb:Ex31.tlb Ex31.dll


3 Create Automation

Name DataType Subtype Length
KNOSOS Automation 'Ex31'.Class1
IKNOSOS Automation 'Ex31'.IClass1

Codigo;

CLEAR(KNOSOS) ;
CREATE(KNOSOS) ;

KNOSOS.p(1) ; // Error: function no found

CLEAR(IKNOSOS) ;
CREATE(IKNOSOS) ; // Error: Instance no to be creat

IKNOSOS.p(1) ; // call ok

Comments

Sign In or Register to comment.