The code below is what creates all of my references... after that establishes the server criteria as well as creates the connection to the server itself
PHP Code:
Option Explicit
Public cvsApp As New cvsApplication
Public cvsConnAgent As New cvsConnection
Public cvsConnSkill As New cvsConnection
Public acsLog As Object
Public RepSkill As cvsReport
Public RepAgent As cvsReport
Public RepInfoSkill
Public RepInfoAgent
Public cvsCatalogSkill As New cvsCatalog
Public cvsCatalogagent As New cvsCatalog
Public cvsSrvSkill As cvsServer
Public cvsSrvAgent As cvsServer
Private Sub Form_Load()
cvsApp.CreateServer "****", "****", "", "157.209.119.34", False, "ENU", cvsSrvAgent, cvsConnAgent
cvsApp.CreateServer "****", "****", "", "157.209.119.34", False, "ENU", cvsSrvSkill, cvsConnSkill
End Sub
Public Sub DoConnection()
cvsConnAgent.Login "****", "****", "157.209.119.34", "ENU"
cvsConnSkill.Login "****", "****", "157.209.119.34", "ENU"
If BuildSkillReport = True Then frmMain.chkSkillReportDone.Value = 1 Else frmMain.chkSkillReportDone = 0
If BuildAgentReport = True Then frmMain.chkAgentReportDone.Value = 1 Else frmMain.chkAgentReportDone = 0
End Sub