While we can move controls contained inside LayoutControl by selecting them and using the keyboard arrow keys it appears it is not possible to move them using the mouse since LayoutControl tries to automatically create a new section as soon as you start dragging a control with your mouse instead of allowing you to reposition the control within the existing section it is currently in. However, only when you use the mouse to move the controls the alignment lines show allowing you to align your controls more easily.
Why is it and is there a way to move the controls inside the LayoutControl with the mouse without LayoutControl automatically adding new sections?


Hello,
I've noticed a small problem with the commandbar controls and databinding. Maybe this is not a bug, but however the commandbar controls behave different to the "normal" (Telerik) controls.
If you have something like this:
public partial class RadForm1 : Telerik.WinControls.UI.RadForm { public RadForm1() { InitializeComponent(); List<myobject> source = new List<myobject>(); BindingSource binding = new BindingSource(); source.Add(new myobject(1, "a")); source.Add(new myobject(2, "b")); source.Add(new myobject(3, "c")); source.Add(new myobject(4, "d")); try { commandBarTextBox1.DataBindings.Add("Text", binding, "MyProperty2", true, DataSourceUpdateMode.OnValidation); } catch { } radTextBox1.DataBindings.Add("Text", binding, "MyProperty2", true, DataSourceUpdateMode.OnValidation); binding.DataSource = source; binding.MoveLast(); } } public class myobject { public int MyProperty1 { get; set; } public string MyProperty2 { get; set; } public myobject(int a, string b) { MyProperty1 = a; MyProperty2 = b; } }the databinding of the commandbartextbox will crash but the radtextbox works fine.The problem is that the binding datasource is set after the control databinding.
Since the radcontrols and the .net controls work fine in this case it would be nice if the commandbar controls could too.
(Why are the commandbarcontrols not derived from the radcontrols? or at least have the same base class?)
Kind Regards,
Christian

Hi,
I'm on Progress OpenEdge 11.6.2 and tried to enable AllowSearchRow in a Grid. The code compiles and my form is shown and looks like expected.
When I now type a letter in the search field, I get an Error that the used type of multithreading is not supported (Error 15740) with ABL (the exact Message is in german language).
Is there a way to use this feature with Progress ABL?
Regards
Jürgen

Hello,
I would like to insert in the same page data imported from several rows of a DB table.
Usually, the system creates one page per DB record. If I am using a master-detail structure, I have data coming from details table and the rows are more then one.
How can I manage this issue?
Thank you


Hi I have following tree structure with checkboxes. I wanted to read the child notes selected or unselected and based on that I want to update a string which store those values
Tree structure
Parent1 ((checked))
--Child11
--Child12 (checked)
--Child13 (checked)
Parent2(checked)
--Child21 (checked)
--Child22
--Child23
Parent3 (checked)
--Child31
--Child32 (checked)
--Child33
Dim ParentsNodes as string
Dim ChildNodes as string
I want to loop through entire node with any check or uncheck event and update my ParentNodes string and ChildNodes string so that it says
ParentsNodes = "Parent1, Parent2, Parent3"
ChildNodes = "Child12, Child13, Child21, Child32"
How do I loop through my nodes in RadTreeView using VB.NET and in what event should I put this loop so that any check or uncheck updates my strings. Please help
Thank you!


Actually current i am working on a project that needs to import /export/manage a very large word document in Rich Text Editor.
In this project user imports a word document of approx. 50 pages and then make some changes and the it saved to sql server database.
Now user can load it from database and further make some changes and again saved to database.
On importing the large word document it successfully imported in Rich Text Editor but after making some changes,
when i export it to a file then got the error "object reference not set to an instance of object".
Export functionality is working fine for small documents(approx 10 pages).
I am using this code.
Dim pathSource As String = Application.StartupPath & "\FileName.docx"
Using fsSource As Stream = New FileStream(pathSource, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite, Int32.MaxValue, True)
provider.Export(document, fsSource): '(error raised after executing this line of code.)
Dim docByte As Byte() = New Byte(fsSource.Length - 1) {}
fsSource.Read(docByte, 0, System.Convert.ToInt32(fsSource.Length))
fsSource.Close()
SaveFileToDatabase(docByte)
End Using
Please help....
Regards,
Panch Raj
