Telerik Forums
UI for WinForms Forum
1 answer
74 views
Correct me if I'm wrong, but it seems that in this scenario

    public class ItalianToolStripLocalizationProvider : RadToolStripLocalizationProvider
    {
        public override string GetLocalizationString(RadToolStripLocalizationStringId localizationString)
        {
            switch (localizationString)
            {
                case RadToolStripLocalizationStringId.CloseButton:
                    return "Chiudi";
                case RadToolStripLocalizationStringId.ResetButton:
                    return "Resetta";
                case RadToolStripLocalizationStringId.ToolBarsTabItem:
                    return "Barre Strumenti";
                case RadToolStripLocalizationStringId.CustomizeDialogCaption:
                    return "Personalizza";
                case RadToolStripLocalizationStringId.AddorRemoveButtons:
                    return "Aggiungi o rimuovi pulsanti";
                case RadToolStripLocalizationStringId.NoTextAssociated:
                    return "Nessun testo associato";
                case RadToolStripLocalizationStringId.ResetToolBar:
                    return "Resetta Barra Strumenti";
                case RadToolStripLocalizationStringId.Customize:
                    return "Personalizza";
                case RadToolStripLocalizationStringId.ResetToolBarsAlertMessage:
                    return "Si desidera veramente resettare la barra degli strumenti?";
            }
            System.Diagnostics.Debug.WriteLine("TOOLSTRIP:" + localizationString);
            return string.Empty;
        }
the case in bold font will never be called, so when you open the customize dialog box you see the english text.
(By the way 'Cusomize' is not right too)..

Nikolay
Telerik team
 answered on 22 Apr 2010
0 answers
119 views
Hi Guys,
so I am playing around with my new application. I got a radStatusStrip. This contains a radProgressbar. I created a time with a tick event, looking like this :

        private void timerProgressbar_Tick(object sender, EventArgs e) 
        { 
            radProgressBarTimerTicks++; 
 
            if (radProgressBarTimerTicks >= 100) 
            { 
                radProgressBarTimerTicks = 0; 
            } 
            radProgressBar1.Value1 = radProgressBarTimerTicks; 
 
            radStatusStrip1.Refresh(); 
            radProgressBar1.Refresh(); 
        } 

I got two methods start/stopProgressbarAnimation. The Start Method enable the time to go for it :) But nothing happend. I even call refresh on each control.

I export my code to a winform application with the a radProgressbar and it works. 

Can someone help or tell me what I am doing wrong ? I can´t find any information about this behavouir.

Thanks again
Dieter
Top achievements
Rank 1
 asked on 22 Apr 2010
2 answers
120 views
BUEN DÍA:

Según el tutorial que descargué de la página, para crear un nuevo RadForm, debemos ir a AddNew y seleccionar en el diálogo el RadForm. Sin embargo, no me aparece el RadForm entre las opciones y me toca crear un WindowsForm y modificar la clase en el Form.Designer.vb.
Quisiera saber que tengo que hacer para que me el RadForm aparezca en las opciones de NewItem.

Gracias.
Andrés David Santacoloma Isaza
Top achievements
Rank 1
 answered on 21 Apr 2010
1 answer
95 views
Hola:

tengo problemas porque marca error cuando coloco la siguiente instrucción:

 

cbHorizontalFlip.ToggleStateChanged -= HorizVert_ToggleStateChanged

el error se produce porque exige enviarle parámetros al método HorizVert_ToggleStateChanged

Este método está en el tutorial de RadForms

Gracias.

Nikolay
Telerik team
 answered on 21 Apr 2010
1 answer
143 views
Hi,
how can i add an image into RadDropDownButton? I need image on the left than text.

Regards,
Zbigniew Kozłowski
Nikolay
Telerik team
 answered on 21 Apr 2010
1 answer
305 views
It would appear that the RadDateTimePicker does not have a ReadOnly property.  I am aware that I can disable the control.  A control that is disabled behaves differently than a control that is set to read only.  The controls appearance is also different.

Is there a way to set the RadDateTimePicker to read only?  if not then is there a work around to disable the control and make it appear as if it were read only?  If not, then may I suggest that is a future version that you add read only functionality.

I find this interesting that the DateTimePicker that ships with VS also lacks a ReadOnly property.
Nikolay
Telerik team
 answered on 21 Apr 2010
1 answer
94 views
Is hierarchal linq supported yet? If so are there any examples on how to do set upt the grid.
Julian Benkov
Telerik team
 answered on 21 Apr 2010
2 answers
143 views

Requirements

RadControls version

2010.1.10.409
.NET version 4.0
Visual Studio version

2010
programming language

C#
browser support

all browsers supported by RadControls


PROJECT DESCRIPTION
I ran into the problem where I needed a column to be read-only after data was entered.  In this case, the Zip Code could not change once it was entered by the user.

        private void rgLocations_CellBeginEdit(object sender, GridViewCellCancelEventArgs e) 
        { 
            if (((GridViewDataColumn)this.rgLocations.CurrentColumn).UniqueName == "Zip Code" && 
                                     this.rgLocations.CurrentRow.Cells["Zip Code"].Value != DBNull.Value) 
            { 
                e.Cancel = true
                RadMessageBox.SetThemeName(this.ThemeName); 
                RadMessageBox.Show("You cannot edit zip codes of an existing Location"); 
            } 
        }  

Chad Hensley
Top achievements
Rank 1
 answered on 21 Apr 2010
3 answers
104 views
I have read the following link and it shows including a relative path for an image.

http://www.telerik.com/help/winforms/tpfhtml-like_text_formatting.html

I tried the same for a link in the RadMessageBox and it does not work.  I am trying to point to a .htm in my project.  If I hard code the path it works fine.







Peter
Telerik team
 answered on 21 Apr 2010
3 answers
266 views
I would like to be able to create an image of a chart created in my application so that i can attach it to an email or save as an image for archiving.  Can I create an image (bitmap,gif,jpeg,etc) object (System.Drawing.Image?) from the RadChart class with a given size or resolution (create an image of the chart scaled to 6"x9")?
Dwight
Telerik team
 answered on 21 Apr 2010
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
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
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
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
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
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?