Telerik Forums
UI for WinForms Forum
5 answers
236 views
I am getting this error in my designer file.

            //
            // radPageViewPage_Template
            //
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.radPageViewPage_Template.Controls.Add(this.radGridView_PlanTemplates);
            this.radPageViewPage_Template.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage_Template.Name = "radPageViewPage_Template";
            this.radPageViewPage_Template.Size = new System.Drawing.Size(307, 502);
            this.radPageViewPage_Template.Text = "Templates";
Jack
Telerik team
 answered on 28 Mar 2013
9 answers
216 views
Is there a way to change the Navigation text for the Month view to not show the dates but rather the month as in Outlook


Stefan
Telerik team
 answered on 28 Mar 2013
3 answers
131 views
How to set font styles with colors while grouping Grid View Rows??
Jack
Telerik team
 answered on 27 Mar 2013
3 answers
693 views
Hello,

in my DataGridView I have a column for E-Mail adresses. The user clicks on the E-Mail adress and my programm opens a new E-Mail.
When the mouse is over the E-Mail adress I have this CellMouseMove Event to change the Cursor (to Cursor.Hand): 
private void dg_CustomerContact_CellMouseMove(object sender, MouseEventArgs e)
        {
            GridDataCellElement cell = this.dg_CustomerContact.RootElement.ElementTree.GetElementAtPoint(e.Location) as GridDataCellElement;
            if (cell != null && ((GridViewDataColumn)cell.ColumnInfo).Name == "dg_TalkedWith_col_Email")
            {
                originalCursor = this.dg_CustomerContact.Cursor;
                this.dg_CustomerContact.Cursor = Cursors.Hand;
            }
            else
            {
                if (originalCursor != null)
                {
                    this.dg_CustomerContact.Cursor = originalCursor;
                    originalCursor = Cursors.Default;
                }
            }
        }


But when there is no E-Mail adress the cursor should not change to "Cursor.Hand". Any suggestion how to solve this?
Anton
Telerik team
 answered on 27 Mar 2013
5 answers
259 views
Using the custom editor code sample for Telerik winforms found on the Telerik website, I override the BaseInputEditor
to provide my propertyGrid with a trackbar editor.

Now, I implemented the onEditorRequired method as explained to replace the basic edition mode for
any int property.

I'm using the RadPropertyStore mechanism to fill my property grid.

I've no problem with having the value displayed as a number when the editor is not activated, but I'm
not willing to have the value being displayed underneath the track bar as I'm editing the value.

Anyway, I would be looking for having the track bar always displayed even if the property is not being
edited as it will be used for an opacity setting.

Thanks in advance,
Antoine



Anton
Telerik team
 answered on 27 Mar 2013
1 answer
127 views
Hello,

I only want one given resource to be viewed at any point on the scheduler. I have multiple resources, but I cannot seem to find out how to toggle which resource should be viewed. It just shows the first resource I added to the collection, and then at runtime I can't see a way to toggle between those resources:



Also, I forgot to dereference a radscheduler from a navigator, and now I am unable to add a new radschedulenavigator from the toolbox as many exceptions will be thrown:

Julian Benkov
Telerik team
 answered on 27 Mar 2013
1 answer
208 views
Hello,

I am building an application that show a school's courses, and the date they fall on is not relevant. I only need to show them on the correct day of the week that they take place. How can I customize the scheduler to only show one week and that's it (i.e. Mon-Sun) and ignore any specific week of the year.

Also, since the courses will be appointment objects on the scheduler, I am wondering if it is possible to have one appointment show up on two different days. That is to say, some courses take place on Monday AND Wednesday, so when I click on either one to move them, can I make them both respond and move together, acting as one entity?

Thanks for any help and keep up the good work Telerik.


EDIT: I figured out the first part but really could use some help with making two appointments on different days act as one.
Julian Benkov
Telerik team
 answered on 27 Mar 2013
1 answer
136 views
The attached picture is a ribbon bar chunk in an application we purchased.  I would like to copy that style on one of my ribbon bar chunks.  I haven't found out how to make the separator and the smaller button elements.  How can I do that?

Thank you,
Gary
Anton
Telerik team
 answered on 27 Mar 2013
6 answers
209 views
I'm a feature developer who also sometimes need to write Coded UI tests from time to time.  I have the WinForms RadControls installed on my VS2010 so that I can easily add Telerik controls to our app.  However, whenever I have it installed, I'm unable to edit (any) ui maps.  Whenever I launch the Coded UI Test Builder to spy on new controls, I receive the following error:

Playback failed to initialize: Failure to load Extension package.  PackageName:RadControls for WinForms Test Extension, Version 1.0, Vendor: Telerik Inc, Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Telerik.WinControls.CodedUI.2010\v4.0_2013.1.220.40_5bb2a467cbec794e\Telerik.WinControls.CodedUI.2010.dll.  Restart Coded UI Test Builder.

It's annoying to have to continuously uninstall/reinstall RadControls depending on the work I'm doing.  Has anyone else seen this, is there a suggest workaround?

Thanks!

Brandon
Jack
Telerik team
 answered on 27 Mar 2013
1 answer
133 views
Hello,

I am working on a project right now where we are parsing in a text file with scheduling information pertaining to a college here. We have created Course classes to hold the information (i.e. teacher's name, course building, time starting/ending, courses name, etc.) and they are wanting this to be put into a calendar like format with all of the courses showing up on it. Ideally, they would like to drag and drop these courses on the calendar to change the dates of them, click them to edit some information on the class, etc.

I have just acquired Telerik's radcontrols for WinForms, and I am wondering if there is a control(s) that might help me accomplish this? I have looked at them at a glance, but honestly, I was a little intimidated with all of the options so I figured I might ask here first.

Thanks for any input, and keep up the good work Telerik.


- Jordan
Ivan Petrov
Telerik team
 answered on 27 Mar 2013
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
StatusStrip
CheckedListBox
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
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
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
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?