Multiple entries in the Task List for the same Application?

Started by IJRobson, August 16, 2013, 08:41:19 AM

Previous topic - Next topic

IJRobson

I have created a WinBatch application which includes a user interface created as a dialog() and I have switched on "minimize/maximize and close" options in the Title Bar using IntControl 49 (IntControl(49, 1, 0,0,0)) and now I have two entries in the Windows Task List for this application:
        WBT - FTP Status.exe           (Exe Name)
        FTP Status Tool V0.03           (Dialog Title)

Now do I hide / remove the WBT - FTP Status.exe entry just leaving the Application Title in the Task list?

Thanks

Deana

Add:
Code (winbatch) Select
WinHide("")

A partial-window name of "" (null string) hides the window making the current call to the WIL Interpreter. Which is the Main WinBatch (box) window ( which is always displayed on the task bar when a script it run ).

Deana F.
Technical Support
Wilson WindowWare Inc.

IJRobson