Is there an example of this (VB or C#) found anywhere on this site? I seem to be coming up short. I've been learning .net / vb for the past year, but have not had the privilege of coding such an object to date.
We're looking to deploy an organizational-wide (internal) radRibbonForm that would basically be deployed as a floating toolbar for users to gain quick access to internal resources.
The RibbonTab is a great high level way for user to navigate topic, and then within each tab, the RibbonBarGroup contains relavent DropDownButtons, which of course contain ButtonElements...
When I click the buttonElement, I get a 'Win32Exception was unhandled' error.
Here's an example of a particular Button Element's code:
Any assistance would be greatly appreciated (I can post the *.designer.vb if it will help..)
Keith
We're looking to deploy an organizational-wide (internal) radRibbonForm that would basically be deployed as a floating toolbar for users to gain quick access to internal resources.
The RibbonTab is a great high level way for user to navigate topic, and then within each tab, the RibbonBarGroup contains relavent DropDownButtons, which of course contain ButtonElements...
When I click the buttonElement, I get a 'Win32Exception was unhandled' error.
Here's an example of a particular Button Element's code:
| Imports System.Web |
| Imports Telerik.WinControls.UI |
| Partial Public Class RadRibbonForm1 |
| Private Sub rbeD1CPT_Click(ByVal sender As Object, ByVal e As EventArgs) Handles rbeD1CPT.Click |
| System.Diagnostics.Process.Start("iexplorer.exe", "http://www.google.com") |
| End Sub |
| Public Sub buttonClickEvent(ByVal sender As Object, ByVal e As EventArgs) Handles rbeD1CPT.Click |
| Dim rbeD1CPT As RadButtonElement = TryCast(sender, RadButtonElement) |
| System.Diagnostics.Process.Start("iexplorer.exe", DirectCast(rbeD1CPT.Tag, String)) |
| End Sub |
| End Class |
Any assistance would be greatly appreciated (I can post the *.designer.vb if it will help..)
Keith