Hi, everybody
I have a macro which works perfectly:
Sub Toggle_ListSelectedCmts()
Static Flag1 As Boolean
If Flag1 = True Then
Call CreateShape1_ListCommentsTextInShape1
Flag1 = False
ElseIf Flag1 = False Then
Call ClearShape1
Flag1 = True
End If
This code makes my button act like a...