CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: IMasterXX

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,184

    problem with built-in functions...

    Winsock has the function error(). So if I wanted to close a connection when an error occurs, I would use that function. But the function doesn't detect an error right away. It only detects an...
  2. Replies
    5
    Views
    1,184

    Regarding the case select with Winsock...

    I tried the case select for winsock:

    Select Case Winsock1(ConnectedUsers(socketcheck)).State
    Case 0
    'Status.SimpleText = "Closed"
    Case 1
    'Status.SimpleText = "Open"
    ...
  3. Replies
    5
    Views
    1,184

    Killing the bad Winsock Connections

    :confused:

    I made a chat server where multiple people can connect. They all connect on the same port but through an array (so there are no conflicts). As clients connect, their names are added...
  4. Replies
    2
    Views
    15,316

    Convert BMP to JPEG (WITHOUT DLL)

    :confused:
    I'm writing a program and I need to convert BMP to JPEG. I read the other threads but in each, a DLL is needed. I need to make the conversion with straight VB code (or through a .BAS...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured