This question is locked. New answers and comments are not allowed.
Not sure why I'm getting this problem.
I can't use any of the "Export" methods that show up in the Demo or these examples:
Error 100 'ToExcelML' is not a member of 'Telerik.Windows.Controls.RadGridView'.
No matter what it try it doesn't show up.
I'm referencing: Telerik.Windows.Control.GridView .NET Version: 2009.3.1103.1030 C:\Program Files\Telerik\RadControls...Q3 2009\Binaries\Silverlight\Telerik.windows.controls.GridView.dll
I can't use any of the "Export" methods that show up in the Demo or these examples:
Error 100 'ToExcelML' is not a member of 'Telerik.Windows.Controls.RadGridView'.
No matter what it try it doesn't show up.
I'm referencing: Telerik.Windows.Control.GridView .NET Version: 2009.3.1103.1030 C:\Program Files\Telerik\RadControls...Q3 2009\Binaries\Silverlight\Telerik.windows.controls.GridView.dll
| Private Sub btnExportExcel_Click(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles btnExportExcel.Click |
| Dim content As String = "" |
| Dim extension As String = "" |
| Dim dialog As New SaveFileDialog() |
| If dialog.ShowDialog() = True Then |
| Using stream As System.IO.Stream = dialog.OpenFile() |
| content = gvResults.ToExcelML |
| ... |
| stream.Close() |
| End Using |
| End If |
| End Sub |
| <navigation:Page |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| mc:Ignorable="d" |
| xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" |
| xmlns:Telerik_Windows_Controls_MaskedTextBox="clr-namespace:Telerik.Windows.Controls.MaskedTextBox;assembly=Telerik.Windows.Controls.Input" |
| xmlns:telerikGridView="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" |
| ...> |
| <telerikGridView:RadGridView x:Name="gvResults" RowIndicatorVisibility="Collapsed" |
| IsReadOnly="True" AutoGenerateColumns="False" CanUserFreezeColumns="False" Margin="8,145,40,8" > |
| ... |
| </ telerikGridView:RadGridView> |
