hi :)
I'm trying to tranfer a file between a b+ app to another but there is a
problem.
I send the data with a little timer like this :
If BCF_TimeOut (AppRefreshTimer) And MyClient<>0 Then
AppRefreshTimer=BCF_SetTimer(AppRefreshRate)
WriteLine MyClient," This is a test"
InsertGadgetItem AppList01,-0,"Send..."
EndIf
But when the server receive the data with a stuff like this :
If strStream Then
While Not Eof(strStream )
MyData$=ReadLine$(strStream)
InsertGadgetItem AppList01,-0,MyData$
Wend
EndIf
The server program block all GUI event (very slow) ? while receiving
data ?? is there a way to remove this ?
I'm trying to tranfer a file between a b+ app to another but there is a
problem.
I send the data with a little timer like this :
If BCF_TimeOut (AppRefreshTimer) And MyClient<>0 Then
AppRefreshTimer=BCF_SetTimer(AppRefreshRate)
WriteLine MyClient," This is a test"
InsertGadgetItem AppList01,-0,"Send..."
EndIf
But when the server receive the data with a stuff like this :
If strStream Then
While Not Eof(strStream )
MyData$=ReadLine$(strStream)
InsertGadgetItem AppList01,-0,MyData$
Wend
EndIf
The server program block all GUI event (very slow) ? while receiving
data ?? is there a way to remove this ?