Hi guys,
I would disable a ComboBox that shows all TimeZones, I would set local time and prohibit to change it.
How can I do?
I attached print screen

Hi there,
How can i link the GanttView control with access data table? I mean how can i build the sql sentence and link to the gantt control?
This is my code below:
Dim strSQLCa As String
Dim dsTask As New DataSet
strSQLCa = "SELECT ID, PARENTID, TITLE, TSTART, TEND, TPROGRESS FROM TASK ORDER BY PROJID, PARENTID, ID"
Dim adpTC As New OleDb.OleDbDataAdapter(strSQLCa, connPRO)
dsTask.Tables.Add("TableTask")
adpTC.Fill(dsTask.Tables("TableTask"))
Dim data As New DataSet()
data.Tables.Add("Task")
Me.RadGanttView1.GanttViewElement.TaskDataMember = "Tasks"
Me.RadGanttView1.GanttViewElement.ChildMember = "Id"
Me.RadGanttView1.GanttViewElement.ParentMember = "ParentId"
Me.RadGanttView1.GanttViewElement.TitleMember = "Title"
Me.RadGanttView1.GanttViewElement.StartMember = "Start"
Me.RadGanttView1.GanttViewElement.EndMember = "End"
Me.RadGanttView1.GanttViewElement.ProgressMember = "Progress"
Me.RadGanttView1.GanttViewElement.LinkDataMember = "Links"
Me.RadGanttView1.GanttViewElement.LinkStartMember = "StartId"
Me.RadGanttView1.GanttViewElement.LinkEndMember = "EndId"
Me.RadGanttView1.GanttViewElement.LinkTypeMember = "LinkType"
Me.RadGanttView1.GanttViewElement.DataSource = dsTask.Tables("TableTask")
Me.RadGanttView1.Columns.Add("Start")
Me.RadGanttView1.Columns.Add("End")
And I'm getting the following error:
"Child list for field Tasks cannot be created."
Please can you guys help me with this?
Thank you in advance.
Jorge

I've been working with the RadRichTextEditor control in my application. It imports and exports simple html -- as I only need things like bold, italics, centering. However, even if I set the FontFamily of the RadRichTextEditor and even the RichTextBoxElement within to Arial, it doesn't respect that when I paste in plain text from an application like Notepad. It changes the text to Verdana with a font size of 12.
If I copy and paste text from Word, I am fine. It keeps whatever font is was in Word.
Additionally, if I use the keyboard and hit shift + enter to give me a single line break (</ br>), It wraps that html with a style tag with the Verdana 12 font. I don't mind the style tag, but it would be nice if it respected the current font where the cursor is.
Any ideas?
Here is my font properties code (which is overkill, but I'm trying everything to fix this).
public void SetDefaultFontPropertiesToEditor(RadRichTextEditor editor) { editor.DocumentInheritsDefaultStyleSettings = true; editor.RichTextBoxElement.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Arial")); editor.RichTextBoxElement.ChangeFontSize(Unit.PointToDip(10)); editor.RichTextBoxElement.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal); editor.RichTextBoxElement.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal); editor.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Arial")); editor.ChangeFontSize(Unit.PointToDip(10)); editor.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal); editor.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal); editor.RichTextBoxElement.Document.LineSpacingType = LineSpacingType.AtLeast; editor.RichTextBoxElement.Document.LineSpacing = 0; editor.RichTextBoxElement.Document.ParagraphDefaultSpacingAfter = 0; editor.RichTextBoxElement.Document.ParagraphDefaultSpacingBefore = 10; }


Hi,
I have a main windows form that includes a racDock with the "AutoDetectMdiChildren" to true.
I need that children MDI winform can be only docked inside the racDock area, so, I would like that the user can dock the MID child form to the top/botton/left/right but not be able to extract the windows to another independent windows outside the parent form where is the racDock control.
How can I disable that the MDI child form could be outside of the parent form?.
Thanks a lot.
Francisco

I am adding a simple Progress bar
When I scroll left and right, it appears elsewhere
See the attached images A and B (see the subject line)
1 is a screen which contains the text in the first row.
I transferred to scroll to the right (2 screens)
I move the scroll to the left (3 screen)
3 is different from the display screen 1 and information
(It overwrites the text the progress bar)
This is an obvious bug!

Hi,
I am hoping someone can help me. I am trying to implement a collapsible panel. I have done so far is set the HorizontalHeaderAlignment to the right. I have added header text and an image. I then set the horizontal stretch property to true. So, at this point I have almost achieved my goal. What I would like, is to have image and header text left justified. I can't seem to find any other properties that will help me do this. Is this doable? I have included a screenshot of what I have been able to do so far. Thanks.

