• Offizieller Beitrag

    Hi,

    in addition to WPTDynInt2.dll the Win32 DLL WPTextDll*.DLL and, in case you use internal buttons the PCC file is required. ClickOnce will not work since VS does not handle this additional resources. (as far as I know)

    Regards,

    Julian Ziersch

  • Bill,

    I haven't had any success using ClickOnce deployment. I either use XCopy or InnoSetup and it works like a dream. I initialise the component using:

    WpdllInt1.SetDLLName(My.Application.Info.DirectoryPath & "\WPTextDll01.dll")

    ' This call is required by the Windows Form Designer.
    InitializeComponent()

    I inadvertantly had these lines around the other way in the New event of the form and it didn't work. If you do have the SetDLLName line after the InitializeComponent line it tries to get the path from the registry and doesn't work. Much frustration was experienced until I did the lines in the order that the documentation said to do it.

    Just thought this might help.