Hello guys,
I've just make a project and my main form is radform1. now I want to add another radform but I get This Error
An error occurred while running the wizard.
Error executing custom action Telerik.VSX.TextTemplating.Actions.UnfoldFilesAction: An exception was thrown while trying to compile the transformation code. The following Exception was thrown:
System.IO.FileNotFoundException: Could not find file 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\System.dll'.
File name: 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\System.dll'
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
at System.IO.File.OpenRead(String path)
at Roslyn.Utilities.FileUtilities.OpenFileStream(String path)
at Microsoft.CodeAnalysis.MetadataReference.CreateFromFile(String path, MetadataReferenceProperties properties, DocumentationProvider documentation)
at Microsoft.VisualStudio.TextTemplating.CompilerBridge.<>c.<.ctor>b__15_0(String x)
at System.Linq.Enumerable.WhereSelectListIterator`2.MoveNext()
at System.Linq.Enumerable.<UnionIterator>d__66`1.MoveNext()
at System.Linq.Enumerable.<UnionIterator>d__66`1.MoveNext()
at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
at System.Collections.Immutable.ImmutableArray.CreateRange[T](IEnumerable`1 items)
at Microsoft.CodeAnalysis.ImmutableArrayExtensions.AsImmutableOrEmpty[T](IEnumerable`1 items)
at Microsoft.CodeAnalysis.Compilation.ValidateReferences[T](IEnumerable`1 references)
at Microsoft.CodeAnalysis.CSharp.CSharpCompilation.WithReferences(IEnumerable`1 references)
at Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CommonWithReferences(IEnumerable`1 newReferences)
at Microsoft.VisualStudio.TextTemplating.CompilerBridge.PrepareNewCompilation()
at Microsoft.VisualStudio.TextTemplating.CompilerBridge.Compile()
at Microsoft.VisualStudio.TextTemplating.TransformationRunner.Compile(String source, String inputFile, IEnumerable`1 references, Boolean debug, SupportedLanguage language, String compilerOptions)
----------------------------------------------------------------------------------------------------
Hi,
I am using ConditionalFormattingObject to format cells like this:
var x =
new
ConditionalFormattingObject(
"column"
, ConditionTypes.NotEqual,
"-1"
,
""
,
false
);
x.CellBackColor = Color.FromArgb(222, 253, 219);
x.CellForeColor = Color.Blue;
column.ConditionalFormattingObjectList.Add(x);
Everything is fine until a multi-cell selection.
It seems to me that ConditionalFormattingObject also overrides the background coloring for the selected cells, but it should not.
Please check the attachment, which shows what is now and what should be.
I do not want to use the ViewCellFormatting event becouse of performance reasons.
I have a control that is derived from RadLabel. Inside this control I would like to add a RadContext menu instead of the standard Windows Forms context menu. What's the proper way to do this inside my control? I don't want to rely on a ContextMenuManager on the parent form but instead encapsulate everything in my control.
Regards
Erwin
I have a c# aplication where I have to build programaticly many RadImageButtonElements from scratch. When I move the mouse over the RadImageButtonElement the button doesn't highlight if I hover with the mouse over the button. When I add a new RadImageButtonElement from RadRibbonBar when I hover over with the mouse I see that the RadImageButtonElement will be highlighted. Can you please help me what to add to my my code so that my RadImageButtonElement can be highlighted as well. Thank you for your time and if it is not the correct forum please move this thread to the correct forum.
At RadRibbonBar you can add an RadImageButtonElement through the Edit Items functionality. I have to create a new RadImageButtonElement programmability and cannot make the item highlighted when my mouse hovers over the RadImageButtonElement. When I add an RadImageButtonElement through Edit Items functionality then I can highlight the RadImageButtonElement when I hover with my mouse over the ribbonbar element.
I added the code:
RadImageButtonElement oButton = new RadImageButtonElement();
// add image to the button and other things
oButton.Text = oOperation.ToString();
oButton.DisplayStyle = DisplayStyle.ImageAndText;
oButton.TextImageRelation = TextImageRelation.ImageAboveText;
oButton.Image = oButton.ImageClicked = oButton.ImageHovered = GetButtonImage(oOperation, true);
rrbgOptions.Items.Add(oButton);
rrbgOptions is the form RadRibbonBarGroup . When I run my program inside the RadRibbonBarGroup the image buttons created with the RadImageButtonElement apears but when I move my mouse over the buttons they don't highlight.
When I add the Image button on using the form RadRibbonBarGroup Edit Items controls to create the Image buttons the buttons will be highlighted when I move my mouse over them.
Can you please help so that the Image Buttons created programaticly as shown as above can be highlighted when I move the mouse over them.
Thank you.
Hello!!
How I can sort the series of chart? Check the attachments. For your help thanks.
Hi,
I am trying to snap the coloring of area series around to horizontal axis. The first pic (Area Coloring) illustrates what I've got, Area Color Goal what I'd like to see. I've already tried to split negative values from positives, like this http://www.telerik.com/forums/set-the-color-of-negative-value-on-areaseries, but the result is the same in winforms.
Please advise.
Best Regards.
hi
i use rich text editor with ribbon ui and have several questions
1. i have a rich text editors with ribbon ui. how can customize the ribbon groups that show my desired element. for example i dont want bullets group.
2. in code block example in win forms rich text editor, the RadItem is create and added to home tab but there is no click event that show the code block is executed.
3. i have an executable file that i want execute in insert tab. how can i do that?
4.how can i subscribe a method to execute when user click symbol instead of default action.
thanks you
Hello Support,
I am using Telerik for Winforms version 2015.2.728.40. We are testing our application using Remote Desktop Services in Windows Server 2012. We are experiencing an issue with all the drop downs in that the drop down window does not consistently show. Most times, the display window for the drop down lists are truncated, even though the items are still selectable.
I created a sample application with one form and one dropdownlist and was able to reproduce this behavior with Telerik version 2015.2.728.40.
I updated the sample to version 2016.2.608.40 and only saw the issue once.
I'm wondering if there is anything I can do to make the dropdownlist list show correctly with version 2015.2.728.40?
Thanks
Francisco