Telerik Forums
UI for WinForms Forum
2 answers
113 views
Hello,

I'm confused as to why I can't seem to find the Name property of a GridViewTemplate.  I get "Name is not a member of Telerik.WinControls.UI.GridViewTemplate."  Any ideas?

Thanks,
Dan
Public Sub SaveGridLayout(ByRef grd As RadGridView, Optional ByRef gvt As GridViewTemplate = Nothing)
 
    If gvt Is Nothing Then
        gvt = grd.MasterTemplate
    End If
 
    Dim Layout As String = grd.Name & "_" & gvt.Name
Dan
Top achievements
Rank 1
 answered on 25 Sep 2012
2 answers
139 views
Why does RadTextBox stop rendering text after 5,509 characters?  Upon entering a 5,510th character the text disappears, and if you press backspace it comes back.  Is this a known limitation?  If so, where is it documented?

Edit: Actually it appears to be based on width, not number of characters.  It happens at 4,679->4,680 lowercase letter 'o's with Segoe UI, 8.25pt font.
Chris Ward
Top achievements
Rank 1
 answered on 25 Sep 2012
1 answer
97 views
Please can the Demo projects be rebuild using the latest Rad Controls.

It is very bad form to release an update and then expect the developers to work though all the changes to the code in the demo project to try and figure out how the original worked and how the new changes work.

As opening some of these projects in Visual studio displays all kinds of bugs.


Stefan
Telerik team
 answered on 25 Sep 2012
6 answers
182 views

How can a localization of the radDock be done ?

I am a german software developer and I want to display german text in the context menu of the tool window, the context menu of the document window and the quick navigator.

Regards,

Ramius

Nikolay
Telerik team
 answered on 25 Sep 2012
3 answers
178 views
I would like to change the behavior of the Alt-Tab for docked tabbed documents.
Basically I want it to ignore all the non - DocumentPane windows.
I would also like it to cycle through the windows like visual studo does - but this would be a nice to have.

I have seen the article which shows how to replace it altogether, but most of the functionality is fine, so I wondered if there was a way to tweak it?

Nikolay
Telerik team
 answered on 25 Sep 2012
2 answers
264 views
I would like to programmatically expand and collapse a RadPageViewPage.  How do I do that?
Stefan
Telerik team
 answered on 25 Sep 2012
1 answer
101 views
Hi guys, we developed an application and we are having some issues with the visual update. It's a windows form application and we integrated some WinForm telerik and recently some wpf. I'm pretty sure the problem is not coming from telerik but maybe you guys can give us a cue where to look at. So what we see is that half the time we stop moving the mouse over the application any visual will stop updating... any tooltip will stop fading in or out... any menu will stop fading in or out ... any animation in wpf will stop updating... anything stops... one fugly fix we found is to put a timer on the application and set the position of the mouse at it's current position... The process is still working though... Any input will be much appreciated!! Thanks a lot.
Vlad
Telerik team
 answered on 25 Sep 2012
5 answers
420 views
Hello,

I'd like to put an image in the header row cell above the "current row indicator" column (see attached image).

I was able to do this while running the RadControls for WindForms demo application and using the RadControl Spy tool but need help in accessing the correct element in my code.

Thanks,
Chet
Stefan
Telerik team
 answered on 24 Sep 2012
3 answers
153 views
I have an issue with loading forms in the Dock

When I use MDI they load poroperly. On being told to drop the MDI overhead the forms load off to the bottm right of the screen
Please help what is wrong with the code. 

MDI loader
Shared Sub dockMDIForm(ByVal mydockableform As Form)
  
        'Check if form already in Dock
        Dim hw As HostWindow = frmMain.radDockMain.GetHostWindow(mydockableform)
  
        If Not hw Is Nothing Then
            'Just show the window
            frmMain.radDockMain.ActiveWindow = hw
        Else
  
            'Create a new instance of the Form & add to dock
            mydockableform.MdiParent = frmMain
            mydockableform.Show()
  
            'frmMain.radDockMain.DockControl(mydockableform, DockPosition.Fill, DockType.Document)
            hw = frmMain.radDockMain.GetHostWindow(mydockableform)
  
            frmMain.radDockMain.ActiveWindow = hw
  
        End If
  
    End Sub



Document loader
Shared Sub dockForm(ByVal myForm As Form)
  
        myForm.FormBorderStyle = FormBorderStyle.None
        myForm.TopLevel = False
        myForm.WindowState = FormWindowState.Maximized
  
        'Check if form already in Dock
        Dim hw As HostWindow = frmMain.radDockMain.GetHostWindow(myForm)
    
        If Not hw Is Nothing Then
            'Just show the window
            frmMain.radDockMain.ActiveWindow = hw
        Else
             'Create a new document
            Dim docWindow As DocumentWindow = New DocumentWindow()
            docWindow.Controls.Add(myForm)
    
            'add to Dock
            With frmMain.radDockMain
                .AddDocument(docWindow, DockPosition.Fill)
                .ActiveWindow = docWindow
            End With
  
            docWindow.DockTabStrip.PerformLayout()
        End If
    End Sub
Nikolay
Telerik team
 answered on 24 Sep 2012
2 answers
313 views
I've been playing around with RadDock and not been able to get my head around this control...

Here is my scenario( bit simplyfied):

I've got a RadDock, which I add usercontrols to:

UserControlPlugInDemo ucpid = new UserControlPlugInDemo();
DockPosition dockTo = DockPosition.Fill;
this.radDock1.DockControl(ucpid, dockTo, DockType.Document);

Then, when a user click on a button in one of these, to open a map, I add a new tab containing map with DockPosition.Right.
This works fine.

But next time I add a usercontrol, I want it to Fill(like merging Map with the others tabs), but it adds to the active DockWindow, either o the right or left.

Any tip would be apreciated!
Nikolay
Telerik team
 answered on 24 Sep 2012
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
Iron
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
Iron
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?