A child Window can be put under its parent Window

Got an idea for enhancing SpiderBasic? New command(s) you'd like to see?
User avatar
Niffo
Posts: 80
Joined: Sat Jun 16, 2018 10:30 pm

A child Window can be put under its parent Window

Post by Niffo »

A child Window can be placed under its parent Window

Code: Select all

OpenWindow(0, 0, 0, 300, 200, "Parent Window")
OpenWindow(1, 100, 50, 100, 100, "Child Window", #PB_Window_SystemMenu, WindowID(0))
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: A child Window can be put under its parent Window

Post by Fred »

That's right, as specified in the doc, the ParentID parameter is ignored for now.
Post Reply