Search results for query: *

  1. K

    Trace to see DLLs loading on start

    I am having an issue when I deploy a console app to a server. On my dev station it starts and runs quickly but on the server there is about a 15 second pause when starting up. The pause is happening before Sub Main is called. I am guessing this has something to do with loading referenced DLLs...
  2. K

    Question WYSIWYG Form creator with .Net interface

    I think I was not clear enough. This is for reporting, not create Win Form applications. Thank you!
  3. K

    Disable Enter as button click

    Is there a way to prevent the Enter key from being interpreted as a button click. I am trapping key strokes at the form level but if a button has the focus and the ENTER key is pressed I cannot trap the enter because the button consumes it as a button click event. I am also unable to trap the...
  4. K

    Question WYSIWYG Form creator with .Net interface

    I am looking for a good form designer that has a separate WYSIWYG designer application to create the forms. It needs to be stand alone and not just within Visual Studio. It should allow easy creation of complex forms that can attach to a variety of datasources including text files and SQL...
  5. K

    Question Specify Filename for a PDF Print Driver

    I have an application that I use for label printing. It has a .Net interface that allows for loading of formats, attaching data, and printing. Unfortunately it does not have the ability to print to PDF directly. What I am looking for is a PDF print driver that can operate silently. I have seen...
  6. K

    Question DLL wrapper (pass through reference)

    That is exactly the functionality I was looking for. I want to inherit from the 3rd party DLL but hoped to pass through the reference somehow. I also can't see public enums from the DLL either. I guess I will either have to do the references or not inherit and have to abstract all the methods I...
  7. K

    Question DLL wrapper (pass through reference)

    I have a set of 3rd party DLLs that I would like to simplify for internal use by creating a wrapper class. Is there a way to do this so that the final application that uses my wrapper DLL does not have to set a reference to the 3rd party DLLs directly? I want to be able to use inhertiance in my...
  8. K

    Question OpenFileDialog Causing App to not run

    I have a set of workstations and servers (XP and 2003) that are on a secure network with no Internet access. Because of this they are painfully outdated on their updates. One of my applications will not run at all. I execute it and it shows up in the task manager for about 5 seconds and then...
Back
Top