Telerik Forums
UI for WinForms Forum
3 answers
130 views
I'm using the radcontrol for windows 2007 Q1.
I put a toolstrip control in a base windows then I inherited it and I design the form.
The toolstrip has the "Hide Add new Row/Column" command on an empty strip.
It's very annoyng because it's easy to click on it when trying to select a component. It creates a new strip, and the only way to delete it is to go in the designer.vb because I can't edit inherited components.
Is there any way to disable that command. It gives us a lot a problems in designing forms.
Thanks a lot!
Boyko Markov
Telerik team
 answered on 28 Jul 2008
3 answers
162 views
Hi There,
I want to mark cells as readonly based on a given value in the databounditem and in some situations i want to mark the complete row as being readonly.

Is this possible?

many tanx in advance, grtz
Nikolay
Telerik team
 answered on 28 Jul 2008
1 answer
80 views
2008Q2 throws an exception if you add the same TreeNode twice to a Nodes
collection, while 2008Q1 allowed (or silently ignored) this.

Actually found a coding error in my test app, where the same child node
was added multiple times. The exception message could be friendlier ....

Regards
Erwin


Jordan
Telerik team
 answered on 28 Jul 2008
7 answers
283 views
I am having a problem grouping by a certain column and ordering by a different column. When I group by a column it puts them in alphabetical order. I want the rows in a different order. For example...

I'm using XML similar to this to populate the gridview...
<?xml version="1.0" encoding="UTF-8"?>  
<RootElement xmlns:mstns="http://tempuri.org/RootElement.xsd">  
    <System> 
        <ID>681F04EF-80CD-47FE-AC8C-5DC497E2BDCD</ID> 
        <Name>String</Name> 
        <Owner>String</Owner> 
        <Services>String</Services> 
        <SystemType>Beta</SystemType> 
        <OrderNum>1</OrderNum> 
        <DateLastModified>2001-12-17T09:30:47.0Z</DateLastModified> 
    </System> 
    <System> 
        <ID>CCA76E63-B4B5-4AA4-A5BD-E8A1D83A0C91</ID> 
        <Name>String</Name> 
        <Owner>String</Owner> 
        <Services>String</Services> 
        <SystemType>Zeta</SystemType> 
        <OrderNum>2</OrderNum> 
        <DateLastModified>2001-12-17T09:30:47.0Z</DateLastModified> 
    </System> 
    <System> 
        <ID>CCA76E63-B4B5-4AA4-A5BD-E8A1D83A0C91</ID> 
        <Name>String</Name> 
        <Owner>String</Owner> 
        <Services>String</Services> 
        <SystemType>Alpha</SystemType> 
        <OrderNum>3</OrderNum> 
        <DateLastModified>2001-12-17T09:30:47.0Z</DateLastModified> 
    </System> 
    <System> 
        <ID>CCA76E63-B4B5-4AA4-A5BD-E8A1D83A0C91</ID> 
        <Name>String</Name> 
        <Owner>String</Owner> 
        <Services>String</Services> 
        <SystemType>Kappa</SystemType> 
        <OrderNum>4</OrderNum> 
        <DateLastModified>2001-12-17T09:30:47.0Z</DateLastModified> 
    </System> 
</RootElement> 

I'm using the OrderNum as a way to determine which order I want them showing up in the gridview. So I want to see the list like this...

Beta
    (All of the rows that fall into the Beta group)
Zeta
    (All of the rows that fall into the Zeta group)
Alpha
    (All of the rows that fall into the Alpha group)
Kappa
    (All of the rows that fall into the Kappa group)

If I don't use OrderNum at all I get...
Alpha
    (All of the rows that fall into the Alpha group)
Beta
    (All of the rows that fall into the Beta group)
Kappa
    (All of the rows that fall into the Kappa group)
Zeta
    (All of the rows that fall into the Zeta group)

Obviously it's defaulting to alphabetical order.

If I use  "OrderNum format '{1}. ', SystemType format '{1}' Group By OrderNum I get

1. 
    (All of the rows that fall into the Beta group)
2. 
    (All of the rows that fall into the Zeta group)
etc...

I want to see

1. Beta
    (All of the rows that fall into the Beta group)
2. Zeta
    (All of the rows that fall into the Zeta group)
etc...

or

Beta
    (All of the rows that fall into the Beta group)
Zeta
    (All of the rows that fall into the Zeta group)
etc...

Sorry for the length, but I wanted to make sure you all had all the information you might need to help me out.

Thanks in advance.

Jack
Telerik team
 answered on 28 Jul 2008
1 answer
115 views
I was previously able to achieve a single click dropdown on a GridViewComboBoxColumn with the following code:

    Private Sub RadGridView1_CellEditorInitialized(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles RadGridView1.CellEditorInitialized 
        If Not (Me.RadGridView1.ActiveEditor Is Nothing) AndAlso (TypeOf Me.RadGridView1.ActiveEditor Is RadComboBoxEditor) Then 
            'CType(Me.RadGridView1.ActiveEditor, RadComboBoxeditor).ShowDropDown 
        End If 
    End Sub 

Now that I have upgraded to Q2 2008, the ShowDropDown event has disappeared.  I do not find any helpful advice within the release notes for Q2 2008.

Is there still a way to accomplish this?
Dimitar Kapitanov
Telerik team
 answered on 28 Jul 2008
8 answers
146 views
May I know how can I add Shaped Form into project? I can't find the "ShapedForm" control @ the toolbar. I tried to add item, but seems like even I added all available control, I will couldn't see the Shaped Form appear @ the toolbar or the "New Item" under project.

The same thing happened to RadTabStripContentPanel, DockPanel.

Please advice !! Big Thanks....


Nikolay
Telerik team
 answered on 28 Jul 2008
2 answers
94 views
What do you do if you have delivered the product, your subscriptions have expired, and there are outstanding bugs in your software... The client isn't going to pay for another subscription because the product has been delivered. The latest version I have is Q3 2007.  The client has requested to turn off the Hot Tracking capability in the RadGridView Control for WinForms.  When you do this in Q3 2007, it does not work.  I received a reply saying that this was fixed in Q1 2008. Well of course, I don't have that version because the subscription has expired... So therefore I cannot fix the GRID.  Now what???
Tim
Top achievements
Rank 1
 answered on 26 Jul 2008
1 answer
71 views
Hi

I get an exception saying Microsoft Jet OLEDB 4.0 not installed on my computer when running you Winforms demonstration program.

Please see http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125207&SiteID=1 for an explanation of how to fix this issue on 64bit installations.

Kind Regards

David
Martin Vasilev
Telerik team
 answered on 25 Jul 2008
8 answers
137 views
sorry, posted to wrong group -> should be in RadTreeView

Using 2008 Q1

While porting code from .net TreeView to RadTreeView, I found it inconsistent, that the .Key Property is marked deprecated, but the Nodes.Find() Method which depends on the Key is not.

Regards
Erwin
Jordan
Telerik team
 answered on 25 Jul 2008
1 answer
56 views
I'm now using the Control RadTreeView in my application. When the mouse enters the areas of a RadTreeNode, the node will be showed with highlight back groud, it looks nice but my client don't like that. So how to disable that?
Jordan
Telerik team
 answered on 25 Jul 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?