Background:
What I have done:
Question:
I have referred to the sample in this page but it doesn't work.
XlsxFormatProvider formatProvider = new XlsxFormatProvider();
Workbook workbook = formatProvider.Import(File.ReadAllBytes(@"C:\temp\temp.xlsx"));
var worksheet = workbook.Sheets[0] as Worksheet;
FindOptions f = new FindOptions();
f.FindWhat = "$PART_NAME_LABEL$";
IEnumerable<FindResult> result = worksheet.FindAll(f);
foreach(var i in result)
{
worksheet.Cells[i.FoundCell.CellIndex].SetValue("");
//Add barcode here
RadBarcode radBarcode1 = new RadBarcode();
Telerik.WinControls.UI.Barcode.Symbology.Code39Extended code39Extended1 = new Telerik.WinControls.UI.Barcode.Symbology.Code39Extended();
radBarcode1.Symbology = code39Extended1;
radBarcode1.Value = "123456";
radBarcode1.LoadElementTree();
var ms = new MemoryStream();
Image barcode = radBarcode1.ExportToImage();
barcode.Save(ms, ImageFormat.Png);
FloatingImage image = new FloatingImage(worksheet, i.FoundCell.CellIndex, 35, 10);
image.ImageSource = new Telerik.Windows.Documents.Media.ImageSource(ms, "png");
}

Hi!
I'm having an interesting issue with the VS Designer and Telerik forms. My forms are shrinking! Sure, I can set the size in code behind, but I shouldn't have to. This is a problem with all my Telerik Winforms projects.
Create a new Telerik Winforms project. Expand the original form and add a grid. Anchor the grid. Save and close the form. When the form is reopened, the grid is the correct size, but the window shrinks.
It appears the designer fails to set the Size property.
Is it just this machine?
Please advise.
VS2022, Telerik Winforms 2023.1.117
I'm doing lots of updates and deletes in my Spreadsheet, but the UseCellRange parameter doen't seem to get updated.
How is it calculated?
I don't really want to create my own version of it, but I can't seem to make it accurate.
Even when I can see that rows are empty, it thinks they have some content, then those blank rows get processed when they should not.
Any ideas?
I have some controls which get embedded inside another application, so they don't have aparent Form.
But they need to share the same Theme as all the forms.
Setting the Theme for the forms is easy.
But I can't see where to apply the same Theme to a Control? Is this even possible?

Hi Team
Please suggest one Example realated to "Replace Infragistics toolbar by using Telerik controls"
Thanks.

I want to change the highlight color of a selected row. But, I can't.
Could you tell me how to do it?

I'm using PatternFill.CreateSolidFill to add colors to some of my spreadsheet cells, and it works fine.
But when I come to reset those colors back to 'normal' , their borders have gone:
Here, I apply the fill to some cells, but want to reset the color where the formatting rules does not apply. I am applying a solid fill, like:
PatternFill.CreateSolidFill(ThemableColor.FromArgb(255, 255, 255, 255))
..but this is where the border goes away.
How should I reset the border as well as the original color ?
Thanks

