https://bugs.winehq.org/show_bug.cgi?id=55196
Bug ID: 55196 Summary: VBScript Trailing End If Product: Wine Version: 8.9 Hardware: aarch64 OS: Mac OS X Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: francisdb@gmail.com
Below code fails but works correctly on windows
Sub Sol20(Enabled) If Enabled Then FlBG20.visible = 1 Else FlBG20.visible = 0 End If End Sub
workaround:
Sub Sol20(Enabled) If Enabled Then FlBG20.visible = 1 Else FlBG20.visible = 0 End If End Sub
might be related to bug 54978