Telerik Forums
UI for WinForms Forum
4 answers
294 views
Hi,

Is there a way to highlight today's date only and not the selected date on dateTimePicker's calendar?

Many Thanks,

Ian
Peter
Telerik team
 answered on 23 Jul 2012
1 answer
109 views
I'm having an issue with the alternate row colors disappearing after adding groupdescriptors in code.

example:
GroupDescriptor myDescriptor1= new GroupDescriptor();
myDescriptor1.GroupNames.Add("site", ListSortDirection.Ascending);
myDescriptor1.GroupNames.Add("batch", ListSortDirection.Ascending);
myDescriptor1.Aggregates.Add("count(counter)");
myDescriptor1.Format = "Site Number, Batch {1}      {2} Records(s)";
 
GroupDescriptor myDescriptor2= new GroupDescriptor();
myDescriptor2.GroupNames.Add("type", ListSortDirection.Ascending);
 
myGridView.MasterTemplate.AutoExpandGroups = true;
myGridView.GroupDescriptors.Add(myDescriptor1);
myGridView.MasterTemplate.AutoExpandGroups = false;
myGridView.GroupDescriptors.Add(myDescriptor2);
 
myGridView.EnableFiltering = true;
myGridView.EnableAlternatingRowColor = true;
myGridView.MasterTemplate.EnableAlternatingRowColor = true;

When I group my data (drag\drop column) while form is running, the alternating row colors are not affected.

Jack
Telerik team
 answered on 23 Jul 2012
1 answer
118 views
Hi All,

i have problem to call Radchart Paint Event...Invalidate() is not working.

Has anybody idea how to call this event ?

thanks lot for answer
alan
Top achievements
Rank 1
 answered on 23 Jul 2012
2 answers
747 views
I've tried setting the wait cursor, gridview.tableElement.text and font properties before initiating data load process and then resetting to empty\default once data is loaded.  No luck using this approach and I can't seem to find much documentation on this.  Thought of approaching this by retrieving data using a separate thread - is this even possible? 

Any help would be greatly appreciated.

thanks
Stefan
Telerik team
 answered on 23 Jul 2012
2 answers
129 views
Hello!
I am trying to remove the background of the dockManager. I want that the toolWindow to be transparent. I attached an image to be more explicit.

Thank you!
Marius
Top achievements
Rank 1
 answered on 23 Jul 2012
0 answers
121 views
Hi,
PersianCalendar is a class for iran country.  I'm going to customize MonthCalendar component in ToolBox to change it to PersianCalendar
that is it will not act as A.D calendar instead it will act as Solar calendar.
In MSDN Forums I get this link which is open source MonthCalendar:
http://reflector.webtropy.com/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/WinForms/Managed/System/WinForms/MonthCalendar@cs/1/MonthCalendar@cs

but has some errors and I can not change it to Persian Calendar!
Can some body help me?
 
Tooraj
Top achievements
Rank 1
 asked on 21 Jul 2012
4 answers
103 views
Hi every one

I want to change XAxes Columns Font,i mean the numbers.
I use this code,but it's not worked

radchart1.Font = new System.Drawing.Font("B Nazanin", 12, FontStyle.Bold);
How can i do that?

Best Regards ...
Saman
Top achievements
Rank 1
 answered on 20 Jul 2012
2 answers
366 views
We use drawcolumnheader event in winform listview for changing font and color of column header.
Can we change these property of header of each column in telerik listview?
for example how can I use smaller font  in my header?
Stefan
Telerik team
 answered on 20 Jul 2012
2 answers
165 views
How Can I allow edit in a multi-columns comboBox ?

I have a list in this combo with two columns (checkBoxColumn and textColumn). The user can check witch column he want's to select. 

The propriety ReadOnly of the comboBox is set as False;
Stefan
Telerik team
 answered on 20 Jul 2012
2 answers
120 views
Hi,

I've some problems with the GridView, If I add a GridViewCheckBoxColumn:

grdTestTools.Columns.Add("Id", "ToolId")
grdTestTools.Columns.Add("PositionNumber", "Pos.-Nr.")
grdTestTools.Columns.Add(New GridViewCheckBoxColumn("Versuch", "Test"))
grdTestTools.Columns.Add("ToolNumber", "Werkzeugnummer")
grdTestTools.Columns.Add("Manufacturer", "Hersteller")
grdTestTools.Columns.Add("Coating", "Beschichtung")
grdTestTools.Columns.Add("NumberOfAdaptors", "Schneiden")
grdTestTools.Columns.Add("ActualCumulativeAverageNumberOfPieces", "Standmenge Ist")
grdTestTools.Columns.Add("DebitCumulativeAverageNumberOfPieces", "Standmenge Soll")
grdTestTools.Columns.Add("ActualCumulativeToolingCosts", "Werkzeugekosten Ist")
grdTestTools.Columns.Add("DebitCumulativeToolingCosts", "Werkzeugekosten Soll")
grdTestTools.Columns.Add("CumulativeNumberOfTools", "Benutzte Werkzeuge")
grdTestTools.Columns.Add("CumulativeBrokenDieCounter", "davon gebrochen")

I set some colors in CellFormatting. Works fine, until I add the GridViewCheckBoxColumn. And now... well, see screenshots. The wrong colors changing after I clear and reinsert the GridView.

Private Sub grdTestTools_CellFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.CellFormattingEventArgs) Handles grdTestTools.CellFormatting
        MyColumn = e.CellElement.ColumnInfo
 
        If MyColumn.Name = "ActualCumulativeAverageNumberOfPieces" Or MyColumn.Name = "ActualCumulativeToolingCosts" Then
            'Ist-Färbung
            e.CellElement.ForeColor = CoreFunctions.MyDefaultToolActualValuesFontColor
            e.CellElement.DrawFill = True
            e.CellElement.NumberOfColors = 1
            e.CellElement.BackColor = Color.FromArgb(123, 123, 123)
 
        ElseIf MyColumn.Name = "DebitCumulativeAverageNumberOfPieces" Or MyColumn.Name = "DebitCumulativeToolingCosts" Then
            'Soll-Färbung
            e.CellElement.ForeColor = CoreFunctions.MyDefaultToolDebitValuesFontColor
            e.CellElement.DrawFill = True
            e.CellElement.NumberOfColors = 1
            e.CellElement.BackColor = Color.FromArgb(123, 123, 123)
        End If
 
End Sub

We are using RadControls 2010.2.10.0914.

And ideas? Thanks!
Andy
Stefan
Telerik team
 answered on 20 Jul 2012
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
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
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?