Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to find the presentation style of a datawindow in powerscript

95 views
Skip to first unread message

Shireesh Khandkar

unread,
Jan 7, 1999, 3:00:00 AM1/7/99
to
Is there a way to find out the presentation style (like composite or
crosstab or tabular ..) of a datawindow in powerscript ?

Any information would be appreciated.
Thanks!

Shireesh

email : shireesh...@lgeenergy.com

Uma Shanmugam

unread,
Jan 7, 1999, 3:00:00 AM1/7/99
to
//Dynamically determining the datawindow presentation style.

string presentation_style

string dw_type

presentation_style = dw_1.Describe("datawindow.processing")

CHOOSE CASE presentation_style

CASE "0"

dw_type = "Form, group, query,or tabular" //default setting

CASE "1"

dw_type = "Grid"

CASE "2"

dw_type = "Label"

CASE "3"

dw_type = "Graph"

CASE "4"

dw_type = "Crosstab"

CASE ELSE

dw_type = "Not Listed"

END CHOOSE

0 new messages