Exercises

<< Click to Display Table of Contents >>

 

Exercises

1.Which one of the next alternatives is the correct way to reference the Query1 object?

Query object

Query object

a.(  ) Screen.Item("Query1")

b.(  ) Item("InitialScreen").Item("Query1")

c.(  ) Screen.Item("E3Browser1").Item("Query1")

d.(  ) Item("E3Browser1").Item("Query1")

 

2.To quit the application when pressing the ESC key, create the next script on the KeyDown event of InitialScreen.

'ESC: Quit the application
If KeyCode = 27 Then
  Application.Exit()
End If

Was this page useful?