Serial port and GPS

SerialForm.showAnswer Method 

Writes string encapsulated into m_answer

[Visual Basic]
Private Sub showAnswer( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void showAnswer(
   object sender,
   EventArgs e
);

Parameters

sender
ignored
e
ignored

Remarks

Used because serialPortCb as an thread delegate (similar to event) can't write directly into controls. See also http://www.ppc-welt.info/community/archive/index.php?t-118493.html. The string to show in the control m_answer is expected in m_answerstr.

See Also

SerialForm Class | serial Namespace