Search:

Type: Posts; User: rydinophor

Search: Search took 0.02 seconds.

  1. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    can anyone get a console app working using this library? I would love to see something like that, ever since i'm using SDL.NET for my client, a windows form app is pointless, and for the server i...
  2. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Sorry for the necro post, but that DLL file of yours needs a small edit, Every time a client disconnects unsafely the server crashes, here's where the following bug is located:
    Location:...
  3. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Error:

    System.Reflection.TargetInvocationException was unhandled
    Message="Exception has been thrown by the target of an invocation."
    Source="mscorlib"
    StackTrace:
    at...
  4. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    jmcilhinney, I have another question. Is your library based off the TCPClient and TCPListener, Or based off the Socket Library Or Both.
    I prefer using Asynchronous Sockets, A friend of mine told me...
  5. Replies
    2
    Views
    744

    Re: Asynchronous Sockets [Problems]

    Yeah I just got it Thanks, Right Now I'm Using Your Library and It basically sits and does nothing, More information in my reply -->http://www.vbforums.com/showthread.php?p=3640124#post3640124
  6. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Im getting a lot of issues I can hardly do anything :S. Here is what i have:
    Server:


    Imports Wunnell.Net
    Module ModMain
    Private WithEvents server As New MessageServer(4000)
    Sub...
  7. Replies
    2
    Views
    744

    Asynchronous Sockets [Problems]

    I'm quite new in this field but I set up my own Asynchronous Sockets Program Mainly for my game engine, I was wondering if someone could come up with a bright idea here and give me an example or...
  8. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    Sorry For The Double Post but is there anyway of accessing the forms controls from another module? I tried adding some text to textbox1 in form1 from modtcpinit and its not working very well, any...
  9. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    I never managed to fix the issue, instead i switched to asynchronous sockets.

    I don't know where to start but I've been looking for something like this for months, I took a look at atheists simple...
  10. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    sorry about a no reply for 2 days my mind was on work and offset to java, i used a few async tuts and managed to get it too work, the only prob is when my client disconnects the server absolutely...
  11. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    sorry for the double post, but i really don't like threaded sockets, can you show an example of Async Sockets? i get this error when coding and the try and catch doesn't even work on it:

    The Undo...
  12. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    nvm i got it something was messing up the packets from behind the calls.
    Thanks Again,
    Rydinophor
  13. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    nope still didn't work i added public in front of Sub SendDataTos(ByVal Index As Integer, ByVal Message As String)
  14. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    here let me show you what i'm trying to do and its not working:
    in Module modServerTCP:


    Sub SendDataTo(ByVal Index As Integer, ByVal Data As String)
    Call...
  15. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    i have that covered thanks :). now the only problem is changing it back and i just figure that out too:


    Dim Sender As ConnectedClient = clients.Item(Index)
    Sender.SendMessage(Message)...
  16. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    i got that array to work now i need to get it to where i can send data to the specified integer member:


    Private mIndex As Integer
    Sub New(ByVal client As System.Net.Sockets.TcpClient, ByVal...
  17. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    in other words is it possible to make it into an array of integers instead of using a class?


    i have that fixed, mans 2nd best friend did that:
    "On Error Resume Next" :D


    i wasn't born...
  18. Re: [RESOLVED] [2008] Can I add a TCPClient Component

    why not just create a public method for instance:


    Public Sep_Char as String = "|:|" ' the |:| is the delimiter
    Public End_Char as String = ControlChars.cr


    now look how much easier it is:
Results 1 to 18 of 18



Click Here to Expand Forum to Full Width