This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub WordCount() | |
| Dim Rng As Range, Dn As Range | |
| Dim oMax As Double | |
| Dim K As Variant | |
| Dim Msg As String | |
| Dim vWords As Variant | |
| Dim myWord As Variant | |
| Dim counter As Integer, WordCount As Integer | |
| Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| STRFTIME(3) BSD Library Functions Manual STRFTIME(3) | |
| NAME | |
| strftime, strftime_l -- format date and time | |
| The conversion specifications are copied to the buffer after expansion as | |
| follows: | |
| %A is replaced by national representation of the full weekday name. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $credentials = cmdkey /list | |
| foreach ($line in $credentials) { | |
| if ($line -match "Target: (.+)") { | |
| $target = $Matches[1] | |
| cmdkey /delete:$target | |
| } | |
| } |
OlderNewer