Normal
Welcome to the club! I'm a Delphi veteran too Yeah, meanwhile guilib is integrated in CORE.DLL, so simply adda reference to CORE instead of guilib and it should be fine.Well the ISetupForm is the "interface to implement" which means that your plugin class MUST at least contain all the procedures listed in step 12.This is what will be done in step 14.To indicate that you want to implement this interface, you have to add the ISetupForm like this:[code]public class SetupForm : System.Windows.Forms.Form, ISetupForm{ [....]}[/code]which means that SetupForm inherits from the FORM class but at the same time implements ISetupForm.Hope that helps.... otherwise just ask!Daniel
Welcome to the club! I'm a Delphi veteran too
Yeah, meanwhile guilib is integrated in CORE.DLL, so simply add
a reference to CORE instead of guilib and it should be fine.
Well the ISetupForm is the "interface to implement" which means that your plugin class MUST at least contain all the procedures listed in step 12.
This is what will be done in step 14.
To indicate that you want to implement this interface, you have to add the ISetupForm like this:
[code]public class SetupForm : System.Windows.Forms.Form, ISetupForm
{
[....]
}[/code]
which means that SetupForm inherits from the FORM class but at the same time implements ISetupForm.
Hope that helps.... otherwise just ask!
Daniel