353
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
immediately after the on_sock_data_arrival event handler is exited.
.Send Method
Function:
For the selected socket (selection is made through
) commits (allows sending) the data that was
previously saved into the TX buffer using the
method.
Syntax:
sock.rxbuffrq
Returns:
---
See Also:
---
Details
You can monitor the sending progress by checking the
property or
using the
event.
.Setdata Method
Function:
For the selected socket (selection is made through
) adds the data passed in the txdata argument to
the contents of the TX buffer.
Syntax:
ser.setdata(byref txdata as string)
Returns:
---
See Also:
---
Part
Description
txdata
The data to send; this data will be added to the contents of
the TX buffer.
Details
If the buffer doesn't have enough space to accommodate the data being added
then this data will be truncated. Newly saved data is not sent out immediately.
This only happens after the
method is used to commit the data. This
allows your application to prepare large amounts of data before sending it out.
Total amount of newly added (uncommitted) data in the buffer can be checked
through the
setting.
340
353
364
340
342
340
353
339