Results 1 to 3 of 3

Thread: Watch window and the Locals window

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jun 2001
    Location
    NY
    Posts
    17

    Watch window and the Locals window

    Which of the following actions can you perform in both the Watch window and the Locals window?

    a. You can set a trap that will cause execution of the application to pause if an expression is true
    b. You can change the values for variables by overwriting them directly while in break mode
    c. You can use the question mark operator in place of a Print statement
    d. You can monitor global variables at any time

  2. #2
    Megatron
    Guest
    Look this up in the help files and it should tell you.

  3. #3
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Code:
    Private Sub Form_Load()
    Dim Answer As Integer, i As Integer
      Randomize
      i = CInt(Rnd * 4) + 1
      Answer = i
    End Sub
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width