Hello,
I have had to reinstall all Visual Studio versions after some strange behavior, installation was somehow corrupted, VS installers haven't seen any VS versions installed (but they was working almost normally), so I have had to reinstall it, uninstall it manually by InstallCleanup.exe first, and then install VS2019 and VS2022 again. So much for context.
I have installed Telerik for WinForm then and I don't see any Telerik controls in toolbox. I reinstalled Telerik twice, also tried to use Toolbox Configurator, selected .NET4.0 version, but without success. I have the same problem on both VS2019 and 2022. Can you help me please?
Im having some trouble adding a spreadsheet to my RadPageViewPage since the spreadsheet requires to be on a thread. This still gives me 'Cross-thread operation not valid: Control '' accessed from a thread other than the thread it was created on.'.
Is there anyone that could explain what im doing wrong here? Thanks.
Edit. Updated the code a bit and this gives me that it requires to be on the STA thread. Its something im not understanding with these threadings in c#.
Hey, how can I skip the ViewCellFormatting event while the grid is getting new data?
Maybe there's some property I can check before continuing formatting? I have two interdependent grids and would like to "pause" this event whenever any of them is reloading...
I am Using pdfExporter from RadDataGrid View to generate pdf.
How to wrap text of cells/columns in exported pdf. using VB.NET not C-Sharp
Hi
How to remove or edit "Creator Telerik PdfProcessing" text before exporting DGV to pdf from PDF Properties.
I use telerik UI for WinForms project(not WPF) How to prevent auto close of RadContextMenu
when user clicks on item on it? Now, after mouse click on any item, it closes. In WinForms there is ContextMenuStrip.AutoClose
property to prevent autoclosing. Is there analogue of the property on Telerik RadContextMenu
?
Thanks
Hello,
I'd like to display cell value (string) this way
(2) text2
(1) text1
not this way
(2) text2 (1) text1
How to achieve this behaviour?
Thank you.
Hi,
I am trying to create a PDF Table but I am missing one or more libraries that I should reference. The code fragment I am trying is as follows:
Table table = new Table();
TableRow firstRow = table.Rows.AddTableRow();
TableCell firstCell = firstRow.Cells.AddTableCell();
Block block = firstCell.Blocks.AddBlock();
block.InsertText("Testing");
Thanks
I hava a model that contains IsSelected Property, and I want to bind the row IsSelected of gridview to that IsSelected, what should i do?
class MyClass
{
public bool IsSelected { get; set; }
}
private BindingSource _bindingSource;
private List<MyClass> _myClassList;
private RadGridView _gridView;
private void DataBinding()
{
_bindingSource = new BindingSource { DataSource = _myClassList };
// how to bind _gridView.Rows.IsSelected to _myClassList.IsSelected?
_gridView.DataSource = _bindingSource;
}