Telerik Forums
UI for WinForms Forum
1 answer
131 views
I'm working with 2010 Q1, and I cannot override ProcessCmdKey to trap the left and right arrow key events.  It will work in a form without the tabstrip, but not in a form with a tabstrip.  Is this a known issue?

My project is pretty far along using this version, and converting to the new version would basically require writing a new project and copying the code over.  The automatic upgrade stuff in 2010 Q2 SP1 is not appearing, probably due to the fact that my project uses Q1 dlls.  Replacing those dlls with Q2 versions causes a multitude of errors to appear.

Any ideas?

thanks,

David
Stefan
Telerik team
 answered on 20 Sep 2010
1 answer
167 views
Dear all,

I need to export Arabic data from gridview into Excel sheet, I manage to get it to work, but the data doesn't show correct in the output excel sheet (like ?????) although it appears okay in the gridview itself.

Could anyone help please, how to overcome this issue ...

Best regards
Waleed
Martin Vasilev
Telerik team
 answered on 20 Sep 2010
1 answer
160 views

I've got a data set that needs to be displayed as a set of stacked columns.

So far so good, now the tricky part.

The values in a given stack may belong to a different data set:

e.g.

1st value belongs to set A,

2nd value belongs to set B,

3rd value belongs to set C

4th value belongs to set B

5th value belongs to set A

If we say A is Red, B is Green, and C is Blue the stacked bars need to be

Red

Green

Blue

Green

Red

 

Is there any way to accomplish this?

Ves
Telerik team
 answered on 20 Sep 2010
3 answers
163 views
Is there any way to disable the animation for all submenus in an application menu?   I can't find anything in the theme builder or while editing the UI elements.  In the menu animations demo there's a DropDownAnimationEnabled property, but that doesn't seem to exist anymore.   I tried the following code, and it didn't work:

RadApplicationMenuDropDown ddForm = this.radApplicationMenu1.DropDownButtonElement.DropDownMenu as RadApplicationMenuDropDown;
ddForm.FadeAnimationType = FadeAnimationType.None;
Stefan
Telerik team
 answered on 20 Sep 2010
8 answers
196 views
I'm supplying a translation to the radscheduler, but some of the translations need more space, especially on the editrecurrancedialog.
I already have provided a custom appointment that inherits from Telerik.WinControls.UI.Appointment successfully and provided a custom editappointmentdialog that inherits from Telerik.WinControls.UI.Scheduler.Dialogs.EditAppointmentDialog for editing.
How can i do the same for editrecurrencedialog?

I found I can inherit a form the same way as with the editappointmentdialog, but which event/property do I need to override/set to load my new editrecurrencedialog?

On a side note, I also would like to know what procedure you recomment to utilize the possibility for more than one resource. I.e. add a "More..." button behind the resource combo with it's own form? How would this affect the cmbResource when more than one resource is selected?

Using Winforms Q2 2009, VS2008
Dobry Zranchev
Telerik team
 answered on 20 Sep 2010
0 answers
163 views
Hello Telerik's Developer
First , i want to say Thanks To Telerik for there Products , and there dynamisme concerning its uses.
So my question is :Can you give us an link for Icons to the ribbon ,like Ms Office ribbon's Icon 
Thanks
mohammed bousba
Top achievements
Rank 2
 asked on 18 Sep 2010
10 answers
357 views
I have to use a map control in my winform application. Any suggestions?

Thanks
Deepa Balasundaram
Top achievements
Rank 1
 answered on 17 Sep 2010
3 answers
445 views
I'm using Q1 2010 SP2 and having trouble resizing and positioning a ToolWindow after it has already been created.  Here's some code I've tried:

 

 

 

 

toolWindow.Size = new Size(400, 300);
toolWindow.Top = Location.Y;
toolWindow.Left = Location.X;
toolWindow.DockState = Telerik.WinControls.UI.Docking.DockState.Floating;

 

 


Also tried these...

 

//toolWindow.TabStrip.SizeInfo.SizeMode = SplitPanelSizeMode.Absolute;
//toolWindow.TabStrip.SizeInfo.AbsoluteSize = new Size(150, 0); 
  
and 
  
//if (toolWindow.DockingSite.HostFrom != null)
//{
// toolWindow.DockingSite.HostForm.Size = new Size(300, 300);
//} 

 

 

 

But none of these appeared to work...ideas?  Thx...

Nikolay
Telerik team
 answered on 17 Sep 2010
7 answers
309 views
Hi, I would like set start date and end date of schedular. Because the users have right for navigate in the progress week and the next week only. It's possible to explain me how to have this result.

Thanks a lot
Dobry Zranchev
Telerik team
 answered on 17 Sep 2010
1 answer
135 views
Dear All,

 I'm strugling with one problem in GridViewComboBoxColumn

I have one Combo Box cell in my RadGridView and I created one Data Table object and set it as dataset for the Combo Box set .

When I’m entering into the cell, the first value in the datatable is appearing in the grid automatically and it is not updating that value.

Please check the cod below

public Form1()
      {
          InitializeComponent();       
           
          this.radGridView1.Rows.AddNew();
      }
      void SetItems()
      {
          DataTable logicalOps = new DataTable();
          logicalOps.Columns.Add("Col1");
          logicalOps.Columns.Add("Col2");
           
          logicalOps.Rows.Add("=", "Equal to");
          logicalOps.Rows.Add("<>", "Not equal to");
          logicalOps.Rows.Add(">", "Greater than");
          logicalOps.Rows.Add(">=", "Greater than equal to");
          logicalOps.Rows.Add("<", "Less than");
          logicalOps.Rows.Add("<=", "Less than equal to");
          logicalOps.Rows.Add("START", "Start With");
          logicalOps.Rows.Add("END", "End With");
          logicalOps.Rows.Add("CONTAINS", "Contains");
          logicalOps.Rows.Add("IS NULL", "IS NULL");
          GridViewComboBoxColumn ctrl = (this.radGridView1.Columns[0] as GridViewComboBoxColumn);          
          ctrl.FieldName = "Col2";
          ctrl.DataSource = logicalOps;
          ctrl.DisplayMember = "Col2";
          ctrl.ValueMember = "Col1";
            
             
      }
Here, as I said when the first cell is in edit mode it will show "Equal to" automatically but it will never update the cell,
one more problem is when I select  a value the the default value will be previously selected value and it will not allow to update
with the same value

Please Help .

Thanks in Advance,

Manu Krishna

Here, as I said when the first cell is in edit mode it will show "" automatically but it will never update the cell,one more problem is when I select  a value the the default value will be previously selected value and it will not allow to update with the same valuePlease Help .Thanks in Advance,Manu Krishna
Jack
Telerik team
 answered on 17 Sep 2010
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
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?