Script Problems

My report is a simple query of a MS SQL table. However, I would like for the report to NOT print txtUnitPrice if the txtPartNumber is "Group". This is my VB script.

Public Class ReportScript

Private Sub GroupHeader1_BeforePrint(ByVal sender As object, ByVal e As EventArgs)
txtDescription.HideValue = "Page Break"
IIf(txtPartNumber.Text = "Group",txtUnitPrice.Visible = false,txtUnitPrice.Visible = true)
End Sub

Private Sub Data1_BeforePrint(ByVal sender As object, ByVal e As EventArgs)
IIf(txtPartNumber.Text = "Group",txtUnitPrice.Visible = false,txtUnitPrice.Visible = true)
End Sub

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.