Telerik Forums
UI for WinForms Forum
1 answer
157 views

I have a DropdownList with almost 20 items in it with Style DropDown When I Start Typing, it's shortlisting the items and obviously there is some item on top of the list, if i typed complete text and then press enter then focus is being transferred on next field automatically and if i don't type complete text of list item and just press enter then it is just closing the list and focus is still within the same DropDownList Control. Which is why user needs to Enter twice to move forward.

What could be the issue or did i missed something to set .

 

Regards

MSA

Dimitar
Telerik team
 answered on 28 Nov 2016
1 answer
282 views

We have just bougth DevCraft complete developer for one developer and as a test, downloaded the winform component from https://www.telerik.com/account/my-downloads

well I have two machines that have visual studio and i installed winform component both and i can design at the same time, but i did not add any license (licx file that even i dont know what is, source http://docs.telerik.com/devtools/winforms/licensing/license-file-(licx) )
so i just logon the telerik website and download the winform component exe and installed to the both machine and i can use telerik winform components and build and execute them in different machine. 
and i checked that dlls are not trial version (from dll properties).. 
I am concerning that several days later will i be warned for license key ? because when i install a product to my customer, after 30 days later, i did not want any problem for the telerik dlls.
I searched also similar topic but did not find a right answer. 

Could you inform me about this stuff? and secondly is there any difference between asp.net mvc license, wpf license, winform license etc. 
Thank you

PS: I opened this tread in wrong place please delete it.(http://www.telerik.com/forums/telerik-license-algorithm-confuses-me)

 

Hristo
Telerik team
 answered on 25 Nov 2016
1 answer
105 views

Hi,

I have a Polar ChartView with PolarPoint series and a custom background, for evid better the points I need to change the outline of datapoints (ex: 1 pixel of black outside the circle).

I managed to change the shape with PolarPointSeries.Shape and size with .PointSize but I didn't reach the point border props or color.

How I can manage that?

Hristo
Telerik team
 answered on 25 Nov 2016
1 answer
59 views

I am an end user with a program built with Telerik.  I'm getting the following error when trying to use the application (the provider is useless):

The type initializer for 'Telerik.WinControls.UI.RadTabStripElement' threw an exception.

Any suggestions on why this might be happening or where I can look for a useful error message that might point me in the right direction?

I saw something about fonts on another forum and installed all the Core fonts I could find, but it hasn't helped.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Nov 2016
3 answers
191 views

Hello, I'm using Openedge 11.6. How do I go about capturing the selected item in a RadListbox and display it in another field? There is only 1 column and the details in the List are programmatically loaded. What I have below is displaying the Listbox object and not the selected items.

 

@VisualDesigner.
method private void radListView1_Click( input sender as System.Object, input e as System.EventArgs ):
    this-object:radtextbox2:text = cast(sender, Telerik.WinControls.UI.RadListView):text.
     return.
end method.

 

Also, is there a resource available with sample code for Openedge Visual Designer developers?

Thanks

Mark

Dimitar
Telerik team
 answered on 25 Nov 2016
7 answers
415 views


Hi

I have been frustrated about this.. What I need is simple – Need to know the visible ranges of both X & Y axis. I am using a Range Selector, but it seems only to give me X ranges. I need Y too. (Also using a LassoZoomController) I have not been able to find anything. Please help.

Thanks
Hristo
Telerik team
 answered on 24 Nov 2016
6 answers
367 views

Hello,

I need some help with my application code.

I'm trying to do a PerformClick on a CommandColumn in a single row in a single cell.

How can I access the ButtonElement in that cell and do a PerformClick event programmatically?

Thanks in advance

Roberto

Roberto Wenzel
Top achievements
Rank 2
 answered on 24 Nov 2016
7 answers
272 views

Hi, 

When this mode is set and new screen location point is applied, then the window shrinks in height each time it's shown.
Even from 1-st ShowDialog its width becomes less.

Example:
If it's used as the once instatiated dialogBox and is shown each time it is needed, then each showtime it becomes less and less in heigth, up to its Top bar.

 

 

Dimitar
Telerik team
 answered on 24 Nov 2016
4 answers
913 views

I use the following function to load Horse names starting with a given letter

The first call returns and displays the list in the grid view

But at the second and following calls, while the HorseList is correctly generated, the display in the grid does not display the new list

I know that this questionhas been discussed many times but I have not found the solution .....

Thanks in advance

-----------------------------------------------------------------------------------------------------------------------------------------------------------------

      Public Function LoadNode(ByVal FirstLetter As String) As Boolean
        Try
            Dim aHorse As New mHorse
            Dim Horses As New List(Of Horse)
            'Load the Horses list where the name starts with "FirstLetter"
            Horses = aHorse.LoadNode(FirstLetter)
            If Horses.Count > 0 Then
                gvHorse.BeginUpdate()
                gvHorse.DataSource = Horses
                gvHorse.EndUpdate()
            Else

            End If
        Catch ex As Exception

        End Try
    End Function

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Nov 2016
4 answers
330 views

I can't figure out how to do the following 2 things.

1. Set the width of the exported columns. They look ok in my grid in the WinForm, but when exported take up too much space.

2. How do I change the style of the column headers? I would like to bold it.

Here's my code.

private void btnExportVendorInvoices_Click(object sender, EventArgs e)
{
    using (SaveFileDialog dialog = new SaveFileDialog())
    {
        dialog.Filter = "Microsoft Excel (*.xlsx)|*.xlsx";
        dialog.FilterIndex = 2;
        dialog.RestoreDirectory = true;
 
        if (dialog.ShowDialog() == DialogResult.OK)
        {
 
            rgvInvoices.EnableAlternatingRowColor = true;
            var exporter = new ExportToExcelML(rgvInvoices);
            exporter.SheetMaxRows = ExcelMaxRows._1048576;
            exporter.HiddenColumnOption = HiddenOption.DoNotExport;
            exporter.ExportVisualSettings = true;
            exporter.ExcelCellFormatting += explorter_ExcelCellFormatting;
            exporter.RunExport(dialog.FileName);
            exporter.ExcelRowFormatting += exporter_ExcelRowFormatting;
 
            var dr = RadMessageBox.Show(this, "File has been saved, would you like to open it?",
                                        "File saved", MessageBoxButtons.YesNo, RadMessageIcon.Info);
            if (dr.ToString() == "Yes")
            {
                System.Diagnostics.Process.Start(dialog.FileName);
            }
        }
    }
}
 
 
private void explorter_ExcelCellFormatting(object sender, ExcelCellFormattingEventArgs e)
{
    if (e.GridCellInfo.RowInfo is GridViewDataRowInfo)
    {
        if (e.GridCellInfo.ColumnInfo.Name == "vendorFedId")
        {
            e.ExcelCellElement.Data.DataItem = string.Format("{0:00-0000000}", Convert.ToInt32(e.GridCellInfo.Value));
        }
    }
}
Dimitar
Telerik team
 answered on 24 Nov 2016
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
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
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?