Being as uncultured as I am, I'm completely to come up with some witty way to tie-in today's post with the Charles Dickens' classic. To my credit though, I did make it through the ultra-condensed version and I watched LOTR:The Two Towers (which I'm sure is a pretty similar story).

Anyway ... Ryan discovered, something we can definately file under "least usefull comments" ... 

Public Overloads Sub WriteFileRecord(ByVal npoints As Integer, ByVal itime As Integer) 
Dim i As Integer
'this is the version that doesn't have uerr and verr in it
bwFile.Write(npoints)
bwFile.Write(itime)
End Sub




Public
Overloads Sub WriteFileRecord(ByVal npoints As Integer, ByVal itime As Integer, ByVal uerr() As Double, ByVal verr() As Double)

Dim i As Integer
'this is the version that has uerr and verr in it
bwFile.Write(npoints)
bwFile.Write(itime)
bwFile.Write(CType(uerr(i), Single))
bwFile.Write(CType(verr(i), Single))
End Sub

And to the other extreme, just immagine how much fun Rob Tevlin has learning how "for" loops and the like work ... every day ...

%REM
This agent has the "On Error" swithced on. If the agent does not run the first thing to do is comment this out.
This will help find the error and save you lots of time.
%END REM


[Advertisement] BuildMaster allows you to create a self-service release management platform that allows different teams to manage their applications. Explore how!