Telerik Forums
UI for WinForms Forum
1 answer
50 views

Is there a way to define the Application Name that appears in Balloons (etc) ?

Our code runs via an Interpreter, and the name of the Interpreter appears instead of our Branded Application name

The reason we are looking at NotifyIcon is that it is hard/impossible to do this via the standard MS Notifications

Dinko | Tech Support Engineer
Telerik team
 answered on 03 Jan 2024
1 answer
25 views

I got my db in sql and i load a datagrid but still i see the scroll, and its loading all data 50k records, any chance to turn on infinite scroll? so when im scrolling its getting data ? i mean is not slow as 50k was loaded in less than a second.

 

thank you

Nadya | Tech Support Engineer
Telerik team
 answered on 02 Jan 2024
1 answer
18 views

I would like to style my application with icons *like* those found on this control. I desire something modern, attractive, but simple and clean, which I think RadPdfViewerNavigator does well, problem is it only has a handful of icons. I need a much larger library to develop an entire desktop application.

This question has been asked in one form or another a few times, but I am unsatisfied with the answer.

Essentially, as a customer, I want EASY access to ALL icons available. I want to be able to VIEW them, and then CHOOSE what I want to use across my application.

Using controls like these should make that a breeze and not complicated like some of the responses I have ran across.

Additionally most of the icon stuff is geared towards web design.

I would like answers strictly for desktop application design.

Is this possible? Can some one break this down across the board for winforms on the easiest solution to view all the icons available for Telerik Winforms.

Thank you for reading and for your help in advance!

 

Dinko | Tech Support Engineer
Telerik team
 answered on 28 Dec 2023
1 answer
34 views

Hi,

 I’m trying to handle the drag and drop operation from a winforms control (RadGridView for now, can be RadTreeView or RadListView too) to the RadScheduleView WPF.

 I have overridden the ConvertDraggedData from ScheduleViewDragDropBehavior class.

 The event isn’t firing when I’m dragging a row from my winforms GridView over the schedule.

 Is there a way to convert dragged data from the grid in winforms that make the event fires in WPF?

 Or another way to achieve the expected behavior ?

 

 Thanks.

 Rémi

Dinko | Tech Support Engineer
Telerik team
 answered on 28 Dec 2023
2 answers
24 views

 

Hi team ,

I am using Telerik UI for winforms Chartview Drill down charts. I am using line series . I need to get the labels on top of every value( please refer attached screenshot of demo app) but getting object reference not set to an instance of an object .particularly in line  series.ShowLabels = true;  Can you please guide on this?

If I set

  series.DataSource = DrillDownViewModel.ParseDataByDay(year, month);
                    series.ShowLabels = true;
                    series.DrawLinesToLabels = true;
                    series.SyncLinesToLabelsColor = false;

 

Thanks

Anup

Dinko | Tech Support Engineer
Telerik team
 answered on 27 Dec 2023
1 answer
26 views

Hi,

I'm wondering if it could be possible to add an auto close functionnality on RadMessageBox ?

- With a formattable string like this : "Popup will close in {0} seconds"

- We should be able to specify a duration in seconds

- It would only be useable if the MessageBox is not a YesNo(Cancel)

Using an internal timer, the MessageBox would update the formattable string at each tick.

I think it can easily be achieved.

Thanks.

Dinko | Tech Support Engineer
Telerik team
 answered on 22 Dec 2023
1 answer
24 views

Trying to run UI for Winforms examples for a user and we have the store locked down. When I run it on the machine I get a popup stating it wants to run this

C:\Program Files\WindowsApps\Telerik.TelerikUIFormsExamples_202...\windowsstorelauncher.exe

Network location cannot be reached.

 

Does it require the store to be enabled? This is after install and just trying to run it. Yes, we can install it without issues.

Dinko | Tech Support Engineer
Telerik team
 answered on 22 Dec 2023
1 answer
36 views

Hi I am working on Radgridview where on a particular column I have hidden few options like below.

Private Sub grd_ContextMenuOpening(sender As Object, e As ContextMenuOpeningEventArgs) Handles grd.ContextMenuOpening
        Dim i As Integer = 0
        Dim IgnoreOperator() As String = {"Ends with", "Equals", "not equal to", "no filter"}
        If DirectCast(e.ContextMenuProvider, Telerik.WinControls.UI.GridCellElement).ColumnInfo.FieldName = "AcctNbr" Then
            While i < e.ContextMenu.Items.Count
                If Not IgnoreOperator.Contains(e.ContextMenu.Items(i).Text, StringComparer.CurrentCultureIgnoreCase) Then
                    e.ContextMenu.Items(i).Visibility = Telerik.WinControls.ElementVisibility.Collapsed
                End If
                i = i + 1
            End While
        End If
    End Sub

My requirement is to search data from a different a column of Dataview which is binded to the grid  however  column header is different.

I wrote below code expecting that  when `AcctNbr` is the header of column it will search the dataview(dv) based on the row filter and bind it the grid on UI but it's not working

Private Sub grd_FilterChanging(sender As Object, e As GridViewCollectionChangingEventArgs) Handles grd.FilterChanging
        dv.RowFilter =""
        If e.NewValue IsNot Nothing
        If DirectCast((DirectCast(e.NewItems, Object())(0)), Telerik.WinControls.Data.FilterDescriptor).[Operator] = Telerik.WinControls.Data.FilterOperator.IsEqualTo AndAlso DirectCast((DirectCast(e.NewItems, Object())(0)), Telerik.WinControls.Data.FilterDescriptor).PropertyName = "AcctNbr" Then
            Dim CurrentVal As String = CStr(e.NewValue)
            dv.RowFilter = "EnAcctNbr ='" & CurrentVal & "'"
        End If
        If DirectCast((DirectCast(e.NewItems, Object())(0)), Telerik.WinControls.Data.FilterDescriptor).[Operator] = Telerik.WinControls.Data.FilterOperator.IsNotEqualTo AndAlso DirectCast((DirectCast(e.NewItems, Object())(0)), Telerik.WinControls.Data.FilterDescriptor).PropertyName = "AcctNbr" Then
            Dim CurrentVal As String = CStr(e.NewValue)
            dv.RowFilter = "EnAcctNbr <>'" & CurrentVal & "'"
        End If
        End If

how can I achieve this behavior ? I tried to assign the updated dataview as datasource to the grid in `grd_CellEndEdit` event that too did not work. pls. help.

Regards,

Amit Rai

 

 

Nadya | Tech Support Engineer
Telerik team
 answered on 21 Dec 2023
1 answer
69 views

Dear Friends,
I am using telerik SelectionChanged event to select row value from grid, another thing I am opening context menu using ContextMenuOpening event, now the problem I am facing is that when I do right click I loss my current selected row.
I do not want to loss current selected row but same time I want to fire  right click event using ContextMenuOpening , do we have any possible solutions for it so we will not loss our selected row when firing ContextMenuOpening of grid.

 

Thanks

Nadya | Tech Support Engineer
Telerik team
 answered on 21 Dec 2023
1 answer
41 views

Theres any sample app winform login using sql server table with password encrypted?

thank you

Dinko | Tech Support Engineer
Telerik team
 answered on 20 Dec 2023
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
Buttons, RadioButton, CheckBox, etc
DropDownList
ComboBox and ListBox (obsolete as of Q2 2010)
ListView
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
Menu
PropertyGrid
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
Tabstrip (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
GanttView
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
VirtualGrid
ContextMenu
Spreadsheet
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
Rotator
TrackBar
MessageBox
CheckedDropDownList
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
CAB Enabling Kit
TabbedForm
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ImageEditor
ScrollBar
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
VirtualKeyboard
FilterView
Accessibility
DataLayout
NavigationView
ToastNotificationManager
CalculatorDropDown
Localization
TimePicker
ValidationProvider
FontDropDownList
Licensing
BreadCrumb
ButtonTextBox
LocalizationProvider
Dictionary
Overlay
Security
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
Flyout
TaskbarButton
HeatMap
SlideView
PipsPager
+? more
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
Iron
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
Iron
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?