Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact us Request to publish your help manuals Request to remove your help manuals Buy Now
Welcome
» ComTL
» System Requirements
Using ComTL
» ComTL Control Members
» ComTL Functions
» CRC32 Procedure
» GetAliveList Function
» GetExactName Function
» IsAlive Function
» MoreDtaAvailable Function
» ReadData Function
» SendMSG Function
» WhoAmI Function
» ComTL Subroutines
Properties & Events
» Properties
» Events
 
Buy FtpXQ FTP Server Online! Buy ComTL Online!

MoreDtaAvailable Function

Description

Returns true if there is more data received but not has been read yet. This situation could be possible when you decide to not read received data when it arrives.

Definition

Public Function MoreDataAvailable() as Boolean

Example

data recovery pen drive usb data recovery software unerase digital photos
professional data recovery software best data recovery data recovery program
notebook data recovery undelete files reset passwords

The following code demonstrate situation when received data not read due to application busy. And read the data using MoreDataAvailable function later

Private m_isBusy as Boolean
Private Sub DoSomeThing()
m_isBusy = True
' do something
m_isBusy = False
' read all data messages until MoreDataAvailable returns FALSE
Do While ComTL.MoreDataAvailable
MsgBox ComTL.ReadData
Loop
End Sub

Private Sub ComTL_MsgArrived()
if m_isBusy Then Exit Sub
MsgBox ComTL.ReadData
End Sub

Buy FtpXQ FTP Server Online! Buy ComTL Online!
Home | Contact us | Request to publish your help manuals | Request to remove your help manuals