Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

disable row on grid datawindow base on condition

Status
Not open for further replies.
You need to set up and expression in each of the columns you want to protect in the datawindow definition.

Something like this in the 'Protect' property
IF (checkboxcolumnname[0] = 1, 0, 1)

The above example assumes the 'data' portion of the checkbox column is 1 for checked and 0 for unchecked.

Matt

"Nature forges everything on the anvil of time"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top