Am able to add a service reference and use it in my code-behind for most projects, the same syntax is not working for syncfusion webforms projects. Is there a different method to doing this? Here is some sample code that works with telerik :
Dim _client As New MyService.ServiceReference.ServiceClient
Dim dtFuncs As String()
For Each strDept As String In dtPerms
Dim rad As New RibbonBarTab
rad.ID = strDept + "department"
rad.Text = strDept
Dim radGroup As New RibbonBarGroup
For Each strFuncs As String In dtFuncs
Dim butR As New RibbonBarButton
butR.ID = strDept.Replace(" ", "") + strFuncs.Replace(" ", "") + "function"
butR.Text = strFuncs
butR.Value = strFuncs
butR.Size = RibbonBarItemSize.Medium
butR.ImageUrl = "~/wwwroot/FF4D00-0.8.png" 'blank image for no x
radGroup.Items.Add(butR)
Next
rad.Groups.Add(radGroup)
RadRibbonBar1.Tabs.Add(rad)
Next