21-08-2006, 04:49 PM
Alright well if you feel like writting the other one it's cool. Ok I found a code that's similar to what I want but still can't get the text to blit intothat freaking starting textbox.
here's the code;
client side:
ServerSide
think that theres anything else that I should do to make it show the words in the text box?
here's the code;
client side:
Code:
' :::::::::::::::::::::::::::::::::
' :: News Recieved packet ::
' :::::::::::::::::::::::::::::::::
If LCase(Parse(0)) = "news" Then
Call WriteINI("DATA", "News", Parse(1), (App.Path & "\News.ini"))
Exit Sub
End If
Code:
Sub SendNewsTo(ByVal index As Long)
Dim Packet As String
Packet = "NEWS" & SEP_CHAR & ReadINI("DATA", "ServerNews", App.Path & "\News.ini") & SEP_CHAR & END_CHAR
Call SendDataTo(index, Packet)
End Sub