Telerik Forums
UI for WinForms Forum
7 answers
157 views
We've all be anxiously awaiting the Q1 2008 release and it's finally here. Yay!

Unfortunately, I installed it on my system, used the upgrade tool on my project, and then opened the project to find what kinds of adjustments I might need to make to fit in with breaking issues. I had quite a few. Several of my forms and controls are throwing all kinds of errors when trying open in the designer as there are a lot of incompatibilities, etc.

I opened up the docs I downloaded to find where I can best fix things only to find they are the Q3 2007 docks. With all the changes in this release and the large number of things I now find I need to alter/fix to upgrade, this is frustrating.

I went on the website to view the online docs and they also point to Q3 2007. Please alter both the online docs and the downloadable chm to Q1 2008. I can understand if the docs aren't ready yet and can be patient a little longer, but it's quite frustrating to find you package and label the old docs as new. Both the link and the file name reference Q1 2008, but when you download it, the file inside th zip is the old name and version.
Nikolay
Telerik team
 answered on 09 Oct 2008
1 answer
213 views
Hello

I have a rad listbox which when someone clicks on an item if its already selected I need it to unselect. Also When a particular button is clicked I need everything to be unselected, but its not working! It leaves a black outline round the item and when I call the selected items in code its still selected!

I have taken my listbox and put it on a simple test form and it still does it!

Here is my code:

 private int selectedIndex;  
        public TEST()  
        {  
            InitializeComponent();  
        }  
 
        private void radListBox1_SelectedIndexChanged(object sender, EventArgs e)  
        {  
            int newIndex = radListBox1.SelectedIndex;  
            if (newIndex == selectedIndex)  
            {  
                DeselectAllElements();  
            }  
            else 
            {  
                selectedIndex = newIndex;  
            }     
        }  
        public void DeselectAllElements()  
        {  
            radListBox1.ClearSelected();  
            radListBox1.SelectedIndex = -1;  
            selectedIndex = -1;  
        }  
        private void TEST_Load(object sender, EventArgs e)  
        {  
            string[] list = "blah1,blah2,blah4,blah5,blah6".Split(',');  
            radListBox1.DataSource = list;  
        } 


Please help!

What am I doing wrong!

Bex
Nick
Telerik team
 answered on 09 Oct 2008
3 answers
180 views
TextBox doesn't have text and focus and shows NullText. When I click to textbox and click to another control NullText is disappears!
Nikolay
Telerik team
 answered on 08 Oct 2008
1 answer
94 views
Hi,
I created a hierarchical grid. The problem is that the part of the ChildGridViewTemplate is not visible. Please refer to the image:

Hidden Grid

Thanks
Paul
Nick
Telerik team
 answered on 08 Oct 2008
1 answer
124 views
According to my requirement, whenever the user clicks on particular graph series or hovers,  tool tip should display x-position and y- position at that point.
Code written by me:

foreach

(ChartSeries collection in chart.Series){
foreach (ChartSeriesItem item in collection.Items
{
item.ActiveRegion.Click +=
new RegionClickEventHandler(ActiveRegion_Click);
}
}

 

 

protected void ActiveRegion_Click(object sender)
{
ChartSeriesItem item = (ChartSeriesItem)sender;

 

item.ActiveRegion.Tooltip = item.Parent.Name;

//MessageBox.Show(item.Parent.Name);
}

error:Error 212 No overload for 'ActiveRegion_Click' matches delegate 'Telerik.Charting.RegionClickEventHandler' 

 

Dwight
Telerik team
 answered on 08 Oct 2008
5 answers
110 views
Hi,

I am trying to place a label between two points (and NOT at the point) in a line chart and I am not sure how to go abt it. Kindly guide me. Any help would be greatly appreciated.

Thanks,
Harini
Dwight
Telerik team
 answered on 08 Oct 2008
1 answer
115 views
Hi,
I am new to the telerik radcontrols. i am using a 3rd party search library to index and search a lot of data sitting on a disk somewhere. i need to display the results in a rad grid view control. what do i need to do in my class to do this. when i point the datasource property to the class object, it just shows the two parameters passed into the constructor of the class.
thanks,
Bahram
Nick
Telerik team
 answered on 07 Oct 2008
4 answers
151 views

In my solution I had RadControls 2007 and I can drag an item from a RadList box, to a RadTextbox

After the upgrade to RadControls 2008 Q2 – the behaviour is a bit funny...

If I use the MouseDown  event

private void lstAlertTokens_MouseEnter(object sender, MouseEventArgs e)

        {

            if (lstAlertTokens.SelectedIndex >= 0)

            {

                string text = lstAlertTokens.Text;

                lstAlertTokens.DoDragDrop(text, DragDropEffects.Copy);

            }

        }

 The Drag and drops works, but when I click on items in the list, they are not selected (highlighted), I must use the up/down keyboard keys to first select the item I want, before I drag and drop it.

If I use the mouseUp event

 The item selection works now (gets highlighted) when I click the mouse , but the DragDrop effect icon is missing.. So the drag and drop works, but you don’t see the  DragDropEffects.Copy effect.

 

Any ideas?

Pieter
Top achievements
Rank 2
 answered on 07 Oct 2008
2 answers
81 views
Hi ,$0i m trying help to work out a mistake in my project . I have 2 forms "CountryForm","CityForm" .In the first one COuntryForm i add 2 RadButton and that?s all right but when i add 2 RadButton in the second form CityForm when i debug on the CityForm not appear the textName on the button ,i tried many times with different project but i got always the same error..$0$0Kindly there is someone that can help me .....$0$0I dont know i post a thread 3 days ago but it dissapear if there is somthing of wrong in my thread please don't hesitate to let me know that without delete my thread in sudden way.$0$0Thanks so much.$0$0Have fun!!!$0
Vaf
Top achievements
Rank 1
 answered on 06 Oct 2008
1 answer
136 views
Hi telerik team,
I have a no. of RadMenuItems at RadSplitButton click. All RadMenuItems  can be "checked" the requirement was that the filters his/her search accordingly.

The problem is that i wan to allow multiple clicks on menu (so that user can check more then one item at a time) but currently the functionality is such a way that the menu always get closed after any of the item click and the user have toi click the split button again and again (Which looks bad). Can i provide such functionality so that the menu stays open and user can click to multiple items.

I have implemented my requirement by reopening the menu again and again but my concern with that is firstly I dont feel its a good approach and secondly the menu flicker a little ( as it opens again). please do guide me in this regard.

And please do consider this functionality in your future release if it is not available in current version.

Looking forward to your reply.

Regards,
Haroon.
Nick
Telerik team
 answered on 06 Oct 2008
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?