Telerik Forums
UI for WinForms Forum
1 answer
93 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
172 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
283 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.1K+ 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
353 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
188 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
699 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
153 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
13 answers
561 views
Hi,
I want to export in csv and pdf  but i  had a many problems .
I use the same code as:
 http://www.telerik.com/help/winforms/gridview-exporting-data-export-to-csv.html 
http://www.telerik.com/help/winforms/gridview-exporting-data-export-to-pdf.html 

for export in csv I got an error   "Entry Point Not Found"

for export to pdf I got the error    "Unable to cast object of type'Telerik.WinControls.UI.GroupPanelElement' to type 'Telerik.WinControls.RadElement'." 

Thanks
Ivan Petrov
Telerik team
 answered on 27 Mar 2014
7 answers
247 views
hi,

I am trying to drag items of a Rad Listbox into a Rad TreeView.

I have found how to do a drag and drop between two Rad ListBoxes. In the same way i have tried for the above senario.

Please can anyone help me how to implement Drag and drop between Rad TreeView and Rad ListBox.

Thank you.

regards,
Mahitha Madala
Dess | Tech Support Engineer, Principal
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)
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
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?