Search results for query: *

  • Users: JDT_71
  • Content: Threads
  • Order by date
  1. J

    Creating a Button without Form Designer

    Given the following code: Dim btnEnter As New Button() btnEnter.Top = 100 btnEnter.Left = 100 btnEnter.Height = 100 btnEnter.Width = 100 How do I get the button to show up on the form and be available for use? Oops, sorry. I meant to post this in the Windows Forms board.
  2. J

    How to store a PaintEventArgs Object

    Is there a way to "grab" a PaintEventArgs object, make a copy, and set a PaintEventArgs object variable equal to it so that I can use that PaintEventArgs object whenever I want and not be forced to do so in the context of the OnPaint routine?
  3. J

    Accessing public MDI parent members

    I have an MDI form with a Public Integer Variable. It also contains an MDI child form. Can the MDI child form access the individual instance of that Public Integer Variable associated with that specific MDI Parent Form? I have so far been solving the problem by having an variable of the...
  4. J

    Altering Controls at run time

    I have been having trouble changing the Row Height of a dataGrid programatically at run-time. Can this be done? If so, how? I have also been having trouble changing the Font Size of a Button at run-time. It tells me that it is a Read-Only Property. Is there a way around this? If so, how?
Back
Top