...
void
Scroll pagebreak |
---|
Examples
Code Block | ||
---|---|---|
| ||
// 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
...