Re: Make executable error (VB6)
In the case of the first one above I typically use
Code:
Dim f as new frmMessageBox
This is supported in both VB6 and VB.Net without issue.
In the case of the FSO I avoid it in all cases, It works but it is a vbscript object which imo should be used only in VBScript. VB has much better internal methods that use less resources and are much faster, same is true with .net which has even more internal functions pretty much all of which are better than the FSO.
I'm not sure right off about the as any, I have ran into this but has been a while and my memory is unclear at present.
When you ran the code advisor was that on the exe or the DLL or both?
As for the app not seeing the new function in the dll does this mean you have been sucessful in building the dll since the first post?
Last edited by DataMiser; June 14th, 2011 at 11:07 AM.
Always use [code][/code] tags when posting code.