Results 1 to 5 of 5

Thread: Good winsock tutorials for .net

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2008
    Posts
    47

    Good winsock tutorials for .net

    can someone please point me in the direction of a good .net winsock tutorial for a client/server chat example?
    or tell me if i should be looking at something else for making a client/server chat program..

  2. #2
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: Good winsock tutorials for .net

    There'll be no good winsock tutorials for .NET because you shouldnt use winsock in .NET. You have plenty of classes that you use for that now, have a look at the link in my signature for some examples.
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

  3. #3

    Thread Starter
    Member
    Join Date
    Oct 2008
    Posts
    47

    Re: Good winsock tutorials for .net

    ah k, thanks for example.

  4. #4

    Thread Starter
    Member
    Join Date
    Oct 2008
    Posts
    47

    Re: Good winsock tutorials for .net

    ok for some reason lines with "list()" dont work because it doesn't reconize list

    such as :
    Private clients As New List(Of ConnectedClient)

  5. #5
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: Good winsock tutorials for .net

    I take it youre using Visual Studio 02/03 then? The List(Of T) was introduced with Visual Studio 2005 along with the .NET 2.0 framework.
    You'll just have to use another collection type instead, such as an ArrayList or a Hashtable.
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width