http://bugs.winehq.org/show_bug.cgi?id=5884
Summary: VB6 application fails to convert date to string formatted weekdays Product: Wine Version: CVS Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-ole AssignedTo: wine-bugs@winehq.org ReportedBy: me@benjaminarai.com
The application prints out the string for the specified weekday. VarWeekdayName is missing.
Visual Basic snippet:
Dim oldDate As Date
Dim oldWeekDayName As String
oldDate = #2/12/1969#
oldWeekDayName = WeekdayName(Weekday(oldDate))
Print "The weekday name is (expect Wednesday) "; oldWeekDayName
Wine debug output: fixme:ole:CoRegisterMessageFilter stub wine: Call from 0x7fc91610 to unimplemented function oleaut32.dll.VarWeekdayName, aborting wine: Unimplemented function oleaut32.dll.VarWeekdayName called at address 0x7fc91610 (thread 0009), starting debugger...