We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modules using the C# Generator for the following library:
Name: Visual Basic for Applications Version: 6.0 Base: win32 Path: C:\Windows\SysWow64\MSVBVM60.DLL
appears to not be complete. For example:
%instanceType%
is left at the top of the module, instead of being replaced.
[SupportByVersionAttribute("VBA", 6.0)] public Int16 Asc(string string) { object[] paramsArray = Invoker.ValidateParamsArray(string); object returnItem = Invoker.MethodReturn(this, "Asc", paramsArray); return NetRuntimeSystem.Convert.ToInt16(returnItem); }
this is left in the code and fails to compile as it can't be converted to COMObject type.
this
COMObject
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Modules using the C# Generator for the following library:
appears to not be complete. For example:
is left at the top of the module, instead of being replaced.
this
is left in the code and fails to compile as it can't be converted toCOMObject
type.The text was updated successfully, but these errors were encountered: