Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| home_server:mswindows_notes [2025-03-18 Tue wk12 16:54] – [MSExcel Tips] baumkp | home_server:mswindows_notes [2025-10-06 Mon wk41 06:50] (current) – [MSExcel Tips] baumkp | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | {{tag> | + | {{tag> |
| ======KPTree - MSWindows Setup====== | ======KPTree - MSWindows Setup====== | ||
| =====Background===== | =====Background===== | ||
| Line 19: | Line 19: | ||
| *First up to make easier to load up system | *First up to make easier to load up system | ||
| | | ||
| - | | + | |
| + | | ||
| *I just use the built in Windows Defender for virus protection now | *I just use the built in Windows Defender for virus protection now | ||
| | | ||
| Line 28: | Line 29: | ||
| | | ||
| | | ||
| - | | + | |
| - | | + | |
| | | ||
| | | ||
| Line 70: | Line 71: | ||
| *YouTube Premium Family. | *YouTube Premium Family. | ||
| *Spotify - My son originally wanted this and I ended up going with family option. | *Spotify - My son originally wanted this and I ended up going with family option. | ||
| - | ====Microsoft PowerToys: Utilities to customize Windows==== | + | =====Microsoft PowerToys: Utilities to customize Windows===== |
| - | [[https:// | + | *[[https:// |
| + | *[[https:// | ||
| + | *[[https:// | ||
| + | |||
| + | ====Some key short cut keys==== | ||
| + | |||
| + | The Windows key is called the Super or Meta Key on Linux. | ||
| + | So below is a list of special action keys. | ||
| + | *Shift (shift key, left or right) | ||
| + | *Alt (alt key, left of right) | ||
| + | *Ctrl (Control key, left or right) | ||
| + | *Meta (Meta, Super or Windows key, left or right) | ||
| + | *→ (Right arrow key) | ||
| + | *← (Left arrow key) | ||
| + | *↑ (Up arrow key) | ||
| + | *↓ (Down arrow key) | ||
| + | *PgUp (Page up Key) | ||
| + | *PgDn (Page Down Key) | ||
| + | |||
| + | ===Always on Top=== | ||
| + | *Activate/ | ||
| + | |||
| + | ===FancyZones==== | ||
| + | *Activate/ | ||
| + | *Apply saved Custom Layout: Meta + Ctrl + Alt + Number | ||
| + | |||
| ====Software Licenses and Copyright==== | ====Software Licenses and Copyright==== | ||
| I am not overly pious about free versus purchased software. | I am not overly pious about free versus purchased software. | ||
| Line 219: | Line 246: | ||
| ======MSExcel Tips====== | ======MSExcel Tips====== | ||
| + | =====Show 2 sheets of same file===== | ||
| + | Use the menu '' | ||
| =====MS Excel Highlight Row or Column===== | =====MS Excel Highlight Row or Column===== | ||
| - | <code basic>The basic built in way : | + | The basic built in way : |
| * '' | * '' | ||
| * '' | * '' | ||
| Line 227: | Line 256: | ||
| Use a VB macro. | Use a VB macro. | ||
| + | ++++VB Code 1| | ||
| + | < | ||
| + | 'from https:// | ||
| + | Private Sub Worksheet_SelectionChange(ByVal Target As Range) | ||
| + | If Target.Cells.Count > 1 Then Exit Sub | ||
| + | Application.ScreenUpdating = False | ||
| + | |||
| + | 'Clear the color of all cells | ||
| + | Cells.Interior.ColorIndex = 0 | ||
| + | With Target | ||
| + | ' | ||
| + | .EntireRow.Interior.ColorIndex = 38 'or use RGB(200, | ||
| + | .EntireColumn.Interior.ColorIndex = 24 | ||
| + | End With | ||
| + | |||
| + | Application.ScreenUpdating = True | ||
| + | End Sub</ | ||
| + | ++++ | ||
| + | |||
| + | ++++VB Code 2| | ||
| + | < | ||
| Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) | Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) | ||
| Static xRow | Static xRow | ||
| Line 251: | Line 301: | ||
| End With | End With | ||
| End Sub</ | End Sub</ | ||
| + | ++++ | ||
| =====Text to Column===== | =====Text to Column===== | ||
| Line 381: | Line 431: | ||
| *'' | *'' | ||
| + | ====STYLEMANAGER==== | ||
| + | The command '' | ||
| ======Accessibility Contract Checker====== | ======Accessibility Contract Checker====== | ||
| - | Form versus function, unfortunately the moronic types seem to favour form over function. | + | Form versus function, unfortunately the moronic types seem to favour form over function. |
| *WebAIM | *WebAIM | ||
| *[[https:// | *[[https:// | ||
| Line 390: | Line 442: | ||
| *[[https:// | *[[https:// | ||
| - | <- home_server: | + | <- home_server: |