Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
home_server:mswindows_notes [2024-05-22 Wed wk21 16:28] – [Accessibility Contract Checker] baumkp | home_server:mswindows_notes [2025-03-18 Tue wk12 17:10] (current) – [MS Excel Highlight Row or Column] baumkp | ||
---|---|---|---|
Line 91: | Line 91: | ||
Ultimately the software owner has the right to limit their software to 1 machine per license, however I have the similar right to decided this means the software it too expensive and inconvenient for me to justify to use. For this type of software I want a license that gives me unfettered home use on at least 2 machines and perhaps all home personal use machines, with a separate license for work use. | Ultimately the software owner has the right to limit their software to 1 machine per license, however I have the similar right to decided this means the software it too expensive and inconvenient for me to justify to use. For this type of software I want a license that gives me unfettered home use on at least 2 machines and perhaps all home personal use machines, with a separate license for work use. | ||
- | ===Foxit Pro=== | + | ===Foxit Pro / Qoppa=== |
Sadly there is no full featured GNU Licensed Linux PDF writer. | Sadly there is no full featured GNU Licensed Linux PDF writer. | ||
Line 98: | Line 98: | ||
====iTunes - setup==== | ====iTunes - setup==== | ||
+ | ++++I hardly ever use iTunes any more| | ||
iTunes is software I do not particularly like. First of all I do not use the Music feature having long ago rip my CD collection to MP3 and I simply do not like the way iTunes works. So the only real reason to use iTunes is for my iOS devices, backing up iOS devices etc. iTunes, in typical Apple fashion I find is not smart end user friendly as it has been designed for not smart users and attempts to hide the lower level file system. Further to this the configuration, | iTunes is software I do not particularly like. First of all I do not use the Music feature having long ago rip my CD collection to MP3 and I simply do not like the way iTunes works. So the only real reason to use iTunes is for my iOS devices, backing up iOS devices etc. iTunes, in typical Apple fashion I find is not smart end user friendly as it has been designed for not smart users and attempts to hide the lower level file system. Further to this the configuration, | ||
Line 120: | Line 120: | ||
*iTunes playing up | *iTunes playing up | ||
However one good trick is to simply run the install file " | However one good trick is to simply run the install file " | ||
+ | ++++ | ||
=====Printer Scanner Setup===== | =====Printer Scanner Setup===== | ||
Line 217: | Line 218: | ||
======MSExcel Tips====== | ======MSExcel Tips====== | ||
+ | |||
+ | =====MS Excel Highlight Row or Column===== | ||
+ | The basic built in way : | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | Use conditional formating, but this requires hitting '' | ||
+ | |||
+ | 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) | ||
+ | Static xRow | ||
+ | Static xColumn | ||
+ | If xColumn <> "" | ||
+ | With Columns(xColumn).Interior | ||
+ | .ColorIndex = xlNone | ||
+ | End With | ||
+ | With Rows(xRow).Interior | ||
+ | .ColorIndex = xlNone | ||
+ | End With | ||
+ | End If | ||
+ | pRow = Selection.row | ||
+ | pColumn = Selection.Column | ||
+ | xRow = pRow | ||
+ | xColumn = pColumn | ||
+ | With Columns(pColumn).Interior | ||
+ | .ColorIndex = 6 | ||
+ | .Pattern = xlSolid | ||
+ | End With | ||
+ | With Rows(pRow).Interior | ||
+ | .ColorIndex = 6 | ||
+ | .Pattern = xlSolid | ||
+ | End With | ||
+ | End Sub</ | ||
+ | ++++ | ||
=====Text to Column===== | =====Text to Column===== | ||
When pasting text from other applications on occassions Excel places all the columns into one column. To adjust into multiple columns the following feature can be used. Menu: Data : Text to Columns | When pasting text from other applications on occassions Excel places all the columns into one column. To adjust into multiple columns the following feature can be used. Menu: Data : Text to Columns | ||
+ | |||
+ | =====Text Carriage Return / Line Feed===== | ||
+ | *Use char(10), e.g. ="Test text"& | ||
+ | ON Mac/Linux this may be char(13) due to different ways these OS handle carriage return / end of line and line feed control charaters. | ||
=====List Windows files and directories into MSExcel===== | =====List Windows files and directories into MSExcel===== | ||
Line 329: | Line 389: | ||
=====AutoCAD===== | =====AutoCAD===== | ||
====AutoCAD Hardware Acceleration==== | ====AutoCAD Hardware Acceleration==== | ||
- | The Intel built in graphics accelerator seems to have problems with proper full screen resolution on 4K monitors. | + | The Intel built in graphics accelerator seems to have problems with proper full screen resolution on 4K monitors. |
====Annotative block===== | ====Annotative block===== | ||
If inserting block does not seem to scale or show up check the annotative option on the block properties. | If inserting block does not seem to scale or show up check the annotative option on the block properties. | ||
- | =====Accessibility Contract Checker===== | + | ====Inserting a Picture==== |
+ | Attaching a picture effectively externally references the picture. | ||
+ | Use the PASTESPEC command and paste in as a picture file. This embeds into drawing file, not as a link. | ||
+ | |||
+ | ====New Paperspace View port==== | ||
+ | *'' | ||
+ | *'' | ||
+ | |||
+ | ======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:// |
*[[https:// | *[[https:// | ||
*[[https:// | *[[https:// |