Telerik Forums
UI for WinForms Forum
3 answers
101 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
150 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
285 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
100 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
375 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
265 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
90 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
114 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
145 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
3 answers
143 views
Hello.

I need to add a set of comboboxes as a new row to a RadGrid dynamically.  I've been able to get close by creating a ComboBoxCellElement off of GridDataCellElement and setting it inside the CreateCell event.  However, because of UI Virtualization, the comboboxes get re-used on different rows as I scroll around, and IsCompatible only seems to work when a custom column type is being used, which I am not using here.

Is it possible to apply specific controls to individual cells?  Or can UI Virtualization be turned off for RadGridView?

Thanks,
Mike
Julian Benkov
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)
Chart (obsolete as of Q1 2013)
Form
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
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
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
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
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?