Telerik Forums
UI for WinForms Forum
1 answer
451 views
Hi
Where do i find the Telerik.WinControls.UI.Docking.ToolTabStrip control like in the Help Desk Demo application ?

Do not see it in the toolbox?

Kind Regards
D.Kruger
Nikolay
Telerik team
 answered on 28 May 2010
1 answer
246 views
Under normal circumstance when the mouse is hovered over the menu item, the menu item must be highlighted and when the mouse focus is lost the menu item must not be highlighted,

On some Windows xp machine it works properly (Pic 1) while on others including windows 2003 server machines the menu item is still highlighted even after the mouse focus is lost (Pic 2).

Can any one tell me what can i do to get it working on any operating system?
Deyan
Telerik team
 answered on 28 May 2010
3 answers
331 views
Hi everybody.

I'm using the gravitybox schedule tool to make appointments, and it's linked to the radCalendar1. But I have a problem regarding selecting the start and end date. I've tried the FocusedDate, SelectedDate properties. The focuseddate doesn't work as I want to, and selectedDate only shows the date 01/01/1980.

Can anybody assist me, how to retrieve the start and end date when I select in the radCalender?

I've also used the Calendar from dotnetbar. It has properties such as selectionStart and selectionEnd, and it works 100%.

Best regards

Kim
Dobry Zranchev
Telerik team
 answered on 28 May 2010
9 answers
421 views
Hello,]
I try  with telerik  since  1 month  i   use  c#.
I have  two column  with type of GridViewComboBoxColumn    , In current  row  when value of frist  colunm changed  I want  to fill a cell  of second column with a datasource  depend on  a first    column.
i see  almost  of  Forums  related  to this  point  , but     I cant  find  what i want.
 

Jack
Telerik team
 answered on 28 May 2010
2 answers
146 views
Hello,

Is there a way to make the nested grid (one level down) visible or invisible? I don't want to show the grid at all.

and if I make it invisible then will it affect the summary row calculations?

regards,
Khizar
Khizar Khan
Top achievements
Rank 1
 answered on 28 May 2010
1 answer
243 views
I have set the visibility of my tool bar items to False inside my RadMenu.
When I run the porject they are invisible which is exactly what I want.

I have come to add new items to these hidden menus and I can't because they are not visible in design either.

Surely this is a bug and they should be visible in design mode?

Anyway, I need to be able to add the items, how can i go about doing it?
Martin Vasilev
Telerik team
 answered on 28 May 2010
1 answer
1.2K+ views
i have a MDI form in my application. the UI uses custom controls made of diff rad controls, also has a few forms.

now i want to apply theme for the whole application at start up. i dont want to set the ThemeName property for each control. how can i do this easily?
Nikolay
Telerik team
 answered on 28 May 2010
1 answer
248 views
Hi there,

I'm pretty new with Telerik and have a question. I have a RadDock1 on a form. On that form there is also a button. Every time the users clicks this button I want to create a new tab on RadDock1 filled (maximized) with a (win)Form (named "frmProject").
I've created a sub "AddPage":

    Private Sub RadButtonElement1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles RadButtonElement1.Click  
        AddPage(frmProject, "Project")  
    End Sub 
 
 
    Private Sub AddPage(ByVal f As Form, ByVal strPage As String)  
 
        RadDock1.DockControl(f, DockPosition.Fill, DockType.Document)  
 
    End Sub 

The first time the user clicks the button a new tab is added with the form filled on it. But the second time the user clicks the button only a tab is added. I can't see the form.

Can you please tell me what I am doing wrong?

Kind regards,
Ronald
Nikolay
Telerik team
 answered on 28 May 2010
2 answers
171 views
We have a RadListBox populated with about 10 items.

The initial display is fine, but when we scroll down to see further items the height of each item is altered.
In the attached file the first image shows the correctly diplayed RadListBox. The second image shows the result of scrolling down only one item.

Worse: the scroll bar has not compensated for the altered height of each item so that it is impossible to scroll further down to the end of the list.

We have tried the following, but nothing works:
i. forced the items to not TextWrap,
ii. populate items with no image

Is it possible to prevent this behaviour?

Thanks in advance.
Neo Cortex
Top achievements
Rank 1
 answered on 28 May 2010
2 answers
176 views
If I inherit From RadTabStrip the tabs do not follow the theme.

They appear as a box.


using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 
using Telerik.WinControls.UI; 
using Telerik.WinControls; 
 
namespace TabSample 
    
        public class UITabControl : RadTabStrip 
        { 
           
            private List<UITab> _tabs = null
 
            public UITabControl() 
                : base() 
            { 
                Dock = DockStyle.Fill; 
                EnableTabControlMode = true
                AutoSize = true
                _tabs = new List<UITab>(); 
            } 
 
            public void CreateTabs() 
            { 
                for (int i = 1; i < 5; i++) 
                { 
                    TabItem tab = new TabItem(); 
                    tab.Text = i.ToString(); 
                    RadButton b = new RadButton(); 
                    b.Text = i.ToString(); 
                    b.Click += new EventHandler(b_Click); 
                    tab.ContentPanel.Controls.Add(b);    
                    this.Items.Add(tab); 
                } 
            } 
 
            void b_Click(object sender, EventArgs e) 
            { 
                RadButton b = (RadButton)sender; 
                if (b.Text == "1"
                    ThemeResolutionService.ApplicationThemeName = "Aqua"
                if (b.Text == "2"
                    ThemeResolutionService.ApplicationThemeName = "Desert"
                if (b.Text == "3"
                    ThemeResolutionService.ApplicationThemeName = "Breeze"
 
            } 
       
        } 
     

Troy
Top achievements
Rank 1
 answered on 27 May 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)
Form
Chart (obsolete as of Q1 2013)
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
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?