Hi, I want to create a report with 3 different datasets (dataset 1, 2 and 3) from a single datasource. The report layout will be a 3 section for every single record found in dataset1. Dataset 2 and dataset 3 will get the ID from dataset1 and display the 2nd and 3rd section of the report. Please help me how to create this kind of report. Thanks
kunthavai
Posts
-
Report Builder 3.0 -
Xml validation in c#Thank you so much :)
-
Xml validation in c#Hi, I am trying to validate a xml document against xsd in c#. I used the code
XmlReaderSettings settings = new XmlReaderSettings();
settings.ValidationType = ValidationType.Schema;And i get the following error. TesterSchemaValidator.settings' is a 'field' but is used like a 'type' Please help me, why i am getting this error.
-
Resizing GridSplitterGot it. Thank you very much
-
Resizing GridSplitterHi, I am a beginner in WPF and following Sams WPF in 24 hrs. There is an exercise to do a FontViewer application using grid which displays the list of system fonts and let the user choose any font and view the corresponding font applied on a sample text. I tried using a GRIDSPLITTER which is not resizing at all. Here is the code.
<Window x:Class="FontViewerGrid.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="500" Width="600">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="64*" />
<RowDefinition Height="310*" />
<RowDefinition Height="88*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="190.667*" />
<ColumnDefinition Width="387.333*" />
</Grid.ColumnDefinitions><Border Grid.ColumnSpan="2" CornerRadius="6" BorderThickness="1" BorderBrush="Gray" Background="LightGray" Margin="6 5 6 5"> <TextBlock Text="Select a font from the list below. You can change the text by typing in the region at the bottom." FontSize="14" TextWrapping="Wrap" VerticalAlignment="Top"/> </Border> <ListBox x:Name="FontList" Grid.Row="1" Grid.RowSpan="2" ItemsSource="{x:Static Fonts.SystemFontFamilies}" Margin="6,5,6,5"/> <GridSplitter Grid.Row="1" Grid.RowSpan="2" Grid.Column="1" Width="2" Background="Gray" ResizeDirection="Columns" ResizeBehavior="PreviousAndNext" Margin="0,1,0,5" HorizontalAlignment="Left" /> <TextBox x:Name="SampleText" Grid.Row="2" Grid.Column="1" MinLines="4" Margin="6 5 6 5" TextWrapping="Wrap" ToolTip="Type here to change the preview text"> The quick brown fox jumps over the lazy dog. </TextBox> <GridSplitter Grid.Row="1" Grid.Column="1" Widt