Search results for query: *

  1. K

    ArgumentOutOfRangeException

    Reply i declare the variable bytes as below: dim bytes(client.receivebuffersize) as byte tat's it. then i change the parameter to byte.length...it works immediately. strange!!!
  2. K

    ArgumentOutOfRangeException

    Problem solved I have solved the problem d. i set the size parameter of this function to bytes.Length. Then the program can run smoothly. nwStream.Read(bytes, 0, bytes.length) I jus try out all the possibilities and lucklily i made it. But i wonder why it cause the problem. Haha.....
  3. K

    ArgumentOutOfRangeException

    i try to develop a client/server program. it works fine at the beginning. But when i try to request another data transfer, the exception warning pops up. ArgumentOutOfRangeException Here is the command Dim bytes(client.receivebuffersize) as bytes nwStream = client.getstream...
Back
Top