When trying to upgrade from the trial version I get this error message.
I have gone to the folder in question and the subfolder is missing
An error occurred while running the wizard.
Error executing custom action Telerik.Web.UI.VSX.Actions.MultiProjectUpdateReferencesAction: System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Users\Administrator\AppData\Local\Temp\Telerik\ShadowCopy\Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml, Version=2020.3.1019.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7\Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.dll'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost)
at System.IO.File.Copy(String sourceFileName, String destFileName)
at Telerik.VSX.Internal.FileSystem.FileOperator.Copy(String sourceFileName, String destinationFileName)
at Telerik.VSX.Internal.Assembly.AssemblyLoader.GetShadowCopy(String assemblyPath)
at Telerik.VSX.Internal.Assembly.AssemblyLoader.ReflectionOnlyLoadFromShadowCopy(String loadInformation)
at Telerik.VSX.DistributionListing.DistributionItem.GetReferencedAssemblies()
at Telerik.VSX.DistributionListing.DistributionItem.GetFilteredPrerequisites()
at Telerik.VSX.DistributionListing.DistributionItem.get_DistributionWidePrerequisites()
at Telerik.VSX.DistributionListing.DistributionItemList.IntegrityCapableItem.ResetUnmetPrerequisites()
at Telerik.VSX.DistributionListing.DistributionItemList.Add(IDistributionItem newDistributionItem)
at Telerik.VSX.DistributionListing.FileBasedDistribution.PopulateItems(DistributionItemList items)
at Telerik.VSX.DistributionListing.Distribution.get_Items()
at Telerik.VSX.Actions.AdvancedUpdateReferencesAction.GetAssemblyReferences(IProjectWrapUIComponents projectWrap, IDistribution distribution)
at Telerik.VSX.Actions.UpdateReferencesAction.UpdateReferences(IProjectWrapUIComponents projectWrap)
at Telerik.VSX.Actions.UpdateReferencesAction.Execute(WizardContext wizardContext, IPropertyDataDictionary arguments, IProjectWrap project)
at Telerik.VSX.Actions.ProjectActionBase.Telerik.VSX.Actions.IProjectAction.Execute(IWizardContext wizardContext, IPropertyDataDictionary arguments, IProjectWrap projectWrap)
at Telerik.VSX.Actions.MultiProjectActionBase`1.Execute(WizardContext wizardContext, IPropertyDataDictionary arguments)
at Telerik.VSX.Actions.MultiProjectUpdateReferencesActionBase`1.Execute(WizardContext wizardContext, IPropertyDataDictionary arguments)
at Telerik.VSX.WizardEngine.Actions.ActionBase.Telerik.WizardFramework.IAction.Execute(IWizardContext wizardContext, IPropertyDataDictionary arguments)
at Telerik.VSX.WizardEngine.ActionManager.ExecActions()

I am having troubles with the ScreenTip on a gridview.
I can get the hovered text to show up in the StatusBar, but I do not get a popup over the hovered cell. Not sure what I am doing wrong?
GridDataCellElement cell = e.Item as GridDataCellElement;
e.Delay = 0;
RadOffice2007ScreenTipElement screenTip = new RadOffice2007ScreenTipElement();
if (cell.ColumnIndex == 1)
{
radLabelElement8.Text = cell.Text; // StatusBar
screenTip.CaptionVisible = false;
screenTip.Text = cell.Text.ToString();
}

Greetings,
I have 2 data tables. Both of them have 2 columns. The first column is in common which is " Name" column. The second column is "Numerical Values" (each data table has its own different values in the second column). I need to make comparison between these two data tables via RadChartView and LineSeries. So the horizontal axes should represent the common column (Names), and the vertical axes should represent 2 LineSeries Diagram, each corresponding to a data table.
I use the code below to draw diagram of one data table :
Dim lineSeria As New LineSeries()lineSeria.DataSource = dataTable1lineSeria.ValueMember = "Values"lineSeria.CategoryMember = "Names"ChartView.Series.Add(lineSeria) 'ChartView is a RadChartView
How can I use RadchartView's Multiple axes mode to draw the second diagram along with the first one together for making a comparison ?
P.S I've read about Multi Axes mode in documentations. But my case is different as I use a data table as LineSeries datasource.
Thanks in advance.
Even when the control loses focus, the selected row remains highlighted.
How to get the selected item to have the same style like the non selected items?
I just want to be able to check or uncheck the items, focus is not important and therefore there should not be a visible difference.
Expected something like this but it does not work:
ClassificationCheckedListBox.Focusable = False;
ClassificationCheckedListBox.AllowShowFocusCues = False;
Also trying some things from the selectedindex changed event like this does not do it:
ClassificationCheckedListBox.FocusedElement.ResetLayout(True);
Any clue appreciated
Hi All,
Which dataset type gives the best performance for control or field utilizing dictionaries or datasets do display data based on Key and Value?
I can suggest a Dictionary, KeyValuePair array, List of KeyValuePair, IEnumerable of KeyValuePair. Am I miss something?
Thanks!

Hello,
Is there a control that allows us to make this type of diagram? I attach images.
Changes in the diagram are reflected in the grid below and vice versa.
Please let us know if you need more information.
Thanks.

I am sure this is an instance when my ignorance will show through, but I am on a deadline and at my wits end. I am trying to have a text appear in an existing PDF based on a position the end-user clicks on the PDF. I when I provide coordinates I can get the text to appear, but I do not always know the coordinates. For the life of me I cannot figure out how to get the PDF Document Coordinates based on the mouse down event. The idea is I am receiving different documents, but they all contain a blank spot to fill in a Name. That position could be different depending on who is sending the document.
I am using WinForms and vb.net. I have found plenty of dead-ends on this process including a suggestion of making a custom provider, but that does not seem to work in WinForms.
Any suggestions on how to calculate the page coordinates or another alternative that could display a ruler or the like to allow the user to enter measurements that I can then convert.
Thank you in advance for any help.
Hi guys,
I would like to use a VirtualGridDropDownListEditor in a table. That it cannot be set anyhow before the use starts editing a ceel is sad, but discussed in a different forum already.
What bothers me still is the size of the DropDown. I read everything - and that's almost nothing - online about the control. Weirdly it is not the default behaviour and not mentioned anywhere how to make it wide enough for all its content. Can I use another editor? Does that function honestly not exist?
By the way the MinSize setting even destroys the VirtualGridDropDownListEditor, so that you always select what is lying under them when clicking the list items.
Thank you in advance!

Hi,
does is possible to export to CSV only selected rows of the grid?
How could I perform this action instead export all the content of the grid?
Thanks a lot
Francisco