Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Compiling Error (EO)


jncoblack15
 Share

Recommended Posts

Thie is the code it puts the error to..i know the pictures maybe to dark, but its  a general idea of the error and where in the code it places it. This is a brand new copy of the codes just downloaded. I had the problem earlier but figured it might fix itself IF I replaced the changed ones with the new ones, Client and all same with server, but still no luck.

```
Sub TcpInit()
    ' If debug mode, handle error then exit out
    If Options.Debug = 1 Then On Error GoTo errorhandler

    Set PlayerBuffer = New clsBuffer

    ' connect
    frmMain.Socket.RemoteHost = Options.IP
    frmMain.Socket.RemotePort = Options.Port

    ' Error handler
    Exit Sub
errorhandler:
    HandleError "TcpInit", "modClientTCP", Err.Number, Err.Description, Err.Source, Err.HelpContext
    Err.Clear
    Exit Sub
End Sub
```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...