Telerik Forums
UI for WinForms Forum
1 answer
122 views
i have multiple tabs and only 1 radprogressbar. the question i have is how to display it in one tab and when the user click on the second tab, the radprogressbar is also available on that second tab two. please help thank you.
Nikolay
Telerik team
 answered on 23 Feb 2009
1 answer
92 views
Dear All,

I have a master grid view that displays a hierarchical child. However, the child window always displays below it a blank line, supposedly I believe the place whre the horizontal scroll bar would appear, and I am trying to find a way how to get rid of it. Setting different options like horizontalscrollebar always hidden does not do the trick. Any ideas anyone?

Thank you in advance,

George
Jack
Telerik team
 answered on 23 Feb 2009
3 answers
94 views
I have used RadPanelbar in my win form. I have added 4 groupbar elements. When I click on first most element entire bottom area gets hidden automatically. i.e. the 4 elements and area below it inside radpanel. Am I missing any property to set for this? I am using OutlookNav Pane for this. Thank you.
Deyan
Telerik team
 answered on 23 Feb 2009
6 answers
1.7K+ views
i have a normal radcombobox (not multicolumn), and i populate it using the textchanged event , through a stored proc that searches on text entered,  the stored proc and datalayer returns an custom object collection and it fills the radcomboo correctly. i cannot use the autocomplete mode as the amount of data that will eventually be in the combobox will be very cumbersome, as well as the search is not a simple text search as it searches on more than one column in the Database.
however now when i select an item in the combobox either by pressing down or by selecting an item with the mouse it then selects that item and puts the text into the radcombo.text field, however it is my understanding that the event that fires this off is the selectedvalue changed? however the text changes and txtchanged is run before selectedvaluechanged  and this is causing problems for me? is this the correct order of events firing and if so how can i get around this ?

here is sample of similar code
   private void rcboInfo_TextChanged(object sender, EventArgs e) 
        { 
            List<InfoComboDetails> allInfos = controller.GetInfoBySearchString(searchstr); 
            foreach (info i in allInfos) 
            { 
 
                RadComboBoxItem rcbi = new RadComboBoxItem(i.Column1 + " - " + i.colum2 , i.ID); 
                rcboInfo.Items.Add(rcbi); 
            } 
              
        } 
 
 private void rcboInfo_SelectedValueChanged(object sender, EventArgs e) 
 { 
rcboinfo2.SelectedValue = controller.GetInfo2ByInfoID((int)rcboInfo.SelectedValue).ID; 
 

Roy
Top achievements
Rank 1
 answered on 23 Feb 2009
1 answer
256 views
Hi, I'm evaluating the RadScheduler for a project at the moment and it looks pretty good, but I need to display multiple day views (same day, different people) side by side and hide the headers.  
Although the documentation is a bit sparse, I would have thought that the ShowDayHeaders, or ShowHeader on the active view would have controlled this, but it doesn't appear to work.   Any hints as to how to achieve this?

        Dim sched As New RadScheduler 
        sched.BackColor = System.Drawing.Color.White 
        sched.DataSource = Nothing 
        sched.Dock = System.Windows.Forms.DockStyle.Left 
        sched.HighlightToday = True 
        sched.Location = New System.Drawing.Point(0, 0) 
        sched.Name = "RadScheduler1" 
        sched.Size = New System.Drawing.Size(200, 560) 
        sched.TabIndex = 0 
        sched.Text = "RadScheduler1" 
        sched.AllowDrop = True 
 
 
        Me.pnlSchedule.Controls.Add(sched) 
 
        Dim view As Telerik.WinControls.UI.SchedulerDayView 
 
        view = TryCast(sched.ActiveView, Telerik.WinControls.UI.SchedulerDayView) 
        If view IsNot Nothing Then 
            view.StartDate = DateTime.Today 
            view.DayCount = 1 
            view.ShowAllDayArea = False 
            view.ShowDayHeaders = False 
            view.ShowHeader = False 
        End If 

I'm also trying to find a way to limit the displayed time range for the day, so it limits the view to WorkTime or a VisibleTime property?

One last question. I'll by trying to implement drag/drop between two+ schedule controls, I haven't started developing this yet, but I suspect that there is no underlying support for this, but it would be nice to know if it is achievable before I start playing in this area?

Jordan
Telerik team
 answered on 23 Feb 2009
2 answers
116 views

 

Hi, I am evaluating Telerik controls for Windows Forms, and what I want to achieve is something like the left-hand side panel on the "Save-As" dialog window when in Windows Vista (try notepad and do 'save as'). Is basically something like:  
|----------------------------------|  
|Favorites Links                   |  
| {Content}                        |  
|                                  |  
|                                  |  
|                                  |  
|                                  |  
-----------------------------------  
| Folders                        ^ |  
-----------------------------------  
 
so, "Favorites" remains visible all the time (locked), and "Folders" (docked on the bottom) expand upwards without covering the whole "Favorites" area like:  
 
|----------------------------------|  
|Favorites Links                   |  
| {Some Content}                   |  
|                                  |  
-----------------------------------  
| Folders                        V |  
-----------------------------------  
| {Content}                        |  
|                                  |  
|                                  |  
|                                  |  
-----------------------------------  
 
Then you click on the "V" againg and the "Folders" group docks back at the bottom again. 

I will appreciate any input on this.
Hugo
Top achievements
Rank 1
 answered on 22 Feb 2009
1 answer
137 views

I can retrieve an image from an image cell with the following

myImage = radGrid.Rows(r).Cells(c).CellElement.Image 

Unfortunately this produces an error when attempting to retrieve an image from a cell that isn't currently visible on screen.

How do you retrieve an image from a cell that isn't visible?

I can retrieve the cell.value from a cell that isn't visible, but have trouble converting cell.value to an image.

Thank you for your help.
Marc
Top achievements
Rank 2
 answered on 20 Feb 2009
4 answers
521 views
Hi,

How can I implement a copy & paste of rows (multiple selection) in the Grid?

Thanks,

Patrick.
Nikolay
Telerik team
 answered on 20 Feb 2009
1 answer
196 views
Has a bug been reported yet for using a combo box for children in a hierarchial grid? I wanted to allow the user the ability to change information for a child from a drop down box. When I selected the combo box, the list popped up the correct select was selected, but, as soon as I moved away from the box to another cell in the same row, the cell with the combo box was empty. If i went back to it, the new selected was still there, but as soon as I moved away from that cell, nothing appeared to the user. I went so far as to cut and paste the code from a working parent combo box and still couldn't get it to work. I have had to create a separate form now to allow the user to change this information and just display the "result' as a string in the grid on the main form. Which brings me to another problem where I have to refresh the data sources to get the updated information which then collapses the hierarchy. How do I store the which parents are not collapsed so that I can return the grid to the state the user had it? I have to update the datasources for both the child and parent or else the information is not shown propoerly.

Susan
Jack
Telerik team
 answered on 20 Feb 2009
4 answers
247 views
Hi,
How do i programmatically set the filter for a column that is defined as type System.Boolean? So, far i have this but it does not work. Please advise.
thank you,
Bahram

 

FilterExpression filter = new FilterExpression();

 

filter.Predicates.Add(

 

FilterExpression.BinaryOperation.AND, GridKnownFunction.Contains, GridFilterCellElement.ParameterName);

 

filter.Parameters.Add(

 

GridFilterCellElement.ParameterName, "0");

 

 

 

this.radGView1.Columns["Active"].Filter = filter;

 

 

Bahram Moinvaziri
Top achievements
Rank 1
 answered on 19 Feb 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)
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?