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!

popup window

Status
Not open for further replies.

bowsermxli

Programmer
Aug 27, 2002
9
0
0
MX
hi..
i need to show a popup window with info to users, but i need the actual window don't lost focus. (the actual windowtype is main, and i need the popup window outside the actual window)

any idea?
.... thank's
 
Hi,

Use a window of type popup, but after opening it, setfocus() back to the main window i.e. (this code is in a button on the main window)
Code:
open(w_popup)
parent.setfocus()

You can position the popup in its open event.

Cheers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top