Introduction

Language Structure

IB Statements

File System

Comet 32 Runtime

Index

(DeleteWindowEx)

Mnemonic: (DeleteWindowEx=handle$)
Discussion: This mnemonic deletes an extended window.

Each extended window is identified by a 4-byte string known as a window handle. The handle value is assigned by the system and returned to the Internet Basic program via an INPUT statement following the (CreateWindowEx).

See the WinDemo.ibs program (available at www.signature.net/download/demos) for examples of extended windows.

Also see (SelectWindowEx).

History: This feature is supported in Comet2002 Build 306 and higher.
Example: The following example creates two extended windows, then uses the (DeleteWindowEx) mnemonic to delete them.
Length 4 & Local Handle1$,Handle2$
.
Print (CreateWindowEx=0,0,35,15,68,0,"Window 1")
Input Handle1$

Print (CreateWindowEx=0,40,20,10,68,0,"Window 2")
Input Handle2$
.
.
.
Print (DeleteWindowEx=Handle1$)   ! delete window 1
Print (DeleteWindowEx=Handle2$)   ! delete window 2