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.
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.
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.