Telerik Forums
UI for WinForms Forum
2 answers
197 views
Hi all,

   I tried installing RadControl for WinForms Latest Version: 2009.1 311 (Mar 11, 2009) .  My OS is WinXP SP2, and Visual Studio 2008 Pro Version 9.0.21022.8 RTM, .Net 3.5 SP1.  I remember I had a problem with installing RadControl for ASP.net, and was able to install the tools into the toolbox manually.  My skill level: know just enough to break something. 

How do install RadControls for Winform manually, here is a copy of the installer log below.

Thanks,
David

Starting ToolBox install procedure.
Exception: The language specified is not supported by any of the installed packages.
Stack:
    at EnvDTE80.Solution2.GetProjectTemplate(String TemplateName, String Language)
   at ToolBoxInstaller.Init(String dteTypeString)
   at ToolBoxInstaller..ctor(String currentVersion)
   at ToolBoxInstaller.Main(String[] arguments)
Loaded Assemblies

 mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
  file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll

 ToolBoxInstaller, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  file:///C:/WINDOWS/Installer/MSIDB.tmp

 EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
  file:///C:/WINDOWS/assembly/GAC/EnvDTE/8.0.0.0__b03f5f7f11d50a3a/EnvDTE.dll

 System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
  file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll

 System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
  file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll

 EnvDTE80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
  file:///C:/WINDOWS/assembly/GAC/EnvDTE80/8.0.0.0__b03f5f7f11d50a3a/EnvDTE80.dll

David
Top achievements
Rank 1
 answered on 10 Apr 2009
2 answers
381 views
is it possible to edit this to allow us to add our own menu items?

also is there an event fired when rightclick happens? i need to check some values outside the sched before allowing access to right click menu

basically i was hoping to use this control to allow admin users to create date range events for a holiday booking website (basically assigning rates & availabilities) where they select the number of days they want. you then right click to get menu to allow you to opens my own popup screen where the user enters the the rates and availability for that date range and then saves. when the form closes then the scheduler will refresh/update with these details

am i asking too much of the control?

Cheers.
Craig
Jordan
Telerik team
 answered on 10 Apr 2009
5 answers
269 views
I am trying to hide row headers by setting ShowColumnHeaders property to false, and it worked, but a thin line remind. Why??
I am hiding all things ShowFilteringRow , ShowGroupedColumn , AllowGrouping ,........ even I hide all cell borders with e.CellElement.DrawBorder and grid borders with GridElement.BorderWidth .
In fact my grid show just Data and thin line at the top of them. How can hide this line?
Nick
Telerik team
 answered on 08 Apr 2009
2 answers
147 views
Hi,

I'm trying to display a 3 level hierarchy into the gridview. I have no problem when I have a 2 level hierarchy. With the 3 level hierarchy I only get the first 2 levels. Now I guess I'm doing something wrong in the relations. But I can't seem to find the mistake or is it something else?

My code:

//add columns and relations 
rgvAdserver.MasterGridViewTemplate.Columns.Add(new GridViewDataColumn { FieldName = "SiteId", HeaderText = "Site Id", HeaderTextAlignment = ContentAlignment.MiddleCenter }); 
rgvAdserver.MasterGridViewTemplate.Columns.Add(new GridViewDataColumn { FieldName = "SiteName", HeaderText = "Site Name", HeaderTextAlignment = ContentAlignment.MiddleCenter }); 
 
var template = new GridViewTemplate { AllowAddNewRow = false, AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill }; 
template.Columns.Add(new GridViewTextBoxColumn { FieldName = "SiteId", IsVisible = false }); 
template.Columns.Add(new GridViewTextBoxColumn { FieldName = "ZoneId", HeaderText = "Zone Id", HeaderTextAlignment = ContentAlignment.MiddleCenter }); 
template.Columns.Add(new GridViewTextBoxColumn { FieldName = "ZoneName", HeaderText = "Zone Name", HeaderTextAlignment = ContentAlignment.MiddleCenter }); 
 
var templateAdslot = new GridViewTemplate { AllowAddNewRow = false, AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill }; 
templateAdslot.Columns.Add(new GridViewDataColumn{FieldName = "ZoneId", IsVisible = false }); 
templateAdslot.Columns.Add(new GridViewDataColumn{FieldName = "Adslot", HeaderText = "Adslot size", HeaderTextAlignment = ContentAlignment.MiddleCenter }); 
 
//add rows template 
rgvAdserver.MasterGridViewTemplate.ChildGridViewTemplates.Add(template); 
rgvAdserver.MasterGridViewTemplate.ChildGridViewTemplates.Add(templateAdslot); 
 
//create relation between both 
var relation = new GridViewRelation(rgvAdserver.MasterGridViewTemplate) 
                   { 
                       ChildTemplate = template, 
                       RelationName = "SiteZonesNetwork" 
                   }; 
 
relation.ParentColumnNames.Add("SiteId"); 
relation.ChildColumnNames.Add("SiteId"); 
rgvAdserver.Relations.Add(relation); 
 
var relation2 = new GridViewRelation(template) 
               { 
                   ChildTemplate = templateAdslot, 
                   RelationName = "zoneAdslot" 
               }; 
relation2.ParentColumnNames.Add("ZoneId"); 
relation2.ChildColumnNames.Add("ZoneId"); 
rgvAdserver.Relations.Add(relation2); 
 
//add data 
rgvAdserver.MasterGridViewTemplate.Rows.Clear(); 
 
GridViewTemplate template = null
GridViewTemplate templateAdslot = null
 
foreach(var data in gridData) 
 
    rgvAdserver.MasterGridViewTemplate.Rows.Add(new object[] { data.siteid, data.sitename }); 
     
    template = rgvAdserver.MasterGridViewTemplate.ChildGridViewTemplates[0]; 
    templateAdslot = rgvAdserver.MasterGridViewTemplate.ChildGridViewTemplates[1]; 
    template.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; 
    templateAdslot.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; 
     
    foreach(var zone in data.dartzones) 
    { 
        template.Rows.Add(new object[] { data.siteid, zone.zoneid, zone.zonename }); 
 
        foreach(var adslot in zone.adslots) 
        { 
            templateAdslot.Rows.Add(new object[] { zone.zoneid, adslot.adslotsize }); 
        } 
    } 
 
 
 
 

Thanks in advanced.


gerbrand
Top achievements
Rank 2
 answered on 08 Apr 2009
3 answers
185 views
on the scheduler, is this possible ? 

Thanks,
Derek.
Derek
Top achievements
Rank 1
 answered on 08 Apr 2009
3 answers
156 views
I have been trying to install the Q1 2009 templates for the windows form controls.  I have followed exactly what the KB article says at http://www.telerik.com/support/kb/winforms/general/installing-telerik-templates-in-visual-studio-2008.aspx, but the templates are not showing when I try
to do a new project. Can anyone shed some light on here as to what I may be missing?

Also, all of this started because I wanted to use the RibbonForm as my starting form. But the problem there is that the default Application.Run won't work
because RibbonForm does not inherit from Windows.Form. So, can someone tell me how to execute and start my applicaiton without this inheritance?

Thanks in advance,
LK
John
Top achievements
Rank 1
 answered on 07 Apr 2009
1 answer
65 views
I´ve already written a post like this, but the link is not working anymore...
Since I installed the RadControls for WinForms q1 2009 i´m getting this error:

http://img155.imageshack.us/img155/6194/erroro.jpg

I tried everything to fix this... I saw all the possible solutions I found here, but nothing seems to work.
I have the RadControls for Ajax apps, can this be the cause of my problem?
Someone knows how to fix this?
It´s kinda urgent...
Thanks


Nick
Telerik team
 answered on 07 Apr 2009
1 answer
120 views
Hello,

I upgraded RadControls for WinForms from version Q2 2007 to Q1 2009 following the instructions in the documentation...
    

0) Uninstall all old versions of Telerik controls for WinForms including the trial versions of our controls

1) Remove all Telerik WinForms assemblies from the GAC

2) Install the latest version of Telerik Controls for WinForms

3) Remove all Telerik assembly references from the Solution Explorer of Visual Studio.

4) Add them anew. Please make sure that all references are to the same version of Telerik Controls for WinForms.

5) Restart Visual Studio. Please note that VS is keeping references in the memory so this step is essential

6) Clean and Rebuild your project

After doing this my tabstrips have lost their look and...now they are just gray boxes with a black border and when clicked they are not shown as "highlighted".  Is there an easy way of fixing this or am I going to have to rebuild the screens that are using the tab control.

Thanks,
Nate

Nikolay
Telerik team
 answered on 07 Apr 2009
0 answers
116 views
how do change your control form persent jalili calendar or persian calendar?
please help me 

Mohammad Qermezkon
Top achievements
Rank 1
 asked on 07 Apr 2009
0 answers
141 views
How do Set Default control for All Themes?
How to set default font for items into combobox to tahoma??
Mohammad Qermezkon
Top achievements
Rank 1
 asked on 07 Apr 2009
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
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
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
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?