![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Bug Reports Post about errors or bugs encountered. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
???As you can see in my example, the node is checked by code and not by mouse/pen. According to your explanation the checked box should remain but in fact it gets cleared! Even I check the node by pen on the device, it gets cleared, too. specci48 |
|
||||
|
Here is a workaround for this issue (which is a .Net CF issue):
Make sure to use the updated ControlsEx library. Code:
Sub Globals
End Sub
Sub App_Start
Init
FMain.Show
End Sub
Sub Init
Tree1.New1("FMain",5,5,230,230)
Tree1.CheckBoxes = True
node1.New1
node1.Value = Tree1.AddNewNode("Node1")
node1.Value = Tree1.AddNewNode("Node2")
node1.Checked = True
End Sub
Sub BtnJump_Click
node1.Value = Tree1.GetNode(1)
Tree1.RemoveNodeAt(1)
Tree1.InsertNode(0, node1.Value)
End Sub
Sub Tree1_AfterCheck
If tree1.Action = "unknown" Then Return
node1.Value = tree1.CheckedNode
node1.Checked = node1.Checked
End Sub
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using tabControl from ControlsEx | Ricky D | Questions & Help Needed | 2 | 09-18-2008 07:21 AM |
| ControlsEx V1.3 | Erel | Official Updates | 0 | 05-21-2008 07:08 PM |
| ControlsEx update | Erel | Official Updates | 0 | 03-14-2008 06:11 PM |
| ControlsEx library was released | Erel | Announcements | 5 | 09-10-2007 11:02 PM |
| Help with ControlsEx | jrb5564 | Questions & Help Needed | 4 | 09-08-2007 04:44 PM |