I need to develop a COM to use with VB6...
The DLL will receive the data, populate a dataset, and write a XML.
The only thing, is that i must be shared on network... And I really don't want to have to registrer it computer by computer...
I got this 'header" on my file:
Is it wrong? Is it possible?? Any URL, at least, to where I can find it...
tks in advance,
Christiano.
The DLL will receive the data, populate a dataset, and write a XML.
The only thing, is that i must be shared on network... And I really don't want to have to registrer it computer by computer...
I got this 'header" on my file:
Imports System.Runtime.InteropServices
Imports System.Data
Imports System.IO
Namespace Armas
<InterfaceType(ComInterfaceType.InterfaceIsIDispatch)> _
Public Interface IArmas
Property Sinarm() As String
Property Registro() As String
Property Caminho() As String
Sub InserirDados()
Sub EscreveXML()
End Interface
<ClassInterface(ClassInterfaceType.None)> _
Public Class Armas
Implements IArmas
(...)
Is it wrong? Is it possible?? Any URL, at least, to where I can find it...
tks in advance,
Christiano.