Module Overload

Temp102

Member
Hello all

I'm running into some trouble, the Wiki says the that the module datatype contains a ToogleOverload method, but it doesn't seem to exist according to Visual Studios. Is there any other way to overload modules?

Thanks!
 

pr517

Active Member
I've got no clue about eve-related things, but are you spelling it correctly? ToggleOverload instead of ToogleOverload.
 

Temp102

Member
Sorry that was just a mistake on the form, Visual Studio intellisence doesn't find it, and I can't find it in the object browser.

Code:
Module module = (Module) modules[i];
if (module != null) {[INDENT]//module.ToggleOverload();[/INDENT]
}
 

stealthy

ISX Specialist
Sorry that was just a mistake on the form, Visual Studio intellisence doesn't find it, and I can't find it in the object browser.

Code:
Module module = (Module) modules[i];
if (module != null) {[INDENT]//module.ToggleOverload();[/INDENT]
}
It probably hasn't been added to the wrapper. I'll make a note to get it in at some point.
 
Top Bottom