Has anyone used VB to create a plug-in DLL for plsql developer? I've monkeyed with C++ and got something to work, but I know VB a lot better and thought it would be easier for me. Maybe it isn't possible? Anyway, I've tried this code as a small test and I would think it would put an entry in the configure plug-ins even though it doesn't do anything. It doesn't work though.
Public PlugInID As Integer
Public Desc As String
Public Function IdentifyPlugIn(intPID As Integer) As String
Desc = "testing"
PlugInID = intPID
IdentifyPlugIn = Desc
End Function
Any ideas or a small example would be great fun.
Thanks,
Mike
Public PlugInID As Integer
Public Desc As String
Public Function IdentifyPlugIn(intPID As Integer) As String
Desc = "testing"
PlugInID = intPID
IdentifyPlugIn = Desc
End Function
Any ideas or a small example would be great fun.
Thanks,
Mike