Remi
Remi

Reputation: 17

How to Clear illegal data type error in powerbuilder?

I am in the process creating tab pages dynamically. For that i declared a instance in the window.

"uo_trans_for_tab_page_demo iuo[3]
String is_DwObjects[3]".

But i get a error message of :

Illegal datatype:uo_trans_for_tab_page_demo

Can any onr help me with this problem since i am beginner.

Upvotes: 0

Views: 1868

Answers (2)

Hugh Brackett
Hugh Brackett

Reputation: 2706

You shouldn't create an array in the window to keep track of your tabpages because the tab control already does that for you in the tab's control array. Similarly, you don't need to keep the names of the dataobjects you use because the DataWindow's dataobject property will have it.

Upvotes: 1

Matt Balent
Matt Balent

Reputation: 2397

In order to declare a user object variable (or array) the user object must be defined within the same .PBL file of the window or within your applications library list.

Upvotes: 0

Related Questions