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
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
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!
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
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);
Thanks
Anup
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.
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.
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
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
Theres any sample app winform login using sql server table with password encrypted?
thank you