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 strongm 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. msaroka

    stop window from being closed with Alt+F4

    public bool F4 = false; private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e) { if (e.KeyCode == Keys.F4 && e.Alt == true) { F4 = true; } } private void Form1_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e) { F4 = false; } private...
  2. msaroka

    Treeview Scrollbar

    Does anyone know how to dettermone the scrollbar position of a TreeView control since the treeview does not derive fromt he scrollable control it does not use Autoscroll.
  3. msaroka

    DataBinding Problem

    The form will only bind to one record at a time. You will have to write code to cycle throught he records and set the Textbox.Text values manually if you want different records to be displayed on one form.
  4. msaroka

    treeview nodes from database

    I have had to do something similar to this. This may or may not work for you. Structure treeitems Dim tr as treenode Dim parent as integer End structure Dim Treeitem() Treeitems Public sub AddTreeNode(...insert the info to transfer to the node here.... ) Dim count as integer...
  5. msaroka

    Repainting a scrollable Control

    I have a custom control that uses autoscroll. I also paint onto the control using the paint event. However when I set the control to the size on which it can scroll the control does not paint properly. It end up repeating the edge pixels. I tried finding an event that I can use to repaint...

Part and Inventory Search

Back
Top