Telerik Forums
UI for WinForms Forum
5 answers
161 views

There is a small issue with the highlightning of all the buttons on the radgallery. 

When you move the mousepointer on one of the buttons and the mousepointer is on the right half of the button than it is all ok. The button is highlighted and you can press the left mouse button and the correspnding action happens. 

But when you move the mousepointer from the right half of the button to the left half then there is no highlightning of the button and you can press the left mouse button and no action happens. 

Regards,

Ramius

Peter
Telerik team
 answered on 05 Aug 2009
1 answer
165 views

Hi there,
Thankyou again for this wonderful product, my test project is in completion but there are some visual and performance isssues which greatly customers satisfaction. Can you please address these issues or if they are addressed direct me to a solution.
System Specs...
1. Processor Intel Pentium Dual Core E5200 2.5Ghz
2. Motherboard - Asus Intel P5SD2-VM
3. Graphics - Onboard
4. Ram - Kingsten 1Gb

Telerik Version Currently in Use
1. Telerik Winform 2009 Q1


Scenario...
I have a standard Windows form with TitleBar Removed so that it could be made full screen.I have Added some RadButttons and Radcarousel on the form. Radcarousel Button Elements open new forms above the main background Form, which contains a background image of a standard 1024 * 768 resolution. Note - All Elements on all forms are inserted inTable Layout Panels to make things resolution independent.
Issues...
1. Flickering Issue on title bar and other form elements.
2. Increased Loading Times of components.
3. Generation of a form trail like a mouse trail of forms opend on top of the main form containing a background image. Whereas Standard forms donot suffer these problems. the issue decreases a bit if i decrease the opacity of the form, but then there ae visbility issues. 

Thankyou!!!
Awaiting Response Soon...


Georgi
Telerik team
 answered on 05 Aug 2009
1 answer
144 views
Hi!

I have a main form that is set to contain MDI child forms.
In this form I have added a dock control and set it to auto detect mdi.
I then add mdi childs to the main form and the dock control displays them as tabs, perfect :)

But.... How can I change active tab from source code?

(I'm using 2009 Q2 SP1)

Regards
Per
 
Boryana
Telerik team
 answered on 05 Aug 2009
1 answer
97 views
Hi,

I am trying to set my Gridview to the Office2007Blue theme but the theme does not seem to be available.  The only three themes i see are Reset, Control default and vista.  How do i enable the Office2007Blue theme?

I am using RadControls for WinForms Q3 2008 on .NET Framework 3.5.
Jack
Telerik team
 answered on 05 Aug 2009
3 answers
161 views
I have an mdi parent and child. Both these are just RadForms.
The issue is that when the code is executed to show the mdi child, I have programatically set the WindowState of the child to Maximised.
When the child loads, the child is maximised, but the top control is cut off as if it is underneath the RadMenu.
If I then use the minimise and maximise on the actual mdi child form, then the issue correct itself. It is only when the form first loads.
Deyan
Telerik team
 answered on 05 Aug 2009
1 answer
131 views
Hello,

We are considering to make a planningstool with on the one hand a grid view with all tasks to be planned and on the other hand a sheduler for each employee...

We would like to have a drag and drop functionality between the grid and the sheduler

we are using Winforms Q3 2008

is this possible ? Can somebody provide me some code ?

thanks
gerd
Boyko Markov
Telerik team
 answered on 05 Aug 2009
4 answers
705 views
Scenario:

I have a list of line items for checks to be 'approved' by the CEO.  He can take one of three actions.  He can approve it, he can explicitly deny it, or he can choose to do nothing on it at this point.

Implementation:

I have a hierarchical GridView that properly shows everything I need.  I have a single column there with 3 options " ", "approve", "deny", declared as below:

            GridViewComboBoxColumn colApproved = new GridViewComboBoxColumn(); 
            colApproved.FieldAlias = "Approved"
            colApproved.FieldName = "Approved"
            colApproved.HeaderText = "Approved"
            colApproved.DataSource = new string[] { " ", "Approve", "Deny" }; 

It is then added to the MasterGridViewTemplate.

All of this is completely fine.  I am able to capture 'ValueChanged' when it is changed and by testing the active editor I can determine that it's a combobox being changed... again, all of this is working and there is no problem.

Problem:

However, I have a button that I want to use to approve ALL items in the grid.  So, in the button click, I loop through the rows, and then reference the proper cell, but I cannot figure out how to set the selectedIndex.  I can just set a 'value' which doesn't really do what I want... here's one of the code attempts I've made:

        private void btnApproveAll_Click(object sender, EventArgs e) 
        { 
            foreach(GridViewDataRowInfo row in this.radGridView1.MasterGridViewTemplate.Rows) 
            { 
                if (((Button)sender).Text == "Approve All") 
                { 
                    row.Cells["Approved"].Value = 1
                } 
                else 
                { 
                    row.Cells["Approved"].Value = 0
                } 
            } 
           if (((Button)sender).Text == "Approve All" ) 
           { 
               ((Button)sender).Text = "UnApprove All" ; 
           } 
           else 
           { 
               ((Button)sender).Text = "Approve All"
           }  
        }

That code will literally set the Value to 0 or 1.  I have tried casting the row.Cells["Approved"] as a GridViewComboBoxColum or GridComboBoxCellElement and in both cases it did not work. 

((ComboBox)row.Cells["Approved"]).SelectedIndex = 1

That doesn't work because you cannot convert type 'Telerik.WinControls.UI.GridViewCellInfo' to 'System.Windows.Forms.ComboBox'.

Surely there is an easy way to do this?













Martin Vasilev
Telerik team
 answered on 05 Aug 2009
5 answers
157 views

My old project was: VS 2008, using VB.Net and Telerik Q1 2009.

I've update project through Project Update utility but obtain a lot of error messages (see picture: http://pic.ipicture.ru/uploads/090710/IPanVnW98P.png ).

If I try to change version of dll's manually (from 2009.1.9.414 to 2009.2.9.701) - many errors appeared (actually during changing version of TelerikCommon.dll).

Marcus Swope
Top achievements
Rank 1
 answered on 04 Aug 2009
1 answer
114 views
Hi,

Is there any way to prevent the selected main tab to collapse when the user double-clicks it? In fact I want to disable this feature.

Thanks in advance,
Mark 
Deyan
Telerik team
 answered on 04 Aug 2009
1 answer
102 views
Maybe I am just missing something, but how can reorder the ROWS in a grid?  I know that the grid doesn't support drag&drop at this time, but I can't even figure how to do it manually.  At this time, I have found 2 ways to do this:
1) Remove the row and then insert at new index
2) Since my grid is unbound I can swap all the data between the rows

Is there a better way to accomplish this at this time?

Thanks,
Lee
Boryana
Telerik team
 answered on 04 Aug 2009
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?