Telerik Forums
UI for WinForms Forum
3 answers
146 views
Please refer the picture from attachment.

2 questions below...

1. How to auto resize popup list?
I want the popup list width greater than column width. 

2. How to display the full text when mouse over?
I need let the user know value before selecting.

I hope it can done.
Thanks in advance.
Ivan Petrov
Telerik team
 answered on 07 Jun 2012
0 answers
140 views
I am trying to use the following code to move to other controls every time someone presses Enter but this code seems to require some changes to function with telerik radtextbox especially the following line "tbs(i).KeyDown += New KeyEventHandler(AddressOf textBoxes_KeyDown)". How can I trnslate this line into telerik
Public Partial Class Form1
Inherits Form
Private tbs As TextBox()
Public Sub New()
InitializeComponent()
tbs = New TextBox() {textBox1, textBox2, textBox3}
For i As Integer = 0 To tbs.Length - 1
tbs(i).Tag = i
tbs(i).KeyDown += New KeyEventHandler(AddressOf textBoxes_KeyDown)
Next
tbs(0).Focus()
End Sub
Private Sub textBoxes_KeyDown(sender As Object, e As KeyEventArgs)
Dim tb As TextBox = TryCast(sender, TextBox)
If tb IsNot Nothing Then
If e.KeyCode = Keys.Enter Then
Dim tag As Integer = CInt(tb.Tag)
If tag = 2 Then
tbs(0).Focus()
Else
tbs(tag + 1).Focus()
End If
End If
End If
End Sub
End Class
Tendai
Top achievements
Rank 1
 asked on 07 Jun 2012
0 answers
107 views
Hello
when I use 'Form.show dialog()' , them form is shown with vibration and It seems that objects of form are shown with delay.please help me to solve this problem.
Roya
Top achievements
Rank 1
 asked on 07 Jun 2012
1 answer
80 views
I updated from Telerik winforms 2009 Q1 to 2012 Q1 and after dong the Upgrade Wizard i get the following errors:

Error 1 The type or namespace name 'RadPanelBar' does not exist in the namespace 'Telerik.WinControls.UI' (are you missing an assembly reference?) C:\Sources\LUIS_RELEASE_BRANCH 2010\UI\MEMBER\frmMemberMain.Designer.cs 1911 40 LUIS


Error 2 The type or namespace name 'RadPanelBarGroupElement' does not exist in the namespace 'Telerik.WinControls.UI' (are you missing an assembly reference?) C:\Sources\LUIS_RELEASE_BRANCH 2010\UI\MEMBER\frmMemberMain.Designer.cs 1912 40 LUIS

What the new namespace?

John

Nikolay
Telerik team
 answered on 06 Jun 2012
11 answers
376 views
Support,
I'm trying to acheive cross tab results using RadGridview.Please let me know whether this is acheivable using RadGridView.Appreciate if you can provide me a sample.

Actual data
Basicpay           TotalCash        Percentil
10000                20000                10
20000                30000                20
30000                70000                50
50000                80000                90

Cross Tab Result
                        10        20        50        90
Basic Pay        1000    2000    3000    4000
Total Cash       3000    4000    5000    6000


Thanks in advance.

-Cheers
G
Nikolay
Telerik team
 answered on 06 Jun 2012
1 answer
85 views

Hi

I'm using radscheduler in a planning system to assign employees, workplaces and other resources to orders and tasks.
The logic respects working hours (including breaktime,blocktime, flextime, standbytime...), absences (illness, vacation, civil work, school...) and constraints (Skills,location...). The job/task-duration can be anything from 0.5 hours to hundreds of Hours.

Because my Businesslogic generates multiple assignments based on planning rules (FIFO,COST Based, Capacity Utilization,Troughput-Time,...) and available timeslots per resource it's not possible to go with one of the existing RecurrenceRule (MinutelyRecurrenceRule, HourlyRecurrenceRule, DailyRecurrenceRule, WeeklyRecurrenceRule, MonthlyRecurrenceRule, YearlyRecurrenceRule)
 

Therefore my Feature request for Telerik is to add support for "multiple Recurrence Rules" or to add a new "CustomRecurrenceRule" which allow to add multiple Occurences.

//Inclusion Rule"-Sample
radScheduler1.Appointments[0].RecurrenceRule = new CustomRecurrenceRule(StartDateTime,EndDateTime );
radScheduler1.Appointments[0].Occurrences.Add(new IEventOccurence(fromDateTime,UntilDateTime,...);
  
//Multiple Rules Sample
RadScheduler1.Appointments(0).RecurrenceRules.add(New SingleRecurrenceRule(EventStartDateTime,EventEndDateTime);

I think this Feature would bee usefull to others as well!  If there is another way to accomplish my requirement, please let me know.

Thanks.

Daniel K

Ivan Todorov
Telerik team
 answered on 06 Jun 2012
5 answers
139 views
Hello!

I don't know what the name for this is, but I hope you understand.
I want to hide the 'GroupRowHeaders'. For this, I have attached a screenshot. The red marked area shold be hidden.

Kind regards

Michael

Boryana
Telerik team
 answered on 06 Jun 2012
1 answer
83 views
Helou

How to add RadContextMenu to RadButtonElement on RibbonBar.

Fore some buttons on RibbonBar i have data in db. 
I don't know how many items there are so I can't define the number of RadMenuItems.
I have no problem with read it from db.

You write
"Select the RadContextMenu component and click its Smart-Tag. From the Action Menu click on the Add ContextMenuManager option. This will create a RadContextMenuManager instance and will add a RadContextMenu property to all the controls on our form.     "
Its not true. There no RadContextMenu property  for controls at ribbon bar (or i can't fint it).

For some controls i wpuld like to do context menu like this

  Pos1
     Item1
     Item2
     Item3
 Pos2
    Item1
 Pos3
   Item1
   Item2


Thanks for help
Kamila
Nikolay
Telerik team
 answered on 06 Jun 2012
1 answer
122 views
Is it possible to paste images into the RichTextBox? (Screen capture, copy/paste from Word, etc?)

Using the demo app, it doesn't seem to work.. Is this something others have done successfully ?
Svett
Telerik team
 answered on 06 Jun 2012
1 answer
79 views
Hi,

I have a problem with using group descriptor in radgridview.. My problem is "Can i use group descriptor without sorting?"
Because my sorting already used from "order by" in SQL query and i don't need to sort from group descriptor. Can someone help me to solve this problem?

NB : I'm using vb.net so if you're know the solution, please give me the vb's code. Thanks.
Svett
Telerik team
 answered on 06 Jun 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?