Telerik Forums
UI for WinForms Forum
3 answers
385 views
Hello,

We have a lot of controls that don't fit on one screen. Instead of using tabs I am thinking about purchasing the Rotator control. However, I have a few questions.

Is it possible to put panels with controls on the Rotator and then rotate from one panel to another ?

Is it possible to programmatically do the rotating, without using a timer, so the user has full control ?

Many thanks.
Martin Vasilev
Telerik team
 answered on 14 Jul 2008
4 answers
92 views
I have seen a few posts on this but nothing solid.  I would like to create a UI in my Winforms app that resembles the Xbox 360 Dashboard blades... Somewhat a left to right panelbar.

Is there a way to use the control in this fashion?  If not, does anyone have any pointers on where to start on creating something like this (I do have the source code for the controls)...

Thanks in advance,

- Adam
Boyko Markov
Telerik team
 answered on 14 Jul 2008
3 answers
375 views
Is there any way to automatically scroll items?  I see the AutoScroll property but when I set it to true it doesn't seem to do anything.


Mike
Telerik team
 answered on 14 Jul 2008
1 answer
127 views

Hello,
I would like to use the RadGridview in a similar way as the PropertyGrid, using Reflections.
This will require me to have a column with a lot of different types (string, Datetime, TypeConverter etc.), is it possible to give each cell a unique editor?

Thanks,

Joel

Nikolay
Telerik team
 answered on 14 Jul 2008
1 answer
163 views
Hi,

I seem to be having an issue with the maximize fullscreen of a RadForm and dual monitors.

I have two monitors with the resolutions of 1050x1680 and 1280x1024.

When I set the form to maximized on the first monitor it is fine. But when I try to maximize the RadForm on the second monitor it will stretch across both monitors and not draw the controls on the form correctly.

I have to right click on the task bar and select restore to get the window back. But even then the controls are not redrawn. Only after I resize the form by the grip bar do the controls repaint.

Is this a known issue?

On a different subject is there a way to search other peoples support tickets?
I generally use the forums to search for the issue I am having and if I can't find anything in the forums then I will post on the forum and may send a support ticket too if I need an urgent solution.

But most of the time I think I may have posted the same query as someone else sending a support ticket. If there was a way to search a knowledge base of support tickets that have been resolved it may reduce the amount of support tickets you need to answer.

Thank you

Adrian
Angel
Telerik team
 answered on 14 Jul 2008
1 answer
169 views
Hello Telerik people.  I'm wondering if you are planning to create a BubbleBar control that will appear in the toolbox. I think this is a great feature and really adds a lot of POP to an application. 

If so, then let me go a step further and ask if you have a standard set of BubbleBar icons such as Open, Save, Delete, Search, Print, Page Left, Page Right, Page Up, Page Down, Configuration (gears), Help, etc..

..okay, the icons may be asking a bit much but I would really, really, really like to see the BubbleBar control implemented.

What do you think?

Nikolay
Telerik team
 answered on 14 Jul 2008
1 answer
551 views
Hello,

I have a RadTextBoxElement within a RadToolStripItem. When a specific button is pressed I want the text box to receive focus, but the focus method returns false (and doesn't do anything).
I have tried setting CanFocus, Enabled and Visibility to true and visible but the focus method still doesn't work. Any ideas on how to make it work?
Nikolay
Telerik team
 answered on 14 Jul 2008
9 answers
307 views
Hello!
Many of my users would like to export formatted / filtered data from a datagrid and into Excel. Is there any way of solving this?

Does the datagrid support VirtualMode? I could not find any property similar to this. Or any event similar to the default DataGridViews's CellValueNeeded.

If it is not possible in this version, I would like to send a request for it.

Martin Vasilev
Telerik team
 answered on 14 Jul 2008
1 answer
78 views
Greetings:

Before Q1-2008 SP1 I loaded my radGridView with a DataSet in the DataSource property.  After Q1-2008 SP1 that throws a low-level error.  So, I started loading the grid via the 'MasterGridViewTemplate.LoadFrom' method.

It works except that the columns I previously added manually through code, including an additional Command column, are now replaced by the columns from the DataReader being passed to the LoadFrom method.  Before the LoadFrom my column count is 6 (including my Command column) and after the LoadFrom it is 5 (the number of columns in the DataSet).

QUESTION:

How can I keep the columns that I manually added ?

Please advise ASAP

Thanks,

Robb Murdock

Julian Benkov
Telerik team
 answered on 14 Jul 2008
3 answers
161 views
Hello,

I have an xml document such as this:

<Message> 
    <SequenceNumber>1</SequenceNumber> 
    <Comments> 
        <Comment> 
            <SequenceNumber>1</SequenceNumber> 
            <CommentSource>REMOTE_HOST</CommentSource> 
            <CommentText>Free text comment data</CommentText> 
            <CommentType>FT</CommentType> 
        </Comment> 
        <Comment> 
            <SequenceNumber>2</SequenceNumber> 
            <CommentSource>REMOTE_SOURCE</CommentSource> 
            <CommentText>Free text comment data</CommentText> 
            <CommentType>FT</CommentType> 
        </Comment> 
    </Comments> 
    <DelimiterDefinition>|\^~</DelimiterDefinition> 
    <SenderID>REMOTE_HOST</SenderID> 
    <ReceiverID>LOCAL_HOST</ReceiverID> 
    <Comment>EmptyComment</Comment> 
    <ProcessingID>Production</ProcessingID> 
    <Version>1</Version> 
    <DateTime>0001-01-01 00:00:00</DateTime> 
    <CustomerIdentifying> 
        <CustomerIdentifyingRecord> 
            <SequenceNumber>1</SequenceNumber> 
            <Comments> 
                <Comment> 
                    <SequenceNumber>1</SequenceNumber> 
                    <CommentSource>REMOTE_SOURCE</CommentSource> 
                    <CommentText>Free text comment data</CommentText> 
                    <CommentType>FT</CommentType> 
                </Comment> 
            </Comments> 
            <Name>Jones^David</Name> 
            <MothersMaidenName /> 
            <BirthDate>1964-03-15</BirthDate> 
            <Sex>M</Sex> 
            <EthnicOrigin>NotSpecified</EthnicOrigin> 
            <Address /> 
            <TelephoneNumber /> 
            <TestOrder> 
                <TestOrderRecord> 
                    <SequenceNumber>1</SequenceNumber> 
                    <Comments /> 
                    <Priority>U</Priority> 
                    <UserField1>Order Comments</UserField1> 
                    <UserField2 /> 
                </TestOrderRecord> 
            </TestOrder> 
        </CustomerIdentifyingRecord> 
    </CustomerIdentifying> 
</Message> 


Can I display this data in a hierarchical radgridview where child records/tables of "Message" can be both "Comment" tables and "CustomerIdentifyingRecord" tables?

Simply loading the xml as a dataset does not appear to be sufficient.

Is this possible with the radgridview?

Thanks
Jack
Telerik team
 answered on 13 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?