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

I am trying to create a pageview / expandable content area with a titlebar and show/hide arrows that is similar to how windows explorer in windows xp does it on the left side navigation of the window. Here is an example image: http://sites.google.com/site/randompicsandimages/_/rsrc/1244344677082/Home/PANELBAR.png

I found a thread here http://www.telerik.com/community/forums/winforms/panelbar/explorer-style-with-panel-bar.aspx where someone asked the same question, and a solution was provided using PanelBar, which is now obsolete.

My question is, is there a way i can use PageView to achieve a similar effect?

Any help / suggestions would be greatly appreciated.

Thanks,
Mark
Ivan Todorov
Telerik team
 answered on 06 Jan 2011
11 answers
202 views
Hi!

Can anyone help me with this? Urgent please.
I'm using radButtons. The GradientStyle is Linear. But when I switch forms, all (as in all) the radButtons in all forms change to GradientStyle Solid. I noticed this when we upgraded to Q3 2010. 

Thanks,

Ian
Richard Slade
Top achievements
Rank 2
 answered on 06 Jan 2011
10 answers
154 views
I don't get it. I want to read/write appointment data from a database, and get/set IsAllDay. Sure, I can check that the start is 00:00:00 and that the end is 23:59:59 on the same date, but what kind of kludge is that?

What reason is there to protect this property?
Dobry Zranchev
Telerik team
 answered on 06 Jan 2011
1 answer
160 views
What I'm trying to do is depend on my search method I want to highlight some fields in my winform to make them required.
Some fields are RadComboBoxes, some of them are DateTimePickers, some MaskedEditBoxes.

On Click event of my search method I'm trying to set a BackColor for fields that are required to yellow.
radComboBox_1.BackColor = Color.Yellow;
EdMsk_A3.BackColor = Color.Yellow;
As soon as user fills out the required field it suppose to change color back to initial White background.

The problem is that the following code for the background change does not work.. BackColor of the combobox  never changed..
Thanks,
Victoria.
Victoria F
Top achievements
Rank 1
 answered on 05 Jan 2011
4 answers
267 views

I need a control that is like the normal windows combobox, except
that for each item in the list the color for the background an forecolor differs, e.g.
Each Item has the same size (width, height)

ITEM 0      backcolour=red, forecolor=white
---------   
ITEM 1      backcolor=black forecolor=white
---------
ITEM 2      backcolor=blue,  forecolour=white
---------

ITEM 3      backcolor=green, forecolour=black

Thank you very much for the help.

 

Ivan Todorov
Telerik team
 answered on 05 Jan 2011
4 answers
195 views
I cannot get the text to wrap in radStatusBarPanelElement placed inside a radstatustrip.
I  am using Q1 2008 SP1.
Can someone please tell me how I can do this? There is nothing in docs also about wrapping text in this element.

Thanks
Sunil
Peter
Telerik team
 answered on 05 Jan 2011
4 answers
142 views
Hi,
    I want to diable the right click option in the RadpanelbarGroupElement. How should i acheive it?
As of now am giving the message box in the mouse down event. Below is the code that i have used.
Private Sub RadPanelBar1_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles RadPanelBar1.MouseDown
       Try
           If e.Button = Windows.Forms.MouseButtons.Right Then
               RadMessageBox.Show("Right click not allowed.")
               Exit Sub
           End If
       Catch ex As Exception
           RadMessageBox.Show(ex.ToString)
       End Try
   End Sub
I dont need to intimate the user about this. How this should be done?
Surendar S
Top achievements
Rank 1
 answered on 05 Jan 2011
7 answers
224 views
hi team,

I have 4 documents spitted to 4 corners.
How can i get their events in splitting and count of it.

Thank
suresh.
Richard Slade
Top achievements
Rank 2
 answered on 05 Jan 2011
6 answers
496 views
Dear friends,

I have a read only RadScheduler, and i need to change the backcolor of it when i have text in one those fields.
For example, the default backcolor is blue, but when one of the dataset fields contains some text, i need to change the backcolor to red.

Thank you.
Xavier Soares
Top achievements
Rank 2
 answered on 05 Jan 2011
8 answers
256 views
Hello,

I have a grid which shows the structure of a folder. Everythings works perfect except when I sort the list with the auto sort method.

My first column is a imagecolumn. If the record is a file a file-icon is shown, if the record is a folder, a folder-icon is shown. I use the Cellformatting even for this.

This works perfect, but when I sort the grid the rowindex is always missing This is the error: e.CellElement.RowIndex 'e.CellElement.RowIndex' threw an exception of type 'System.ArgumentException' int {System.ArgumentException}


This is my code, column 6 is used to show the current file size, column 2 is the imagecolumn.

private void radGrdDocuments_CellFormatting(object sender, CellFormattingEventArgs e)
        {
  
            if (e.CellElement.ColumnIndex == 6)
            {
                if ((radGrdDocuments.Rows[e.CellElement.RowIndex].Cells["colType"].Value.ToString() == "1"))
                {
  
                    GridViewCellInfo sizeCell = this.radGrdDocuments.Rows[e.CellElement.RowIndex].Cells[e.CellElement.ColumnIndex];
                    radGrdDocuments.CellFormatting -= new CellFormattingEventHandler(this.radGrdDocuments_CellFormatting);
                    sizeCell.Value = ConvertSizeToString(Convert.ToInt32(radGrdDocuments.Rows[e.CellElement.RowIndex].Cells["colActualSize"].Value));
                    radGrdDocuments.CellFormatting += new CellFormattingEventHandler(this.radGrdDocuments_CellFormatting);
                }
            }
            if (e.CellElement.ColumnIndex == 2)
            {
                GridViewCellInfo imageCell = this.radGrdDocuments.Rows[e.CellElement.RowIndex].Cells[e.CellElement.ColumnIndex];
                radGrdDocuments.CellFormatting -= new CellFormattingEventHandler(this.radGrdDocuments_CellFormatting);
                imageCell.Value = imgListPicto.Images[radGrdDocuments.Rows[e.CellElement.RowIndex].Cells["colIconType"].Value.ToString()];
                radGrdDocuments.CellFormatting += new CellFormattingEventHandler(this.radGrdDocuments_CellFormatting);
            }
  
        }
Richard Slade
Top achievements
Rank 2
 answered on 05 Jan 2011
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?