Telerik Forums
UI for WinForms Forum
3 answers
331 views
Hello everyone,

We are willing to update an application we started to develop since a few months with the Telerik components. I was wondering if there is a simple way to convert all the Winforms (about 100 of them) into Radforms easily?

I have also another question:
Once I convert all my winforms into radforms. I would like to display the forms inside the mainform with radribbonbar according on which button in the radribbonbar the user clicks. I found a solution: add a panel into the mainform. On each radform, below all the components there will be another panel which will be added or removed from the panel in the mainform according to what is needed. Do you think it's the best solution? Do you have any other solution?

I could not find much information about the radform in the documentation... that's why I am asking on the forum.

Thank you.
LB.

Stefan
Telerik team
 answered on 16 Jan 2012
21 answers
286 views
Hi. I use RadMaskedEditBox to display percent values. My code used the value property of the control to obtain the numeric value without the masked format and to assign values to the control form database fields. In Q2 2011 this is no longer possible because the value property returns the same values as the text property and when I assign values it no longer displays them correctly.

If my masked box displayed "4.00 %", the value property used to return 0.04. Now it returns "4.00 %". In the same way, if the database field had a value of 0.04 the masked box used to display "4.00 %" and now it displays "0.04 %".

Am I doing something wrong or is there a new way of doing this?

Thanks,

Javier Gonzalez de Aragon.
Peter
Telerik team
 answered on 16 Jan 2012
3 answers
114 views
Hi guys :)

I Have a Radgridview  and I want to hide other columns when I doubleclick a certain column
Im doing it through this code

Private Sub DataGridView1_CellDoubleClick(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles DataGridView1.CellDoubleClick
     DataGridView1.Columns("Column1").IsVisible = False
     DataGridView1.Columns("Column2").IsVisible = False
 End Sub

But the problem is that I want to use this event when is certain column is doubleclicked and not for all columns. I want this code to run when I double clicked on column5 for example.

Im using vb.net and totally new to telerik controls

Any help would be appreciated in this regard.

Thanks :)
Stefan
Telerik team
 answered on 16 Jan 2012
3 answers
120 views
Dear Support ,
                          Just returning from extensive use of Telerik ASP.Net Grid :)  I  am unable to find DataKeyNames property in WinForms GridView . Kindly do let me know how I can find and use this in WinForms GridView.I am using Telerik controls version Q3 2010

Regards
Jack
Telerik team
 answered on 13 Jan 2012
1 answer
98 views
Hi,

I would like to know if there is a possibililty to just filter on the RadGridView by passing a string to a certain property.

I've seen that there is FilterExpressionChanged Event which has the FilterExpressionChangedEventArgs as argument and that argument has a property FilterExpression.

What I would like to have is to be able to just call this property FilterExpression so I know in a string the filter expression on the entire grid and can also pass a string to this Expression to be able to filter.

Is this possible? Or maybe a workaround?
Julian Benkov
Telerik team
 answered on 13 Jan 2012
1 answer
118 views

Hey :)

I made a radgridview  that displays too multiple columns

And within this radgridview  , it has a column FirstNAme, MiddleName, LastName,  QuizAverage, Quiz1, Quiz2, Quiz3 etc

How can I get the columns that contains the string "Quiz" such as QuizAverage, Quiz1, Quiz2, Quiz3 etc.. without specifying their indexes?
Just by mere Identifying wheter a ceratin column name contains "Quiz"

Thanks for help in this regard :)

Julian Benkov
Telerik team
 answered on 13 Jan 2012
3 answers
128 views
Hi,

We're looking at using the RichTextBox control to generate HTML elements that will appear within a page (for example, to specify a rich text product specification that will appear as part of a product information page).

When HTML is exported from the control, it is exported with large quantities of header markup and additional tags that are unnecessary for our purposes.  Unfortunately, since the styles are contained within the header section, simply stripping out this superfluous content is not possible without losing the text formatting.

Is it possible to configure the HTML provider to generate in-line styles so the formatting will remain consistent when used as part of any HTML document?  Additionally, is it possible to avoid additional markup (such as the classing of paragraphs and spans) when no modifications are being made to the styles in order to avoid the quantity of text generated?

I have the feeling the control is simply unsuitable for our needs, but please let me know if anyone has a solution to this.

Thanks.
Jack
Telerik team
 answered on 13 Jan 2012
1 answer
154 views
I have a BindingList bound to a GridView. I can make changes to the grid which are reflected back into the BindingList. The BindingList is filled from a linq result set. How do I move the changes in the BindingList back to the database?

TRACKING[] data = (from t in context.TRACKINGs
                   where SqlMethods.Like(t.EHT_ISO_DWG, "%02-02%")
                   select t).ToArray();
return new BindingList<TRACKING>(data);

The above code is what is used to fill the BindingList. The return value is the set to the DataSource property of the GridView.
Julian Benkov
Telerik team
 answered on 13 Jan 2012
1 answer
80 views
Hi,
I’m using “RadControls for WinForms Q3 2011 SP1” and I need to display the data in Hierarchical GridView from objects as shown in the attachment. I found in forum that there is a solution http://www.telerik.com/community/forums/winforms/gridview/hierachical-gridview-from-objects.aspx but this is not working with the latest version. Please help me.

Regards.
Muralidhar.
Ivan Petrov
Telerik team
 answered on 13 Jan 2012
12 answers
535 views
I want to position three buttons at the left edge of the main RadMenu of a form.  These buttons need to be created, added, and removed from the menu programmatically, via C#.  Looking through this forum I found a thread advising that I manually position the buttons, and attempted that - but the RadMenu's Size field seems to be holding an incorrect value, which is quite a bit too wide and results in the buttons ending up far off the right of the form and thus not visible.  I know of no other way to get the menu width.  Is there something else I need to do, or some other method I could try to make this work?  I am using version 2011.3.11.1116.  Thanks.
Bill
Top achievements
Rank 1
 answered on 12 Jan 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
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
ProgressBar
CheckedDropDownList
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
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
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
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?