Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to set up a status line in OpenInsight you need to put an edit-line control on a form and set the STATUSLINE property. The proper code to do so, which should be put in the Create event for the form, is as follows:

Code Block
@@WINDOW->STATUSLINE = @WINDOW: ".STATUS"

...

This sets up the edit line on the form (which we called STATUS) as the status line. The other part for the status line is to enter in the data you would like to view in the Menu Design. The area to enter in the text to view is in the HELP TEXT line in the menu designer. The text that goes in here will show up in the status line when the menu item is dragged over.

...