Telerik Forums
UI for WinForms Forum
1 answer
193 views
Hi,

I have started to write some code that eventually will build a menu of tiles using the Panaroma, Group and Tile controls. The strange thing is that when I add the tiles directly to the panorama everything works fine but when I first add the group and then add the tiles to the group then everything is shown ok but the tile events are not firing. There is no reponse to a click event or a mouse over. Could you help me with this?
Private Sub Menu_Load(sender As Object, e As System.EventArgs) Handles Me.Load
 
        Dim i As Integer
        Dim r As Integer
        Dim c As Integer = 0
 
        Dim groep As New TileGroupElement
 
        groep.Text = "hoi"
        RadPanorama1.Items.Add(groep)
 
        For i = 0 To 45
 
            If i Mod 4 = 0 Then
                If i <> 0 Then
                    r = r + 1
                End If
 
            End If
 
            groep.RowsCount = r + 1
 
            Dim tile As New RadTileElement
            tile.Text = CStr(i)
 
            tile.Row = r
 
            tile.Column = c
 
            c = c + 1
 
            If c = 4 Then c = 0
 
            tile.Tag = i
 
            AddHandler tile.Click, AddressOf tile_click
 
            groep.Items.Add(tile)
 
        Next
 
        Me.RadPanorama1.AllowDragDrop = False
 
        groep.ShouldHandleMouseInput = True
 
    End Sub
 
    Private Sub tile_click(sender As System.Object, e As System.EventArgs)
        RadPanorama1.PanoramaElement.SuspendLayout(True)
        MessageBox.Show(CType(sender, RadTileElement).Tag)
        RadPanorama1.PanoramaElement.ResumeLayout(True, True)
    End Sub
Stefan
Telerik team
 answered on 21 Aug 2012
3 answers
128 views
I have one windows form which is having textboxes and multiline textboxes in it.
I am using telerik Spell checker to use it with these controls.
I am initiating the Spell checker by click on a menu button in the form.
Now my issue is how can i localize this Spell checker popup window.
My form is localized using the resource files.
As well as how can i add dictionaries for these spell checker work with different languages.
 
We are using given bellow class, but "RadSpellCheckerLocalizationProvider" class is missing in any of the used namespaces. Please provide the DLL name in which that class is available or advise us how to proceed.
Please reply i am not able to move further without this.

Imports Telerik.WinControls.UI.Localization
Imports Telerik.WinControls.UI
Imports Telerik.WinControls.UI.Design
Imports Telerik.WinControls
Imports Telerik.WinControls.Localization
 
 
Class MyEnglishSpellCheckerLocalizationProvider
    Inherits RadSpellCheckerLocalizationProvider
 
    Public Overrides Function GetLocalizedString(id As StringAs String
        Select Case id
            Case RadSpellCheckerStringId.Title
                Return "Spell Checking"
            Case RadSpellCheckerStringId.OK
                Return "OK"
            Case RadSpellCheckerStringId.Cancel
                Return "Cancel"
            Case RadSpellCheckerStringId.Close
                Return "Close"
            Case RadSpellCheckerStringId.Change
                Return "Change"
            Case RadSpellCheckerStringId.Complete
                Return "The spelling check is complete."
            Case RadSpellCheckerStringId.AddToDictionary
                Return "Add to Dictionary"
            Case RadSpellCheckerStringId.IngoreAll
                Return "Ignore All"
            Case RadSpellCheckerStringId.Suggestions
                Return "Suggestions:"
            Case RadSpellCheckerStringId.ChangeTo
                Return "Change To:"
            Case RadSpellCheckerStringId.NotInDictionary
                Return "Not in Dicitionary:"
        End Select
 
        Return Nothing
    End Function
End Class




As we are developing this prototype for another company, they had already purchased this control. We have informed them to add us as licensed developer for this.
Stefan
Telerik team
 answered on 21 Aug 2012
3 answers
193 views
Hi all,

In my Form I have three grids with some data associated to them. Is there a way to print these three grids in one document?
In our business we want to view these three grids all together in one page not three pages.

Thanks
Arash
Top achievements
Rank 1
 answered on 21 Aug 2012
1 answer
338 views
Hi,

I have used CommandBar in my C# project to create a tool bar. Tool bar is created in a base class that is extended by several child classes. Child classes are expected to show/hide and/or enable/disable CommandBarButtons in the tool bar that's why the tool bar buttons are declared protected. When making a CommandBarButton object 'protected' it is not showing mouse hover effect on child form. I was able to reproduce the issue in a sample project but unable to attached the project here.
Stefan
Telerik team
 answered on 21 Aug 2012
1 answer
126 views
When I place a RadLabel on a form and a button which toggles the enabled state of the label:
radLabel1.Enabled = !radLabel1.Enabled;

The forecolor of the text in the label is initially the ForeColor property of the label.
When the button is clicked once, the text color changes to gray.
When the button is clicked again, the text color changes to a slightly darker shade of gray.

I would expect re-enabling the label to restore the initial ForeColor, why is this not the case?
Stefan
Telerik team
 answered on 21 Aug 2012
10 answers
436 views
Hi All,

I use for development Microsoft Visual Studio 2010 Professional under Windows 7 Enterprise.
Recently I installed the released Telerik RadControls for WinForms Q3 2010. When I started VS for the first time after this installation, the Extension Manager of MSVS2010 notified me that an upgrade from the version 2010.2.505.0 to the version 2010.3.1109.0 of Telerik WinForms VSExtensions is available. I gladly have tried to update this extension, but after successful download an error message suddenly pops up:
"Extension Telerik.WinControls.VSPackage must be uninstalled through the Windows Add/Remove Programs dialog."
The more unfortunate outcome is that the Upgrade Wizard disappears from the Telerik menu in VS.

Can you please explain how to update the VS extension?

Thank you in advance.

-- Best regards
Petar
Telerik team
 answered on 20 Aug 2012
7 answers
314 views
Hi,
I have many PropertyGridDropDownListEditor elements on my RadPropertyGrid. Every list is loaded at startup and positioned on proper value. After changing value, I need to click anywhere on my RadPropertyGrid to save changed row data (showing black square with small red triangle which allow to undo changes etc.). If I don't do it - data is lost. I mean, when I'm changing value at DropDownList and immediately click myForm save button. I want to save this data too, but I don't know how. I'm using C#.


Greetings,
Marcin
Ivan Petrov
Telerik team
 answered on 20 Aug 2012
1 answer
119 views
Hello guys;
I was trying to select the value from a specifc cell in a radGrid who has been previouisly check with a check column. I tried using the ValueChanged event but still it doesn't work. I looked all over the forum but still couldn't get the value. My code in general looks like this:
private void grdClientes_ValueChanged(object sender, EventArgs e)
        {
 
 
            foreach (GridViewDataRowInfo row in grdClientes.Rows)
            {
                if (row.Cells["Seleccionado"].Value == "On")
                {
                    _selectedRowIndex += (int)row.Cells["Cantidad"].Value;
                }
            }
        }


Thanks in advance for your help.
Stefan
Telerik team
 answered on 20 Aug 2012
1 answer
159 views
Hi,

I have a multi-column dropdown within a grid as so:
Dim col As GridViewMultiComboBoxColumn = New GridViewMultiComboBoxColumn()
col.DataSource = myLibrary_Consultants
col.DisplayMember = "Initial"
col.ValueMember = "Initial"
col.Name = "Cons1"
RadGridView_ContactLog.Columns.Add(col)


How can I change the datasource for the dropdown later on in code,

as RadGridView_ContactLog.Columns(0)... doesn't have a datasource property?

Thanks

Terry
Stefan
Telerik team
 answered on 20 Aug 2012
1 answer
172 views
Hi, 
when i use a RadRibbonForms in my application, at design time, titlebar buttons and directions are in a right manner as you see in attached file (a.png) but when i run the application, it was appear in a wrong style and direction (please see b.png file in attachments).
also i try it by "righttoleft=no" properity but i have a similar problem.

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