View Single Post
Old 04-10-2011, 05:43 AM   #1
aauajhg842
 
Posts: n/a
Default Discount Office 2007 A Simple Solution for Plurali

Reader Patrick Jackman of Vancouver, BC has submitted a useful “fit-and-finish” tip. Here is a simple tip that I use quite often in MsgBox prompts when the message involves reporting the results of a count. Function Pluralize(ByVal varCount As Variant,Office Pro 2007 Key, Optional Singular _
                    As Variant, Optional Plural As Variant) _
                    As String     If Not IsNull(varCount) Then
        If varCount <> 1 Then
            If IsMissing(Plural) Then
                Pluralize = "s"
            Else
                Pluralize = Plural
            End If
        Else
            If Not IsMissing(Singular) Then
                Pluralize = Singular
            End If
        End If
    End If
End Function Here is an example of how I would use it without the optional parameters: strMsg = "Your search returned " & intCount & " item" & _
            Pluralize(intCount) & "." When intCount is 1,Office 2010 Home And Business, strMsg would be: Your search returned 1 item. When intCount is 2, strMsg would be: Your search returned 2 items. Here is an example using the optional parameters: strMsg = "Print " & intCount & " cop" & _
            Pluralize(intCount, "y",Office 2010 Keygen, "ies") & "?" When intCount is 1,Discount Office 2007, strMsg would be: Print 1 copy? When intCount is 2, strMsg would be: Print 2 copies? For more information,Office 2007 License, you can contact Patrick here. <div
  Reply With Quote

Sponsored Links