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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamic Window name

Status
Not open for further replies.

MiriamH

Programmer
Mar 13, 2003
8
IL
I have the window name in a string variable. How can I use it to open the window? (PowerBuilder 6.5)
 
Hi,

From the help files:
Code:
window wc_to_open

string c_w_name

integer age = 60

c_w_name = "w_c_emp1"

OpenWithParm(wc_to_open, age, c_w_name, w_emp)

w_emp is the (optional) parent window.

The same form is used when opening a window without passing a parameter.

Cheers.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top