Book a Demo

Author Topic: VB 6 interfaces are not being correctly generated!  (Read 2153 times)

rdc02271

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
VB 6 interfaces are not being correctly generated!
« on: March 17, 2005, 07:42:14 am »
Hello!
I'm trying to generate code for one interface and one class that uses the interface but the interface methods names are incorrect!!
Example::

Interface Method::
Public Save() AS Boolean

For a class which implements this interface the code should be:

Public Class
Implements InterfaceName

Public InterfaceName_Save() AS Boolean <---- this is correct

but EA is doing this:

Public Save() AS Boolean <-- incorrect
End Class

So, how can I get the interface name for the method?
I've playing around with the Code Generation TEmplate but without success..

Thanks for your help.
Best Regards,
Jorge C.