Telerik Forums
UI for WinForms Forum
8 answers
321 views
How do you go about updating only 1 instance of a recurring appointment programmically?  Say I want to change the tooltip or background color of just the occurence highlighted rather than all occurences that exist.
Peter
Telerik team
 answered on 25 Apr 2013
1 answer
187 views
Hi,

I had created a dock and it have three documentWindows
I want to set a fixed size for documentWindow1 so that its size did not change even if i had changed the size of my main window.
Is it possible to set fixed height and width separately ?
Anton
Telerik team
 answered on 25 Apr 2013
2 answers
120 views
Hi, i have done some column grouping in the grid with the summary information displaying correctly. 

What i want to do now is to export this summary / or loop through the rows (only system row that contains the summary...not the underlying rows containing the data), is there any way to do this ?

Thank you
Martin
Top achievements
Rank 1
 answered on 24 Apr 2013
1 answer
265 views
Hi,

I have a Masked Edit Box with mask type Numeric and mask = "n2"

When I edit the value in the text box, I find there are 3 possible data entry scenarios, and one is causing our users problems.

Assume the field already contains a value "23.55" and the user wishes to change this to "23.65" :

1 - Focus the field so that the entire contents are pre selected and highlighted. Typing overwrites the current contents so the user manually enters the new value completely as "23.65" including the decimal point. The final value is correct and this behavior is intuitive.

2 - Click into field to deselect the contents. The entry caret is at the end of the string. Left arrow twice so that the caret move two characters to the left and is AFTER is the decimal point. Type "65" and this replaces the existing "55" value so the complete field contents are now "23.65". This is again expected and intuitive.

3 - Click into the field to deselect contents. Caret is at the end of the string. Backspace twice and the data entry caret now jumps to BEFORE the decimal point. Enter "65" as with case 2, but now the value is "2365.00" which is incorrect. I would expect the caret to remain AFTER the decimal point as with case two, as jumping over the decimal places is a three character move to the left.

Our users are performing very rapid and high volume data entry and the different caret position and different behavior can be very difficult to spot, so they are finding highly significant data entry errors with values being out by thousands. I would expect the left arrow and backspace to leave the caret AFTER the decimal point to help prevent this and more accurately reflect the number of keypresses and characters navigated.

Is there any way to prevent the caret jumping to BEFORE the decimal after backspace?

Many thanks

Mark.









Peter
Telerik team
 answered on 24 Apr 2013
1 answer
135 views
Hey Telerik!

Is there an event that I can use to determine when a user has removed a textblock from the textbox?  I would need to be able to get the value for the removed object.

Thanks
Ivan Petrov
Telerik team
 answered on 24 Apr 2013
12 answers
717 views
Hello,

I'm using a Rad Dock with some TabedToolWindows. I'm currently trying to change colors by "Edit UI Elements"-Task on the Tabstrip. Can you tell me how I can change the color of the Border around the ToolWindows or how to set it to invisible?
I marked it red with Photoshop in the attached picture.

Thanks.
 
George
Top achievements
Rank 1
 answered on 24 Apr 2013
2 answers
142 views
Hi,

I'm using the RadMessageBox with hebrew language (RTL) and have my message truncated due to improper dialog sizing (message is short, around 40 char. max)

It seems that when the dialog is showed up, it will properly resize itself on second time. meaning, the dialog resize is happening after show method is being called.

I'm using v2013.1.220

Any Idea?

Thanks!

Gal
Top achievements
Rank 1
 answered on 24 Apr 2013
1 answer
99 views
Hello,

Question concerning the binaries included in the install:

There is a Bin\ and a Bin40\ directory. Is that for .NET 4.0? And what other version(?). Current through .NET 3.5? .NET 4.5?

I can't imagine we would start any projects with anything less than .NET 4.0, but just wanted to clarify that detail.

Thank you...

Regards,

Michael Powell
Stefan
Telerik team
 answered on 24 Apr 2013
1 answer
66 views
In the example listed at http://www.telerik.com/help/winforms/editors-autocompletetextbox-creating-custom-blocks.html .  At the very bottom you have some code for 

radAutoCompleteBox1.TextBlockFormatting += new TextBlockFormattingEventHandler(radAutoCompleteBox1_TextBlockFormatting);
this.radAutoCompleteBox1.Text = "Euro;USD;GBP;";

Only new textblocks created are formatted with the new style.  These 3 text blocks 'Euro' 'USD' and 'GBP' are in the old format.  The TextBlockFormatting code is not listed.

I need this to finish up my custom TextBlock.

Thanks

Stefan
Telerik team
 answered on 24 Apr 2013
2 answers
168 views
I would like to change the BackColor a datagridview row. While searching around it 's clear that I will have to access the GridDataRowElement or GridDataCellElement to do it. From that  after creating a variable of the type  we can call something  RowElement.BackColor = Color.Gray or CellElement.BackColor = Color.Gray

I have already tried this but it only colors row while the mouse is hovering at it (very strange...)
Dim rwInfo As GridViewRowInfo = myGrid.Rows(i)
myGrid.GridViewElement.TableElement.GetRowElement(rwInfo).BackColor = System.Drawing.Color.PaleGoldenrod


Now with the code below as a pointer, my problem is that I'm trying to cast a gridview row as GridDataRowElement it always results in epic failure.


For i = 0 To myGrid.Rows.Count - 1
Dim r As GridViewRowInfo = myGrid.Rows(i)
Dim rwInfo As GridViewRowInfo = myGrid.Rows(i)
For Each cInfo As GridViewCellInfo In rwInfo.Cells
Dim row As GridDataRowElement = TryCast(myGrid.Rows(i), GridDataRowElement)
Next
  For Each c In myGrid.Columns
Dim cell As GridDataCellElement = CType(rwInfo.Cells(c.Index), GridDataCellElement)
Next
Next


Could someone please point me to the right direction on how this can be done?

Thanks
Stefan
Telerik team
 answered on 24 Apr 2013
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
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?