Search results for query: *

  1. B

    x button on a form

    I'm fairly certain that the formclosing and formclosed events are called even when you close the form programaticaly.
  2. B

    Creating a control with a Panel on it.

    I'm passing along some wisdom that was once passed along to me ( as in this morning). <System.ComponentModel.DesignerAttribute(GetType(PanelingScrollableControlDesigner))> _ Public Class Paneling inherits system.windows.forms.panel end class Public Class PanelingScrollableControlDesigner...
  3. B

    Question Restricting controls added to a container in the designer

    Thank you. That did exactly what I wanted it to do.
  4. B

    Usercontrol doing Ctype in designer

    You could try simply removing the offending code... and see what damage is done.
  5. B

    Auto Update for the user Control

    Are you talking about changing automatically at design time? Or change automatically during runtime?
  6. B

    Question Restricting controls added to a container in the designer

    I am making a multipanel control, and I want to be able to restrict the controls that can be added to it (only panels added to the control). How can I do this, since I have absolutely no Idea? Thanks in advance for your help. Chuck
  7. B

    lotus notes date

    I'm not exactly sure where I would post this, so I'm posting this here... Does anyone know the best way to insert a date date type into a lotus notes date field?
  8. B

    DataGridview ButtonColumn EventHandler

    Thank you.... this worked great.
  9. B

    Crystal Reports Viewer to handle multiple reports

    Sorry I've been so long in replying. I finally go this to work by establishing a property that was a ReportDocument object. I passed the reportdocument object to the display form and it worked fine.
  10. B

    Execute code when application exits

    It's not a console application. It is a Windows Application that runs from a main method in a class. It routinely checks for the existence of a list of files it gets from an XML document. Then it prompts for a user name and password from Server Room Personnel (The login form is why the...
  11. B

    Execute code when application exits

    The application does not display a form. It runs entirely in the background.
  12. B

    Execute code when application exits

    I have an application that runs in the background. Unfortunately, it cannot be a service because it needs to use login forms. However, I need to know if it is ended and write that to a log so that I know when, and hopefully why it was ended. Anyone have any idea how I would go about doing that?
  13. B

    Crystal Reports Viewer to handle multiple reports

    I want to create a method that accepts as a parameter a crystal report object. This crystal report object will be the reportsource for the viewer. How do I abstract to accept different reports as the parameter?
  14. B

    Crystal Reports headache

    I don't know if you've found your answer yet, but you aren't using the crystal reports object. CrystalReportViewer1 needs to be the crystaldecisions object.
  15. B

    Crystal Reports Viewer to handle multiple reports

    I have created a crystal reports viewer that handles multiple reports, but I have not been able to figure out how to pass the report objects as a parameter in the method. If I want to pass different types of report objects, what is the abstraction?
  16. B

    DataGridview ButtonColumn EventHandler

    I want to catch the event thrown by the buttoncell from the datagridview, I cannot seem to find any information regarding what event is thrown, or how to catch it. Can someone point me in the right direction?
Back
Top