Submatches in RegExp from LotusScript
LotusScript.doc released
LotusScript.doc has been released and is available for download from the LotusScript.doc website...
A special thank to those who have helped me test out the application, submitted code or patches.
LotusScript.doc article draft is going back to The VIEW
I sent the article draft back to my editor at The VIEW yesterday and I must admit I was a little surprised as to the number of corrections she had made and that I had to look at. I ended up writing quite a lot of new content both clarifying existing points and making new ones.
It will be exciting to hear her thoughts on the added content.
LotusScript.doc release candidate 2
Known sub-classes in LotusScript.doc
The View article featuring LotusScript.doc
I just received the first draft back from "my" editor at The View with the first round of edits for my upcoming article. The article is on LotusScript.doc and will be published in the November/December issue of The View.
I'm VERY exited - my first article...
Small fix to Johans Vector class
Small fix to the removeElementAt(Integer) method - changes in bold.
Public Function removeElementAt(index As Integer)
If index >= Me.size() Then Error 2000, "Array index [" & index & "] out of bounds [" & size & "]"
Dim members As Variant
Dim i As Integer
Dim j As Integer
Redim members(Me.size())
j=0
For i = 0 To Me.size-1
If (i <> index) And (Not j > Me.size()) Then
If Isobject(array(i)) Then
Set members(j) = array(i)
Else
members(j) = array(i)
End If
j = j + 1
End If
Next i
elementLength = elementLength - 1
array = members
End Function




