设置分级或嵌套书签

1、从报表资源管理器中拖拽CustomerID和ContactName到报表的明细区域中。

2、双击报表中的明细区域。这将会创建一个对应于报表 Detail Format 事件的处理程序。

3、添加代码到事件处理程序。

下面的示例演示了如何通过代码设置分级或嵌套书签。

使用 Visual Basic 编写以下代码

粘贴以下的 Visual Basic.NET 代码到 Detail Format 事件中。

Me.Detail1.AddBookmark(txtCustomerID.Text + "\" + txtContactName.Text)

 

使用 C# 编写以下代码

粘贴以下的 C# 代码到 Detail Format 事件中。

detail.AddBookmark(txtCustomerID.Text + "\\" + txtContactName.Text);