Search results for query: *

  • Users: Terry
  • Content: Threads
  • Order by date
  1. Terry

    Project compilation

    My application has references to many other assemblies which compile and run perfectly within the Visual Studio IDE. However, a line compiler which uses the Compile Class (and has worked well generally) is now unable to find a reference to an assembly (although reference to the same assembly...
  2. Terry

    Refreshing a refence to a DLL

    I have a large project which has reference to a DLL which is compiled programmatically from within the main project. The DLL is created from a user modified file and is therefore deliberately changing prior to the execution of the main application. Whilst the compilation is working fine using...
  3. Terry

    Question Compiler error with Namespace referencing...

    I have the following compiler error: Namespace or type specified in the Imports 'myNameSpace' doesn't contain any public member or cannot be found..... There would appear to be three possible causes according to Microsoft, but I am pretty sure(ahem!) that at least two of them don't apply to my...
  4. Terry

    Referencing the control of a calling DLL (or EXE) from the called DLL

    I have figured out how to reference a "child" DLL from a "parent" DLL (or Exe), but I haven't figured out to reference in the reverse direction, for instance to reference a parent DLL/EXE control from a child DLL. Not sure if I have the exact terminology right here but hopefully you get the...
  5. Terry

    Compiling a single Module or Class into a DLL

    While I am waiting for a reply to my previous post I thought I'd write another... Does anyone know of a good reference to explain how to convert a single Module or procedure which is currently embedded within an application and convert it to a DLL programmatically. Through Visual Studio this...
  6. Terry

    Expanding the implementation of an application with DLLs

    I have written a fairly large application that includes a module with one self-contained procedure that ultimately is initiated by a control on a userform. During development it was convenient to have this procedure embedded as part of the application but for the full roll-out version will need...
  7. Terry

    Waiting for Excel

    I want to open an Excel workbook with a call from VB and have a procedure that works fine except that on rare occasions I get a system exception thrown, because I suspect that procedure is not giving enough time for Excel to open. On the assumption this is correct I wanted to make use of a...
Back
Top