Telerik Forums
UI for WinForms Forum
2 answers
128 views
hi, I couldn't know how to blur (cannot be selected anymore dates) and keep today's date and the following dates enabled and can be selected.
Ivan Todorov
Telerik team
 answered on 20 Apr 2011
5 answers
104 views
Hello;

I'm currently trying to dynamicaly change the orentation of my radDock1 's DocumentTabsTextOrientation.

Obviously i'm missing something because no matter how I get/set the information its not allowing change.

What would be the correct (and working) way to change the orientation from vertical to horizontal?

Thanks for your assistance.
Alexander
Telerik team
 answered on 20 Apr 2011
3 answers
180 views
Hello,
maybe somone can help me with this little problem.
I have a Groupbox with several RadioButtens in it. Then I added a RadShortCut to the GroupBox and I want the first RadioButton in that GroupBox to be focused.
This works in principle, the RadioButton gets the focus, but the cues are not shown for the focused RadioButton. This is not the expected behaviour, so the user cannot see that he has entered the GroupBox.
Only when using the TAB key to move to the GroupBox the cues are shown. I want to show the cues programmatically. Is there an option to do that?
I used the following code:
Imports Telerik.WinControls
Public Class Test4
     Private Sub Test4_Load(ByVal sender As ObjectByVal e As System.EventArgsHandles Me.Load
        ThemeResolutionService.ApplicationThemeName = "Desert"
         RadGroupBox1.HeaderText = "<html><u>R</u>adGroupBox1"
        RadGroupBox1.RootElement.Shortcuts.Add(New RadShortcut(Keys.Alt, Keys.R))
        AddHandler RadGroupBox1.RootElement.Click, AddressOf RadGroupBox1_Click
    End Sub
     Private Sub RadGroupBox1_Click(ByVal sender As System.ObjectByVal e As System.EventArgsHandles RadGroupBox1.Click
        RadRadioButton1.Focus()
    End Sub
End Class

Thank you for any hint.
Cheers Roberto
Jack
Telerik team
 answered on 20 Apr 2011
8 answers
136 views
I need to cancel the CurrentRowChanging event when the user clicks on the expander (the plus / minus sign), but have not figured out how to when the expander is clicked. CellClick event is not fired when clicking on the expander.

Thank you in advance for any tips.

Andy
Andy
Top achievements
Rank 1
 answered on 20 Apr 2011
5 answers
93 views
Hi.. how are you

          Is there a method or a work around to Export the heirarchial RadGridView data to Excel?

I tried the following methods:
  1. Using Telerik.Data.RadGridViewExcelExporter 
  2. Using RadGridReportingLite. sample code using RadLite.

            (RadGridReport rep = new RadGridReport(strFileName);

 

            rep.ReportFormShow(

this, this.radGridView1);

 

 

 

 

both of them are exporting only MasterTable Data. child Table data is not exported.

Please suggest any solution.

Thank you,
Regards
Elver Emilio

Richard Slade
Top achievements
Rank 2
 answered on 20 Apr 2011
1 answer
73 views
Hi team,

I am using telerik Datagridview.

I have colums.Name ,  Age ,Place ,DoB,

On form loading i have hidden DoB column.With the help of context menu column chooser i can see the hidden column DoB.

However i want to hide the DoB Column in Column chooser Dialog also.

Thanks
suresh,

Richard Slade
Top achievements
Rank 2
 answered on 20 Apr 2011
1 answer
85 views

Could you please provide me with a sample showing how to use the item.add method of the chartseries object that uses ole converted start and end times to provide a double as xvalue1 for a point series?  Is the step from that to a GAntt or Bubble series that great?

 

 

Dim itm As New ChartSeriesItem

 

 

 

Dim startTime As Double = New DateTime(q.Year, q.Month, q.Day, q.Hour, 0, 0, 0).ToOADate()

 

 

itm.XValue = startTime

 

itm.XValue2 = startTime + 1

 

 

 

Dim desc As String = vv.id & " " & vv.Submit_Date & " " & vv.Impact & " " & vv.Status & " " & vv.Description

 

 

itm.YValue = 1

 

 

 

' itm.YValue2 = 2

 

itm.ActiveRegion.Tooltip = desc

itm.PointAppearance.Dimensions.AutoSize =

 

False

 

itm.PointAppearance.Dimensions.Height = 50
itm.PointAppearance.Dimensions.Width = 50

s.AddItem(itm)

 

 

Next

 



 No matter what I set the pointappearance dimensions to I can't get the points to change size.
 if I were to convert the point series to a Gantt series or bubble series could you help me understand how I would increment the y2 and x2 values?  Did I do this appropriately in my sample code?

Thanks.
Evgenia
Telerik team
 answered on 20 Apr 2011
2 answers
106 views
Can i change the layout of the waiting bar to something like showing like here: http://www.jtbusa.com/common/img/waiting.gif

Or comes the RadBusyIndicator from Silverlight to Winforms?
ronny
Top achievements
Rank 1
 answered on 20 Apr 2011
1 answer
676 views
hi..
i use splitcontainer and i divide it into horizontal, how can i fix the top splitpanel size and the bottom can be flexibel according to the max form size?
Ivan Petrov
Telerik team
 answered on 20 Apr 2011
6 answers
604 views
Hi,

I am using a RadContextMenu and a spell checker on a richtextbox. When I right click on text, the RadContextMenu and the spell check menu are showing up. I want to hide the RadContextMenu when a user right clicks.

Following is the code I am using to accomplish that, but I think this is not the right way as a horizontal line shows up when I try to collapse the menu items part of the RadContextMenu. Also for the first time the RadContextMenu shows up even before I get into the mouseup event.

Please suggest me a way to hide the RadContextMenu.


   private void rtbComments_MouseUp(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                if (rtbComments.SelectionLength > 0)
                {
                    mnuCut.Visibility = ElementVisibility.Visible;
                    mnuCopy.Visibility = ElementVisibility.Visible;
                    mnuPaste.Visibility = ElementVisibility.Visible;
                }
                else
                {
                    // Check if the words under the cursor are misspelled.
                    int x = SpellingCheckerEngine.CheckCtrlBackgroundMenu(rtbComments.Handle, e.X, e.Y, RTB1Options, RTB1MarkColor);
                    // If there were no misspelled words under the cursor, popup the copy menu.
                    if (x == 0)
                    {
                        mnuCut.Visibility = ElementVisibility.Visible;
                        mnuCopy.Visibility = ElementVisibility.Visible;
                        mnuPaste.Visibility = ElementVisibility.Visible;
                    }
                    else
                    {
                        mnuCut.Visibility = ElementVisibility.Collapsed;
                        mnuCopy.Visibility = ElementVisibility.Collapsed;
                        mnuPaste.Visibility = ElementVisibility.Collapsed;
                    }
                }
            }
        }
Ivan Todorov
Telerik team
 answered on 20 Apr 2011
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?