CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #6
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    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.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured