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. odinborson

    Minimize Process

    I have a Process and can call CloseMainWindow or Kill it, does anyone know how I can tell the program to Minimize or Mazimize? I tried the SendMessage function in user32.dll, but couldn't get it to work.
  2. odinborson

    Build Comment Web Pages in VS2005

    In Visual Studio 2003 there was an option under tools called 'Build Comment Web Pages' that would build a html/xml documentation report for the project code. Is this tool available in 2005? If so how do I get to it?
  3. odinborson

    Easy one

    in the designer select the textbox, click the lightning bolt in the properties window, and double click the event you want to handle. You could do it for mouse overs. TextChanged is the standard textbox event
  4. odinborson

    Easy one

    try setting the Forecolor or Backcolor in the textbox object, something like textbox.ForeColor = Color.Yellow;
  5. odinborson

    Combobox minimum size

    My combo box seems to have a default minimum height of 21. If I call combo.MinimumSize.Height it says I can go to as low as 0 (this property for ComboBox is new to .NET 2.0). But setting the height to something different doesn't change the height. Is there a way? Also trackbars seem to have to...
  6. odinborson

    mouse handing and scrolling in TableLayoutPanel

    Hi, I'm using the TableLayoutPanel and wondering if there is a method to get the row and collum clicked when my TableLayoutPanel gets a mousedown event. For instance with a DataGrid you can say something like DataGrid.HitTestInfo info = dataGrid.HitTest(e.X, e.Y); and info will contain the row...

Part and Inventory Search

Back
Top