Telerik Forums
UI for WinForms Forum
2 answers
203 views
Please have a look at the screenshot attached. There is a green tint around the form and other places on the form. I would like to achieve a design similar to MetroTwit, Zune and want to get rid of these lines. Any ideas how this can be done?
Oguzhan
Top achievements
Rank 1
 answered on 28 Mar 2014
1 answer
64 views
Hello.
I'm having problem with RadLabel. it is a good control, thank u, I'm using this control in right to left state.
when I use markup, It can support texts properly, the words must start at the right, but they going to right and starting from left to right.

in the attached file... there must be 'تنظیمات شرکت' not 'شرکت تنظیمات'
if the problem have a solution, post me asap. but if it needs time to fix it. please fix the problem in future release.
Thanks in advanced
George
Telerik team
 answered on 28 Mar 2014
1 answer
73 views
I have a very large data set bound to the AutoCompleteBox and there is about a 5 second delay from when the user types some character until the AutoCompleteBox returns the suggestions. Is there a set of events I can subscribe to (e.g. AutoCompleteLookupBegin, AutoCompleteLookupEnd) or a method I can override so that when the look-up starts I can set a busy cursor or indicate to the user that the search is on going? As of right now this delay blocks the UI which isn't a problem as long as we let the user know something is happening.


Thank You,
Chris
----------
Telerik Version: Telerik Controls for WinForms Q1 2014
.Net Version: 4.0
Language: C#
Dimitar
Telerik team
 answered on 28 Mar 2014
3 answers
133 views
the categories in property grid don't collapse - expand on double click .  You explicitly need to click on slider icon
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Mar 2014
10 answers
206 views
Hi,
I am trying for a while now to figur out what I have wrong in setting up my 3 level relation. I keep getting an unspecified error if I try to open the 3rd level. Am I missing a little detail?
Karl
private void RadForm1_Load(object sender, EventArgs e)
{
    this.t_TagTableAdapter.Fill(this.pAS3DataSet.T_Tag);
    this.t_Lex_BegriffTableAdapter.Fill(this.pAS3DataSet.T_Lex_Begriff);
    this.t_G_GendreTableAdapter.Fill(this.pAS3DataSet.T_G_Gendre);
    this.MyFilmsTableAdapter.Fill(this.pAS3DataSet.MyFilms);
    this.t_GlossarTableAdapter.Fill(this.pAS3DataSet.T_Glossar);
 
    GridViewComboBoxColumn myColumn = new GridViewComboBoxColumn();
    myColumn.Name = "Gendre";
    myColumn.HeaderText = "Gendre";
    myColumn.DataSource = this.tGGendreBindingSource;
    myColumn.ValueMember = "G_GendreID";
    myColumn.DisplayMember = "DE";
    myColumn.FieldName = "G_GendreID";
    myColumn.Width = 100;
    this.radGridView1.Columns.Add(myColumn);
 
    GridViewDecimalColumn dColumn = new GridViewDecimalColumn();
 
    // 2nd level
    // -------------Child --------------
    GridViewTemplate FilmTemplate = new GridViewTemplate();
    this.radGridView1.Templates.Add(FilmTemplate);
 
    //              set columns of filmtemplate
    //           GridViewDecimalColumn dColumn = new GridViewDecimalColumn();
    dColumn = new GridViewDecimalColumn("FilmID");
    dColumn.Name = "FilmID";
    dColumn.HeaderText = "FilmID";
    dColumn.FieldName = "FilmID";
    dColumn.IsVisible = false;
    FilmTemplate.Columns.Add(dColumn);
 
    dColumn = new GridViewDecimalColumn("GlossarID");
    dColumn.Name = "GlossarID";
    dColumn.HeaderText = "GlossarID";
    dColumn.FieldName = "GlossarID";
    dColumn.IsVisible = false;
    FilmTemplate.Columns.Add(dColumn);
 
    dColumn = new GridViewDecimalColumn("Anzahl");
    dColumn.Name = "Anzahl";
    dColumn.HeaderText = "Anzahl";
    dColumn.FieldName = "Anzahl";
    myColumn.Width = 100;
    FilmTemplate.Columns.Add(dColumn);
 
    GridViewTextBoxColumn tColumn = new GridViewTextBoxColumn();
    tColumn.HeaderText = "myFilmName";
    tColumn.FieldName = "myFilmName";
    tColumn.Width = 300;
    FilmTemplate.Columns.Add(tColumn);
    //   FilmTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
 
    // now create relations
 
    GridViewRelation relationGlos_Film = new GridViewRelation(radGridView1.MasterTemplate, FilmTemplate);
    relationGlos_Film.RelationName = "T_Glossar_MyFilms";
    relationGlos_Film.ParentColumnNames.Add("GlossarID");
    relationGlos_Film.ChildColumnNames.Add("GlossarID");
    this.radGridView1.Relations.Add(relationGlos_Film);
    FilmTemplate.DataSource = this.tFilmBindingSource;
    FilmTemplate.Caption = "Filme";
 
 
    // -------------Child Glossary--------------
    GridViewTemplate LexTemplate = new GridViewTemplate();
    this.radGridView1.Templates.Add(LexTemplate);
    GridViewDecimalColumn dxColumn = new GridViewDecimalColumn();
    // set columns of Glosstemplate
 
    dxColumn = new GridViewDecimalColumn("GlossarID");
    dxColumn.Name = "GlossarID";
    dxColumn.HeaderText = "GlossarID";
    dxColumn.FieldName = "GlossarID";
    dxColumn.IsVisible = false;
    LexTemplate.Columns.Add(dxColumn);
 
    dxColumn = new GridViewDecimalColumn("LexID");
    dxColumn.Name = "LexID";
    dxColumn.HeaderText = "LexID";
    dxColumn.FieldName = "LexID";
    dxColumn.IsVisible = false;
    LexTemplate.Columns.Add(dxColumn);
 
    GridViewTextBoxColumn txColumn = new GridViewTextBoxColumn();
    txColumn.Name = "myLex";
    txColumn.HeaderText = "myLex";
    txColumn.FieldName = "myLex";
    txColumn.Width = 300;
    LexTemplate.Columns.Add(txColumn);
 
    // now create relations
 
    GridViewRelation relationGlos_Lex = new GridViewRelation(radGridView1.MasterTemplate, LexTemplate);
    relationGlos_Lex.RelationName = "T_Glossar_T_Lex_Begriff";
    relationGlos_Lex.ParentColumnNames.Add("GlossarID");
    relationGlos_Lex.ChildColumnNames.Add("GlossarID");
    this.radGridView1.Relations.Add(relationGlos_Lex);
    LexTemplate.DataSource = this.tLexBegriffBindingSource;
    LexTemplate.Caption = "Lexika";
 
    // 3rd level
 
    GridViewTemplate SzenenTemplate = new GridViewTemplate();
    GridViewRelation relationFilm_Tag = new GridViewRelation(FilmTemplate, SzenenTemplate);
    relationFilm_Tag.RelationName = "T_FilmT_Tag";
    relationFilm_Tag.ParentColumnNames.Add("FilmID");
    relationFilm_Tag.ChildColumnNames.Add("FilmID");
    FilmTemplate.Templates.Add(SzenenTemplate);
    this.radGridView1.Relations.Add(relationFilm_Tag);
    //this.radGridView1.MasterTemplate.Templates[0].Templates.Add(SzenenTemplate);
 
    SzenenTemplate.Caption = "Szenen";
 
    dxColumn = new GridViewDecimalColumn("TagID");
    dxColumn.Name = "TagID";
    dxColumn.HeaderText = "TagID";
    dxColumn.FieldName = "TagID";
    dxColumn.IsVisible = true;
    SzenenTemplate.Columns.Add(dxColumn);
 
    dxColumn = new GridViewDecimalColumn("FilmID");
    dxColumn.Name = "FilmID";
    dxColumn.HeaderText = "FilmID";
    dxColumn.FieldName = "FilmID";
    dxColumn.IsVisible = true;
    SzenenTemplate.Columns.Add(dxColumn);
 
    SzenenTemplate.DataSource = this.tTagBindingSource;
 
}

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Mar 2014
5 answers
1.0K+ views
Hi,

I am using RadGridview for an application that runs on touch screen monitor. It becomes very difficult for the users to scroll using the standard sized scroll bars that come up in radgrid. Can someone please advice on how to increase the scroll bar width.

thanks
J Sagayanathan
Ivan Petrov
Telerik team
 answered on 28 Mar 2014
4 answers
278 views
Good day Telerik Forums


i have a question relating the RadCalendar control.

for an application i am developing we needed to display Week numbers.
so after switching on Row headers in RadCalendar, we found out that the numbering does not correspond with our previous controls.


Is there a way to alter the numbering of weeks?
changing culture did not have (any) desired effect.


i have included a picture displaying the differences.
on a side note: in telerik weeks go almost always to 53(sometimes to 54) and always start at 2 unless the year starts on a monday.


thanks in advance and with kind regards!
A. Drost
A. Drost
Top achievements
Rank 1
 answered on 28 Mar 2014
5 answers
153 views
Hi

We build Telerik assemblies from source for redistribution as per your instructions here. In the VS2010 Release40 configuration the target framework is .NET Framework 2.0 by default.

Should we be changing the target framework to .NET Framework 4.0 in Release40 configuration prior to building? The reason I ask is twofold:

1) Would it be good practice in general?
2) We use Ngen as part of our application installation. If this is done on a machine without .NET2 installed (i.e. just .NET4 installed) the Ngen fails because it fails to find .NET2 dependencies.

Many thanks.

Adrian
George
Telerik team
 answered on 27 Mar 2014
12 answers
608 views
Dear Admin,

I have a RadScheduler with ActiveViewType = Day and RadScheduler1.GroupType = GroupType.Resource which my resources are my Employee.
I wrote this code to create an appointment, but it does not work and my RadScheduler does not show the appointment:

 

 

 

Private Sub NewAppointment(ByVal StartDateTime As Date, ByVal EndDateTime As Date, ByVal EmployeeID As Integer) 
    Dim duration As Long = DateAndTime.DateDiff(DateInterval.Hour, StartDateTime, EndDateTime) 
    Dim apt As New Appointment() 
    apt.Start = StartDateTime
    apt.End = StartDateTime.AddHours(duration)
    apt.Summary = "Summary Test"
    apt.ResourceId = 
    New EventId(EmployeeID) 

    'RadScheduler1.Appointments.Add(apt) 

    RadScheduler1.ActiveView.Appointments.Add(apt)
End Sub

 

What did I wrong?

I am looking forward to hearin from you as soon as possible.
Thank you in advanced.
Kian

 

 

 

 

 

 

Jeffrey
Top achievements
Rank 1
 answered on 27 Mar 2014
1 answer
115 views
I have a RadContextMenu assigned to my RadGridView 
I want this only be displayed when the user clicks a row with 
data that is not displayed when the user click on header of RadGridView
Stefan
Telerik team
 answered on 27 Mar 2014
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?