devxlogo

Disabling the Command Window

Question:
I have compiled a program as an .APP file. When I run this file from VFP 6, I would like to disable the close button until the user clicks on the Cancel button. I would also like to make the command window invisible or disabled when that .APP program is running. How do I do this?

Answer:
To disable the close button of the VFP window, execute the following command:

SCREEN.Closable = .F.

To enable the close button of the VFP window, execute the following command:

 SCREEN.Closable = .T.

To hide the command window, execute the following command:

HIDE WINDOW Command

To make the command window visible again, execute the following command:

 SHOW WINDOW Command

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.