Versions Compared

Key

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

...

void

Scroll pagebreak

Examples

Code Block
languagetext
// Set the focus to one of our controls.

...


int $windowId;

...


int $controlId;

...


 

...

// First create a User Window to place the control on

...


$windowId = `createWindow "MyWindow"`;

...


 

...

// Create a Text Box Control in the window.

...


$controlId = `createTextBox $windowId`;

...


 

...

// Set the focus to the control

...


setFocus $controlId;

Additional information

Related commands

...