Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
News System
#24
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:
Code:
' :::::::::::::::::::::::::::::::::
    ' ::     News Recieved packet    ::
    ' :::::::::::::::::::::::::::::::::
    If LCase(Parse(0)) = "news" Then
        Call WriteINI("DATA", "News", Parse(1), (App.Path & "\News.ini"))
        Exit Sub
    End If
ServerSide
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
think that theres anything else that I should do to make it show the words in the text box?
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)