This is a migrated thread and some comments may be shown as answers.

Code Converter not work

1 Answer 80 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Roberto
Top achievements
Rank 1
Roberto asked on 01 Mar 2018, 11:55 AM

The http://converter.telerik.com not work to converter from C# to VB.NET

 

 

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 01 Mar 2018, 01:27 PM
Hi Roberto,

Thank you for reporting this issue.

We are aware of this problem and it is logged for fixing. To workaround is put the code in a function:

public void MyFunction()
{
    foreach (GridDataItem item in RadGrid.Items)
    {
        if (item.Selected==false)
        {
            item.Visible = false;
        }
    }
}

If you experience any other problems with the converter, please, post them to the Code Converter Ideas & Feedback Portal so that everyone can vote and the bug items can be prioritized.

Best regards,
Rumen
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
General Discussions
Asked by
Roberto
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or