Telerik Forums
UI for WinForms Forum
0 answers
213 views
To prevent possible data loss before loading the designer  the following errors must be resolved

at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
at System.Xml.XmlTextReaderImpl.Throw(String res)
at System.Xml.XmlTextReaderImpl.ParseEntityName()
at System.Xml.XmlTextReaderImpl.ParseAttributeValueSlow(Int32 curPos, Char quoteChar, NodeData attr)
at System.Xml.XmlTextReaderImpl.ParseAttributes()
at System.Xml.XmlTextReaderImpl.ParseElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlTextReader.Read()
at Microsoft.VisualStudio.Design.VSTypeResolutionService.GeneratedAssemblyEntry.RealizeMoniker(String moniker)
at Microsoft.VisualStudio.Design.VSTypeResolutionService.GeneratedAssemblyEntry.get_FileName()
at Microsoft.VisualStudio.Design.VSTypeResolutionService.AssemblyEntry.get_Assembly()
at Microsoft.VisualStudio.Design.VSTypeResolutionService.GeneratedAssemblyEntry.get_Assembly()
at Microsoft.VisualStudio.Design.VSTypeResolutionService.AssemblyEntry.Search(String fullName, String typeName, Boolean ignoreTypeCase, Assembly& assembly, String description)
at Microsoft.VisualStudio.Design.VSTypeResolutionService.SearchGeneratedEntries(AssemblyName assemblyName, String typeName, Boolean ignoreTypeCase, Assembly& assembly)
at Microsoft.VisualStudio.Design.VSTypeResolutionService.SearchEntries(AssemblyName assemblyName, String typeName, Boolean ignoreCase, Assembly& assembly, ReferenceType refType)
at Microsoft.VisualStudio.Design.VSTypeResolutionService.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase, ReferenceType refType)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String name, Boolean throwOnError, Boolean ignoreCase)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String name, Boolean throwOnError)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetType(ITypeResolutionService trs, String name, Dictionary`2 names)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.FillStatementTable(IDesignerSerializationManager manager, IDictionary table, Dictionary`2 names, CodeStatementCollection statements, String className)
at System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Deserialize(IDesignerSerializationManager manager, CodeTypeDeclaration declaration)
at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager)
at System.ComponentModel.Design.Serialization.BasicDesignerLoader.BeginLoad(IDesignerLoaderHost host)

how can i solve this error
Any one can help me!!!
Regards,
vignesh



kottu
Top achievements
Rank 1
 asked on 01 Dec 2009
3 answers
267 views
I added GridViewComboBoxColumn per the help files. http://www.telerik.com/help/winforms/grid_gridviewcomboboxcolumn.html

What I am trying to figure out is how to make the values in the combobox distinct.  Is there a property or setting to do this or do I have to programmically remove all of the dups?

Thanks
Stephen

 

steve
Top achievements
Rank 1
 answered on 30 Nov 2009
6 answers
174 views

Hello,

i am working on a localization provider for the RadScheduler. 

I get the following problems:

1. I set the RadSchedulerStringId.NextAppointment and the RadSchedulerStringId.PreviousAppointment to a translated text but they are not used. These two stringids are the only ones which are not used, so i think that these are hardcoded in the RadScheduler.

2. In the Resource ComboBox is a standard empty text ( "None" ) but there is no RadSchedulerStringId to translate it. Is it possible to change this text?

3. In the Appointment Dialog there is not enough space for the translated Text of the AllDayEvent text. Is it possible to extend it ?

4. In the recurring Appointment Dialog there is not enough space for the translated text for many RadSchedulerStringIds. Is it possible to extend it ?

Kind Regards,

Ramius

Boyko Markov
Telerik team
 answered on 30 Nov 2009
1 answer
195 views
Sorry if this is a stupid question but I am going to ask it anyway .
Does the Gridview have the built in ability to use a form for editing/adding a record
or do i have to link another form to the on-click event on the gridview ?

Thanks in advance

Martin 
Jack
Telerik team
 answered on 30 Nov 2009
5 answers
139 views
Hi,
I have problems with RadMenu. I Docked the menu bar in bottom side and i tried changed PopupDirection= Up, but that's not function.
Any help. Please

Victor

Telerik RadControls for WinForms Q3 2009
Windows Vista
Visual Studio 2008
Deyan
Telerik team
 answered on 30 Nov 2009
3 answers
211 views
Hello,

I have a problem with the All Day Appointment view.
I use the Scheduler on a page only for All Day Appointments. On Week view, if a couple appointments are distributed on visible days, they are not aligned to the top of the cell. They align to the top only for the first day of the view. The rest of appointments are shown below the last appointment of the first day of the view.
Can you please tell me how to align all of them to the top?

Thank you.
Boyko Markov
Telerik team
 answered on 30 Nov 2009
0 answers
103 views
Hello,

How can I drag and drop an item from a listbox into the scheduler in the timeslot that is pointed ?

(I can drag and drop an item from the listbox into the scheduler but not in the timeslot that is pointed.)

Regards
Pol Pol
Top achievements
Rank 1
 asked on 30 Nov 2009
2 answers
89 views
Hello,

I have several Drop Down Buttons whose Drop Down Direction was set at Design time to 'Up'. This is no longer being respected at run time. In fact, when handling the DropDownOpening event, I have confirmed that the value is still 'Up', but it is dropping down regardless.

Jeremy
Deyan
Telerik team
 answered on 30 Nov 2009
4 answers
208 views
Hi I would like to know how to Highlight a RadButton on demand ?
Nikolay
Telerik team
 answered on 27 Nov 2009
1 answer
193 views
 Hi,
I am trying to bind a list of the following complex type to a RadGridView
public interface IEntity

    string FullClassName { get; set; } 

    .     
    . 
    . 
    . 

    List<Property> Properties { get; set; }
}
 
public class Property

    public string Name { get; set; } 
    . 
    . 
    . 
}
As you can see here that the IEntity interface contains a list of Property type, so for now I need to bind a list of IEntity to a radGrid and bind the inner list(Properties list) to a combo box cell.
Actually I did all the required steps to let the grid bind to the list, but the combo box is always displaying the type of the properties list (namespace.Peoperties…).
So I replaced the radGrid with a dataGrid and did the following

for (int i = 0; i < this.radGridEntities.Rows.Count; i++)

    DataGridViewComboBoxCell dgcb = (DataGridViewComboBoxCell)this.radGridEntities [this.radGridEntities.Columns["Title"].Index,i]; 
    dgcb.DataSource = ((IEntity)this.radGridEntities.Rows[i].DataBoundItem).Properties; 
    dgcb.DisplayMember = "Name";
}
As I show here, I loop over each row and set its data source, now, I need to retreive each cell to set it is data source while using RadGridView(as I am showing here while using windows dataGridView. 
any idea would be appreciated 

Thank you in advance
Nikolay
Telerik team
 answered on 27 Nov 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)
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
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?