I want to read the RequestToSend property of a Serial control. For some
reason, the following two lines are not equivalent in 2007r1.

  return mySerial.requestToSend
  return (mySerial.requestToSend = true)

I tried the following code to investigate further.

  b1 = mySerial.requestToSend
  b2 = (mySerial.requestToSend = true)
  b3 = mySerial.requestToSend
  break

With 2007r1, b1 and b3 are true, b2 is false. All three are true with
2006r3. What's going on?

I filed report "hwrcbkud."

-- 
Travis J. Hicks 
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to