mooman_fl
Centurion
Ok... didn't know where to post this so I am putting it here. Move it if you need to.
I am currently working on a VB.NET program that will accept plugins containing GUI's. I have a friend that wants to make a plugin that would greatly enhance my program. However he only writes in VC++6. Is this even possible? A sample of my VB.NET interface is below just in case that has some bearing.
from pesi.dll:
I am currently working on a VB.NET program that will accept plugins containing GUI's. I have a friend that wants to make a plugin that would greatly enhance my program. However he only writes in VC++6. Is this even possible? A sample of my VB.NET interface is below just in case that has some bearing.
from pesi.dll:
Visual Basic:
Public Interface IPopEditorDialogPlugin
Event PluginCreated()
Event GUICreated()
Event GUIDestroyed()
Event PluginDestroyed()
Event Callback()
ReadOnly Property Name() As String
ReadOnly Property Version() As String
ReadOnly Property Creator() As String
ReadOnly Property Description() As String
ReadOnly Property LoadOnStartup() As String
'This would hold the URL to an update
'to a folder on a remote server where
'plugin updates can be downloaded from.
ReadOnly Property UpdateURL() As String
ReadOnly Property FileName() As String
Sub Intialize()
Sub GetGUI(ByRef hostcontrol As System.Windows.Forms.Control, ByRef displaycontrol As System.Windows.Forms.Control)
Function GetReturn() As String
Function DestroyGUI() As Boolean
End Interface