http://bugs.winehq.org/show_bug.cgi?id=58398
Bug ID: 58398 Summary: vbscript: For each function with Split a empty string Product: Wine Version: 10.10 Hardware: x86-64 OS: Windows Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: fang.jiali@vico-lab.com
When I use following script, the behavior is different with MS's.
-----------------------------------------
Dim arrText arrText = ""
Dim value For Each value In Split(arrText, ",") msgbox value Next
-----------------------------------------
if we use wine's script engine, it will show a popop message. if we use MS's script engine, it will NOT show a popop message.