Search results for query: *

  • Users: Elvarg
  • Content: Threads
  • Order by date
  1. E

    Making a program react to user keyboard keystrokes

    What is the simplest way to make a VB.NET program (very simple, single-module, doesn't use OO features other than default generated by Windows Forms) react to user keyboard keystrokes? Simply put, I have a bunch of buttons, called, say, btnOne, btnTwo, btnThree etc. When clicked, they set...
  2. E

    Preventing a form from being resized

    How do I prevent a form from being resized by the user while reserving the options to have it resized via a sub procedure? As in Me.Width = 448 Me.Height = 256 I tried setting in the designer maximumsize as 448,256 and minimumsize as 448,256, but I dont see how it is possible to specify the...
  3. E

    Clearing an array which doesn't have an upper bound

    I'm writing a small program which has the 1-dimensional upperboundless array waitlist() declared class-level. It needs to be able to store an arbitrary amount of members (string datatype), from 0 to however many the user enters. I need to write a sub procedure that deletes all members of the...
Back
Top