Telerik Forums
UI for WinForms Forum
2 answers
411 views
I need to get all the controls from the radform to get some properties and configure it in runtime.
The components i have in the form is:
- RadTextbox
- RadMulticolumnCombobox
- RadPageView
- RadLabel
- RadGridView.

How i can get all controls and childs in the form?
Stefan
Telerik team
 answered on 04 Jul 2013
1 answer
147 views
Hi,

I have autobinded hierarchical grid with two levels and 1..n relation. 
I need handle change and add row on child grid.

For parent grid, there are UserAddedRowRowsChanged and they are fired correctly on add/change.

Problem is on child grid. UserAddedRow is fired correctly also on add-row, but RowsChanged on change-row not.

Is there any other event for child-grid row-change?

I use Q1 2013 SP1 version. 

Zdeněk
Stefan
Telerik team
 answered on 04 Jul 2013
1 answer
184 views
I wanna format a column in the grid to hexa decimal , i tried to set the formatstring property to {0,X} but it doesn't work  
Stefan
Telerik team
 answered on 04 Jul 2013
1 answer
199 views
 
Dimitar
Telerik team
 answered on 04 Jul 2013
1 answer
188 views

my question is (i think) simple.

I have a variable (double voltage) changing every 4 m second, and basically i want to show the variations on a chart. I'm using visual studio 2010 and the target is .net Framework 4.0
Note: i want it to work on regular desktop application (  not ASP.Net web application and not WPF. )
My application will be running on windows computers, XP, 7 and 8.
is your live data chart control what suites me ?

Please, i need an answer ASAP.
Regards,
Nada.


Paul
Telerik team
 answered on 04 Jul 2013
2 answers
160 views
I'm trying to implement a custom recurrence dialog. Actually, due to business needs, I'm combining the the appointment dialog with the recurrence dialog. This means that I'm inheriting the EditAppointmentDialog class and so I can't also inherit the EditRecurrenceDialog class (not in VB.NET anyway).

Most of it is going well but I'm confused about something. When I create a recurrence by using the Every Weekday radio button under the Daily radio button a weekly recurrence rule for Monday - Friday with an interval of 1 is created. That makes sense. What I don't understand is why the WeeklyRecurrenceSettings.CanShowRecurrenceRule returns false in this situation. Well, what I don't understand is why your code is written to do that (I've looked at your source code). Since it's a weekly recurrence I can't use the DailyRecurrenceSettings control but since the WeeklyRecurrenceSettings control returns false for CanShowRecurrenceRule I can't use that function.

The recurrence rule should either be interpreted as a daily recurrence or else it should accept WorkDays and Interval = 1 as a valid weekly recurrence.

I'm considering implementing my own WeeklyRecurrenceSettings control but that seems like overkill.
Anton
Telerik team
 answered on 02 Jul 2013
4 answers
132 views
Hi

Does anyone know how to stretch the command bar and remove the handle, and also the items inside the command bar? It's shown in the attached image, like Google Chrome's control bar, the textbox is stretched and commandbar is fixed.

Thanks.

(VS2012 VB.NET Windows 8 Pro 64-bit)
Justin
Top achievements
Rank 2
 answered on 01 Jul 2013
1 answer
84 views
Mr
Hello everyone i have installed RadControls 2012 Q3 on my computer i have made a simple reporting application in radwindows form so i cant find telerik reportviewr on the tools box.could you please help me an new on this environment
Peter
Telerik team
 answered on 01 Jul 2013
3 answers
177 views
I am executing the code below following a refresh from the database.  What I'm trying to make happen is that after a process completes to update one of the rows, the data is refreshed and the previously selected record is still selected for the user and scrolled into view.  When I execute this code following an update routine the grid is scrolled completely to the bottom, and both the record I selected and the visible row within the grid (even though it is now a different row) is selected.  If I execute it from a command button, the first record is selected and the grid is scrolled completely to the top.  What am I doing wrong?

datagridview1.DataSource = Nothing
datagridview1.DataSource = Log_Table
If Log_Table.Rows.Count > 0 Then
    ' Log_Rec = Log_Table.First
    Dim Row As Telerik.WinControls.UI.GridViewRowInfo
    For Each Row In datagridview1.Rows
 
        If Row.Cells("Rec_ID").Value = RecID Then
            Row.IsSelected = True
        Else
            Row.IsSelected
= False
        End If
    Next
 
    For Each Row In datagridview1.Rows
        If Row.IsSelected Then
  Row.EnsureVisible()
        End If
    Next
End If
Ivan Petrov
Telerik team
 answered on 01 Jul 2013
1 answer
127 views
Hi all,

I change my gridviewrow template successfully but the gridview disable selection. I need  my gridview  can enable multi selection mode.
 I use
  <ControlTemplate x:Key="CustomRowTemplate"
                         TargetType="telerik:GridViewRow">
            <Border x:Name="rowsContainer"
                    Background="Transparent"
                    
BorderThickness="0,0,0,1"
                    Padding="1">
                <Grid Width="Auto"
 HorizontalAlignment="Stretch">

                    <Grid.RowDefinitions>
                        <RowDefinition Height="20" />
                        <RowDefinition Height="20" />
                        <RowDefinition Height="20" />
                    </Grid.RowDefinitions>

                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition MinWidth="150" Width="Auto" />
                        <ColumnDefinition Width="10" />
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="*" />
                    </Grid.ColumnDefinitions>

                    <Border Grid.Column="0"
Grid.RowSpan="3"
Grid.Row="0"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Height="60"
Width="60"
Margin="15,0"
BorderThickness="1"
CornerRadius="1"
BorderBrush="Black">

                    </Border>

                    <TextBlock Text="Device Name: "
Margin="5,0,0,0"
FontWeight="Bold"
Grid.Row="0"
Grid.Column="1"
VerticalAlignment="Center"
  HorizontalAlignment="Left" />
                    <TextBlock Text="{Binding UserName}"
  Margin="5,0,0,0"
  Grid.Row="0"
  Grid.Column="2"
  VerticalAlignment="Center"
  HorizontalAlignment="Left" />

                    <TextBlock Text="Source: "
  Margin="5,0,0,0"
  FontWeight="Bold"
  Grid.Row="1"
  Grid.Column="1"
  HorizontalAlignment="Left"
  VerticalAlignment="Center" />
                    <TextBlock Text="{Binding LastLoginDate}"
  Margin="5,0,0,0"
  Grid.Row="1"
  Grid.Column="2"
  VerticalAlignment="Center"
  HorizontalAlignment="Left" />

                </Grid>
            </Border>
        </ControlTemplate>
        <Style TargetType="telerik:GridViewRow" >
            <Setter Property="Template" Value="{StaticResource CustomRowTemplate}" />
        </Style>

to change gridivewrow template and this make my gridivew can not have selection function.

If any one have experiences in this. Please help me, thanks

Yoan
Telerik team
 answered on 01 Jul 2013
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
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?