﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1562	multiple conditions fail	lex771@…	Jos	";The problem can best be descriped by the following code:
$feed = ""3""
;The problem happens at Switch... Case...
;when there are multiple conditions:
Switch $feed
	Case ""1"" Or ""2""
		MsgBox(16, ""?"", ""this also happens when $feed = 3"")
	Case Else
		MsgBox(16, ""?"", ""this never happens"")
EndSwitch
;The problem is the same at Select... Case...:
Select
	Case $feed = ""1"" Or ""2""
		MsgBox(16, ""?"", ""this also happens when $feed = 3"")
	Case Else
		MsgBox(16, ""?"", ""this never happens"")
EndSelect
;The problem is the same at If... Then...:
If $feed = ""1"" Or ""2"" Then
	MsgBox(16, ""?"", ""this also happens when $feed = 3"")
Else
	MsgBox(16, ""?"", ""this never happens"")
EndIf
;The compiler accepts this but der program behaves not as supposed
;Is this a bug?
;I use SciTE4AutoIt3 Version 1.79 "	Bug	closed		SciTE4AutoIt	Other	None	No Bug		
