Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RobCozzens

    AVIs in C# / .NET

    Is there an easy way to create AVIs from C#? Or have you heard if Microsoft is going to be adding that any time soon.
  2. RobCozzens

    foreach question

    As far as I know you cannot make changes to objects that you get from the foreach command - they are read only. To change the data, you would need to do a traditional for loop.
  3. RobCozzens

    Using custom controls in the Form Designer

    There are a couple of things to keep in mind when designing a class that inherits from a Control if you want to interact with it in the Form Designer. First, you have to be able to create it with a zero parameter constructor. Second, if your Control class has any fields that are also your own...
  4. RobCozzens

    How do I check if a key is pressed?

    Thanks. Is there an easy way to have the top level form receive all the KeyUp and KeyDown events when a child control has focus?
  5. RobCozzens

    How do I check if a key is pressed?

    I want to see if certain keys are pressed so I can scroll a window if the user is holding down the space bar. Windows.Forms.Control has the static property ModifierKeys, but that only works for SHIFT, CTRL, and ALT. I need something that works the same way for any key.

Part and Inventory Search

Back
Top