|
Visual Basic (VB and VBA) |
|
Copyright 1999-2001 Christopher Greaves. All rights reserved. Home Page and email to [email protected] |
| If in doubt, record a macro and inspect the entrails! |
Please read the DISCLAIMER.
Here is an INDEX to all the procedures.
You will probably need one copy of my GLOBAL DECLARATIONS.
Public Function LoadUnique(strAr() As String, strText As String, boolCase As Boolean)
Dim strUtext As String
strUtext = UCase(strText)
Dim lngI As Long
For lngI = 0 To UBound(strAr)
If boolCase Then
If UCase(strAr(lngI)) = strUtext Then
Exit For
Else
End If
Else
If strAr(lngI) = strText Then
Exit For
Else
End If
End If
Next lngI
If lngI > UBound(strAr) Then
strAr(UBound(strAr)) = strText
ReDim Preserve strAr(UBound(strAr) + 1)
MsgBox "changed LoadUnique in strings module"
Else
End If
End Function
| We all knew nothing when we started … |
|
Home Page and Contact Information Send email to [email protected]. This page was last updated Thursday, November 15, 2001 |