Search results for query: *

  1. B

    help with controlling a form using a procedure in a module!

    Hey dholpower, I'm on VS 2003, but here's something that may help (idea wise) until someone else comes along with a better solution for what you are trying to do. Calling the procedure from Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  2. B

    Drawing on drop-down portion of combobox

    Thank you John
  3. B

    Drawing on drop-down portion of combobox

    Hello all, How would one draw on the drop-down portion of a combobox? I have created a custom combobox giving it a flat look, and would like to extend the 'look' when the drop-down portion is displayed. Thank you for your time Brendan
  4. B

    Borderless Form System Menu

    Thank you for the responses. TBryce311 - Excuse me if the question wasn't clear enough. I am using a borderless form so to have full control on it's appearance using various skins. In doing so, I have labels acting as Minimize and Close buttons. My problem was when the form is minimized, I...
  5. B

    Borderless Form System Menu

    Hi all, How can a borderless form have it's system menu displayed when minimized in the taskbar? Thank you for your time, Brendan
  6. B

    Multiple Forms – Memory Management Question

    Thanks for the reply John. That's a relief. I did notice the 'allocation' numbers when minimized, which at the time only confused me more! Brendan
  7. B

    Please help KeyPress event

    another simple solution Set the Form's KeyPreview property to TRUE Private Sub Form1_KeyPress.. MessageBox.Show(e.KeyChar & " was pressed") End Sub
  8. B

    Multiple Forms – Memory Management Question

    Hi I created an application that uses several forms. From the main form (fMain, which acts as a game lobby) you launch other forms (each child form is a simple game such as word search, classic memory etc) When I observe the application's memory usage via Windows Task Manager/Process...
Back
Top