Telerik Forums
UI for WinForms Forum
1 answer
126 views
i just installed radcontrols for winforms. then i went to create new project, window application. but then how do i apply the theme to my form? my form right now still look just like regular window form. I'm stupid i know but can you point me to the right direction? thanks
Nikolay
Telerik team
 answered on 26 Jan 2009
5 answers
439 views
i just downloaded and installed the trial app. I can't seem to apply the theme. how do i do that? my window app still have the looks of the original window look. Basically i wanted to create new project with telerik theme. But i can't seems to do it. what am i missing? can you help me please. i went to create window application then i dragged the theme into the form then what do i do from there?? please  help me. thank you very much
Nikolay
Telerik team
 answered on 26 Jan 2009
3 answers
184 views
I'm trying to update a cell in code, but get this error:
DataTable internal index is corrupted: '13'.

My code to perform the update is:
RadGridView1.Rows(rowNum).Cells(cellNum).Value = "12"

What could be going on here?  Stack trace below:
System.InvalidOperationException was unhandled
  Message="DataTable internal index is corrupted: '13'."
  Source="System.Data"
  StackTrace:
       at System.Data.RBTree`1.GetNodeByIndex(Int32 userIndex)    at System.Data.RBTree`1.get_Item(Int32 index)    at System.Data.DataView.GetRecord(Int32 recordIndex)    at System.Data.DataView.GetRow(Int32 index)    at System.Data.DataView.get_Item(Int32 recordIndex)    at Telerik.WinControls.Data.DataAccessComponent.FindRow(GridViewRowInfo rowInfo)    at Telerik.WinControls.Data.DataAccessComponent.set_Item(GridViewRowInfo row, GridViewDataColumn column, Object value)    at Telerik.WinControls.UI.GridViewTemplate.set_Item(GridViewRowInfo row, GridViewDataColumn column, Object value)    at Telerik.WinControls.UI.GridViewCellInfo.set_Value(Object value)    at ...
Julian Benkov
Telerik team
 answered on 26 Jan 2009
3 answers
410 views
Hi,
I have grid bound to dataset filled by the dataadapter. How to refresh the grid without having to grid.datasource=dataset when you modify the table using command as sqlcommand.

If I reload the grid.datasource=dataset is very slow. I wanted to use grid.refresh.

Thanks.
Julian Benkov
Telerik team
 answered on 26 Jan 2009
1 answer
66 views
Hey Telerik,
Your controls are great.

My group is working with the telerik controls trial version before our official release, and I was wondering if you could tell me how to add the radribbonform and other custom templates described in the KB articles you've referenced in other posts pointing here:
http://www.telerik.com/support/kb/winforms/form/adding-radribbonform.aspx
I have been unable to locate the zip files the KB article references to add to the solution.  They don't seem to be anywhere on my machine after the latest trial installation.

Thanks very kindly for your time,
Jim
Deyan
Telerik team
 answered on 26 Jan 2009
1 answer
126 views
I developed an app using the winforms controls that works on XP 32bit but not xp 64 bit. Has anyone had any success with running Telerik winforms on an XP 64bit platform OS?
Victor
Telerik team
 answered on 26 Jan 2009
1 answer
115 views
Hello all.  I have downloaded the trial controls and have been playing with them.
First of all, let me say that I really like how well thought out and thorough the controls are.
Keep up the great work.

I also just noticed a very small thing "bug" (or at least a cosmetic problem).
When I drop a new RadCalendar control on a form, the default value
of the RangeMaxDate property is "12/30/2099".

It really does not make any difference, but since December has 31 days,
a nicer default would be 12/31/2099.

Thanks and good luck...
mike


Boyko Markov
Telerik team
 answered on 26 Jan 2009
1 answer
77 views
I have an issue with the dock command.Name="close".
If the user clicks the close button quickly on multiple docks, it will not have enough time to finish the process before skiping on over to the next dock. How can I prevent the user from clicking the close button or make the sub finish on process before starting another.

Thank you
Bobby

 

   Sub dock_Command(ByVal sender As Object, ByVal e As DockCommandEventArgs)  
 
        If e.Command.Name = "ExpandCollapse" Then  
            'Update record in database if dock is collapsed  
            UpdateRec((DirectCast(sender, RadDock)).Title, (DirectCast(sender,RadDock)).DockZoneID, (DirectCast(sender, RadDock)).Collapsed.ToString)  
        End If  
 
 
 
 
        If e.Command.Name = "Close" Then  
 
 
 
            Dim DelDock As String = (DirectCast(sender, RadDock)).Title  
 
 
            DeleteRec(Profile.UserName, DelDock.ToString)  
 
    
            Dim i As Integer  
            For i = 0 To Me.combolist.Items.Count - 1  
                If combolist.Items(i).Text = DelDock.ToString Then  
                    combolist.Items(i).Enabled = True 
                    Dim j As Integer  
                    For j = 0 To arr.Count - 1  
                        If arr(j).ToString = combolist.Items(i).Value.ToString Then  
                            ' Label1.Text += arr(j).ToString  
                            arr.RemoveAt(j)  
 
                            Exit For  
                        End If  
                    Next  
                    Exit For  
                End If  
            Next  
 
 
            Dim z As Integer  
 
            If (DirectCast(sender, RadDock)).DockZoneID = "RadDockZone1" Then  
 
                'Reorder docks Index for DockZone 1  after deletion  
                For z = 0 To Me.RadDockZone1.Docks.Count - 1  
                    UpdateIndex(Me.RadDockZone1.Docks(z).Title, "RadDockZone1", z.ToString)  
                Next  
            Else  
                'Reorder docks Index for DockZone 2 after deletion  
                For z = 0 To Me.RadDockZone2.Docks.Count - 1  
                    UpdateIndex(Me.RadDockZone2.Docks(z).Title, "RadDockZone2", z.ToString)  
                Next  
            End If  
 
            ScriptManager.RegisterStartupScript(UpdatePanel1, Me.[GetType](), "RemoveDock", String.Format("function _removeDock() {{" & Chr(13) & "" & Chr(10) & "" & Chr(9) & "Sys.Application.remove_load(_removeDock);" & Chr(13) & "" & Chr(10) & "" & Chr(9) & "$find('{0}').undock();" & Chr(13) & "" & Chr(10) & "" & Chr(9) & "$get('{1}').appendChild($get('{0}'));" & Chr(13) & "" & Chr(10) & "" & Chr(9) & "$find('{0}').doPostBack('DockPositionChanged');" & Chr(13) & "" & Chr(10) & "}};" & Chr(13) & "" & Chr(10) & "Sys.Application.add_load(_removeDock);", (DirectCast(sender, RadDock)).ClientID, UpdatePanel1.ClientID), True)  
 
        End If  
 
    End Sub 

 

 

 

Nikolay Raykov
Telerik team
 answered on 26 Jan 2009
5 answers
178 views
Hello,

actually I try to add a label to a chartSeries... is this possible?

I can do this for an item - but I don't succeed for my Series (Pie)...

If this is not possible - can you tell me how to change the border color of the legend items?
When I add chartSeries to my chart, every legend item gets the same border and fill color. So I can't see to which chartSeries the legend item belongs.

Thank you

Best regards.

Nadine

Ves
Telerik team
 answered on 26 Jan 2009
5 answers
148 views
...i'm sorry, but i have another problem with GridView and themes:

I created a theme file based on the Vista Telerik Theme using Visual Style Builder. I only modified some colors in the element tree of the GridTableHeaderRowElement and saved the new theme as xml-File. Adding the file to the project as ressource and selecting the new theme for the grid works fine and the modifications are displayed correct.

Problem: now the appearance of the grid scroll bars is also different from the Vista Telerik theme, although i didn't make any changes in the RadScrollBarElement. The color gradient goes from gray to white instead of gray to black and the scroll bar elements aren't "rounded" any more.

Tried to create the theme file again, but the same issue.


Best regards,
Martin
Mike
Telerik team
 answered on 26 Jan 2009
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?