clanman: -------------------------------------------------------------------------------- There is a minor VBScript key word recognition issue.
When splitting a line across two lines and you put a space then underscore ( _) after the last key word then all works fine. However, if you are doing something like an If clause and the condition has multiple or, and, not (and so on) junctions and there is no space left between the underscore and the junction, PSPad does not recognise the key word. This example works If strCode = "A" or _ strCode = "B" Then bolDeleteFile = false End If This code is still valid however the or is not recognised as a key word If strCode = "A" or_ strCode = "B" Then bolDeleteFile = false End If -------------------------------------------------------------------------------- Fix will be available in the next build -- <http://forum.pspad.com/read.php?6,49621,49892> PSPad freeware editor http://www.pspad.com
