Lines Matching refs:Str
1017 Dim Str As String variable
1061 Str = RID_STR_COMMON_ATTRIBUTE_CONTROLS & ": "
1063 Str = Str & vbLf & vKeyArray(count) & " " & vItemArray(count)
1065 WriteUserFromControlTypesComment logWb, str1, Str
1665 Dim Str As String variable
1670 Str = RID_STR_COMMON_ISSUE_CLASS_COMPLEX
1672 Str = RID_STR_COMMON_ISSUE_CLASS_MINOR
1674 Str = RID_STR_COMMON_ISSUE_CLASS_NONE
1677 getDocOverallIssueClassificationAsString = Str
1681 Dim Str As String variable
1686 Str = RID_STR_COMMON_MACRO_CLASS_COMPLEX
1688 Str = RID_STR_COMMON_MACRO_CLASS_MEDIUM
1690 Str = RID_STR_COMMON_MACRO_CLASS_SIMPLE
1692 Str = RID_STR_COMMON_MACRO_CLASS_NONE
1695 getDocOverallMacroClassAsString = Str
3308 Private Function EncodeXML(Str As String) As String
3313 Str = Replace(Str, "^", "^")
3314 Str = Replace(Str, "&", "&")
3315 Str = Replace(Str, "`", "'")
3316 Str = Replace(Str, "{", "{")
3317 Str = Replace(Str, "}", "}")
3318 Str = Replace(Str, "|", "|")
3319 Str = Replace(Str, "]", "]")
3320 Str = Replace(Str, "[", "[")
3321 Str = Replace(Str, """", """)
3322 Str = Replace(Str, "<", "<")
3323 Str = Replace(Str, ">", ">")
3330 EncodeXML = Str
3336 …WriteDebug currentFunctionName & " : string " & Str & ": " & Err.Number & " " & Err.Description & …