Hi All!
I am relatively new to Telerik, so just exploring.. I am developing an application in VS 2013 that uses Telerik UI for Winforms.
The titlebar of my application is dynamic, i.e, <AppName>Version:<VersionNo.> where the Version No. is dynamic. Now, I need to show "Version<VersionNo>" with a different backcolor that the rest of the titlebar.
I have so far been unable to find anything that can help. Is this even doable?
Please guide.
Thanks!

Does the current version (2016) of the PDFViewer for WinForms support the loading of the document from a stream (rather than from the file system)?

I have a gridview with 10 columns, only one is editable when not a new row. When I create a NewRow, I want that row to be editable. We've tried many different ways, but we can't get it to work. Any help would be welcome.
Thanks,
Jeff

I have a problem
when right to left dropdownlist=Yes , Items in dropdownlist show left to right
Please help me!

Hi,
I'm still new to Telerik and having a hard time editing cell in the grid when selected the row.
below is my Linq .
var voters = ( from voter in db.VotersLists .OrderBy(c => c.Barangay) from data in db.VotersDatas .Where(b => b.RecId == voter.ID) .DefaultIfEmpty() from leader in db.VotersLists .Where(d => d.ID == data.LeaderID) .DefaultIfEmpty() select new { ID = voter.ID, VotersID = voter.VotersID, Precinct = voter.Precinct, Name = voter.Name, Birthday = voter.Birthday.GetValueOrDefault().ToShortDateString(), Sex = voter.Sex, Barangay = voter.Barangay, Address = voter.Address, PoliticalParty = data.PoliticalParty, IsRD = data.IsRD, LeaderName = leader.Name, LeaderPosition = data.LeaderPosition ,DataID = data.ID.ToString() == null ? "" : data.ID.ToString() }); dg2.DataSource = voters;I tried using the code below and it won't work.
dg2.Rows[dg2.CurrentRow.Index].Cells[10].Value = "Test"; or if (this.dg2.CurrentRow is GridViewRowInfo) { GridViewRowInfo editRow = dg2.CurrentRow; editRow.Cells["LeaderName"].Value = "TEST"; }


Hello,
I can't seem to get various controls (button, label, dropdown, etc.) to scale correctly when the form font size is changed. Actually the size of the control appears to be scaled correctly but the font size of the control remains the same.
For example, create a new application and drop a radbutton on the form. In the form constructor add a change to the form font size:
Public Sub New()
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Dim sysFont As Font = SystemFonts.MessageBoxFont
Me.Font = New Font(sysFont.Name, 14, sysFont.Style)
End Sub
At run-time the size of the button increases (good) but the font size remains at the default 8.25. This is not how the MS controls behave when added to the same form. The MS button size and font size change accordingly.
The form AutoScaleMode is set to Font.
Visual Studio 2015
Windows 10
Am I missing something?

I am new to Telerik and is trying to run the selection changed event for my gridview when select different rows. I have the code for the function, but I do not have the code to call this event. I know the event code for the button is generated in the designer.cs when I double click on the button in the form, but how do I generate an event for selection changed and other events which I cannot see? Do I have to add it in to the Designer manually?
private void gvUser_SelectionChanged(object sender, Telerik.WinControls.UI.SelectionChangedEventArgs e)
{
}​
