http://bugs.winehq.org/show_bug.cgi?id=9909
Summary: VB6 - CoRegisterMessageFilter Product: Wine Version: 0.9.46. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: test AssignedTo: wine-bugs@winehq.org ReportedBy: stanwell@gmx.de
A simple VB6.exe is not working at all, Wine just gives this error message: "fixme:ole:CoRegisterMessageFilter stub"
Source code: ------------
Module: -------
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) -------
Private Sub Form_Load()
Clipboard.SetText "test" Sleep (8000)
End Sub