Telerik Forums
UI for WinForms Forum
1 answer
150 views

Hi,

I am trying to do Drag&Drop as show in the Telerik documentation (see https://docs.telerik.com/devtools/winforms/controls/gridview/rows/drag-and-drop).

I tried to implement it in three different ways:

1) after reading the doc, I downloaded the code and build it with VS2022. This code uses .Net Framework 4.6.1 and works exactly as expected.

2) Then, I tried to add it to my current project using .Net 6 and the current Telerik Library. I did it both in the form where it should be used and in a dedicated form with the exact code provided. In both cases, I have the 'strange' behavior that the drag works but as soon as the grabed row is movingout of its origin,  a "no entry" sign is shown both in some area of the initial grid view and everywhere in the destination one (see picture).

3 Then I tried to do it in a brand new .Net 6 project to dismiss a potential setup in my project. In this third one evrything compile and run nicely, BUT there is absolutely no drag and drop behavior.

I attached this last project, but it is really exactly the downloaded code.

So can someone explain what is wrong in this code or my way to use it ?

Many thanks

Patrick

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Oct 2022
1 answer
133 views

Hi.

I'm trying to draw a specific graph using RadChartView.

However, I couldn't find a way to remove the border line, which is marked with a red arrow in the attached image.

The background color must be Transparent.

Please tell me how to remove only those lines.

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Oct 2022
2 answers
249 views

I'm following the example from   https://www.telerik.com/forums/object-bound-hierarchy#711007, which describes how to create an object-based hierarchy. An excellent example.

I'm now trying to modify that example to look how I want, and I've done everything apart from the critical bit - adding the row of 'child' data.

For a normal row, I would do:

 Dim gvdi As New GridViewDataRowInfo(myGrid.MasterView)
        With gvdi
            .Cells("name").Value = t.name
            .Cells("status").Value = t.status
            .Tag = t '...plus any other columns I need

        End With

The example uses the simpler constructor for a new child row, like:

                childTemplate.Rows.Add(t.id, tt.name, tt.status) '....where 't' is my object.

This also works fine

But now I'd like to use the first style of constructor for the child row, and I can't work out how to do it.

When I use the first bit of code, the runtime complains that it's not a GridViewHierarchyRowInfo, so I changed it to be:

 Dim gvdi As New GridViewHierarchyRowInfo(myGrid.MasterView)
               'With gvdi
                   .Cells("name").Value = tt.name
                   .Cells("status").Value = tt.status
                   .Tag = tt
               End With

...and that doesn't work either. Is it the GridViewHierarchyRowInfo(myGrid.MasterView) which is wrong?

Any ideas?

Thanks

Maria
Telerik team
 answered on 25 Oct 2022
2 answers
96 views
Hi,

In a RadMenuItem, it seems that the RadDropDownMenu graphical object containing children is automatically created when the MyMenuItem.Items property is accessed.
Often, the Items property is accessed without adding any children, for example to access MyMenuItem.Items.Count property.
RadDropDownMenu object is therefore useless and affects the size of a RadMenuItem in memory.
I'm considering overriding the Items property or the EnsureDropDownCreated method of the RadMenuItemBase class to work around this issue.
Is there a method that you recommend or do not recommend?

We are using 2022.3.921 version.

Thanks for your feedback.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Oct 2022
1 answer
73 views
Am I being stupid? How do you Can you add a RadTextBox to a RadStatusStrip?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Oct 2022
1 answer
72 views

I'm currently working on a project where we are using a RadDiagram to dynamically display and plan a distribution hall. Here we are using different elements/shapes in the diagram to represent storage shelves and spaces/spots in those shelves. We want to draw these shelves and their spots either horizontally from left to right or vertically from bottom to top. We want to do this by first drawing the shelve and its spots horizontally and then rotate the shelve using a custom RotationService, that rotates the shelve group programatically. This however has an unwanted side effect, which can be inspected in the provided demo app and below:

The rotation via the custom RotationService appears to move the shelve in the diagram to a "random" position depending on the RadDiagram zoom and scroll position. So a shelve can be drawn and rotated as expected in the first initialization of the diagram.

Initial Diagram creation:

If the diagrams zoom level and scroll position isn't changed a shelve can be selected and rotated using the switch button. This also works as expected.

Shelve rotation without zoom:

If however the zoom of the diagram is changed or the scroll position is changed, following a rotation of a shelve or the redraw of the whole diagram using the refresh button, the vertically rotated shape is moved to a differen position.
If the rotation of the shelve is repeated multiple times the postion of the rotated shape appears to migrate to a point in the diagram. If the shelve reaches this point it will start to rotate properly again, without further change in position.

Shelve rotation with zoom:

Refresh with zoom and different scroll positions:

As seen above the rotated shelve is drawn in different positions each time the diagrams zoom or scroll is changed. Is this due to a wrong implementation of the RotationService as seen in the Demo_Project or is it due to a bug?

 

 

Dinko | Tech Support Engineer
Telerik team
 answered on 21 Oct 2022
1 answer
108 views

Hello, it's me.

I'm modifying the Fluent theme. The button and other controls that use some of the same elements (e.g. the scroll "thumb") has a sort of "glow" with the mouse cursor along with border highlight and a white ring when pressed. Where can I change this? I removed pretty much every repository item for all elements/states besides text and fill but it's still there:

1 answer
83 views

Hi,  As I understand if I bind the Appointment dataset to an MS Access database as in the Telerik tutorial sample. If I update an Appointment in one app, all Appointments in other apps within the LAN would be updated. How about if I start an app using Remote Desktop, would Appointments in the remote desktop app be updated as well.

Thanks

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Oct 2022
9 answers
190 views

Hello,

I'm looking for the best approach to store a radgridviews filterdescriptors in a db, so that the users could for instance use a dropdown menu to select and save their favourite filter settings. I'm already using the save/load layout funktionality which works great but I would prefer a way to only store the filters.
Any pointers and suggestions is greatly appretiated.
Thanks
Jan

Jeffrey
Top achievements
Rank 1
Veteran
Iron
Iron
 answered on 19 Oct 2022
2 answers
69 views
       

 

 

Hi Telerik!

I use the following code to open a new form in a tab. however, when I want to open a different form in another new tab, it does not open with a focus, but rather, I have to click on that tab to see it

If gF_bFormAbierto("frmProd") = True Then
            MsgBox("frm is open")
        Else
            RadDock1.Visible = True

            Dim childForm As frmProductos = New frmProd()

            childForm.MdiParent = Me
            childForm.Show()
End If

 

image example: the one I mark with a red arrow is the new form that I opened

agustin
Top achievements
Rank 1
Iron
Iron
 answered on 19 Oct 2022
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
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)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
Rotator
TrackBar
MessageBox
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
ColorBox
Callout
FilterView
PictureBox
VirtualKeyboard
NavigationView
Accessibility
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
Flyout
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
+? more
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?