如何在linux中从abstractspoon运行todolist?

See*_*ker 5 linux wine time-management compatibility ubuntu

我想在 linux (ubuntu 11.04) 中运行ToDoList(从 5.3 到 6.2 的任何版本)

I've tried to use under wine 1.2 and 1.3 without success:
   1 - I've downloaded the program (todolist_exe.zip);
   2 - unpacked it;
   3 - and use the "Open with Wine Windows Program loader";
   4 - the mouse cursor starts thinking and stops after a few seconds and nothing happens.
Run Code Online (Sandbox Code Playgroud)

我也在网上搜索过帮助,但仍然没有找到解决方案。

在我使用命令行“wine ToDoList.exe”后,它给了我:

wine: cannot find L"C:\\windows\\system32\\plugplay.exe"
err:module:import_dll Library MFC42u.DLL (which is needed by L"Z:\\home\\user_name\\Progs\\todolist\\ToDoList.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\home\\user_name\\Progs\\todolist\\ToDoList.exe" failed, status c0000135
Run Code Online (Sandbox Code Playgroud)

请帮忙 :)

new*_*456 2

MFC42u.dll 库是一个 Visual C++ 运行时库,默认情况下 WINE 不附带该库。

winetricks应该能够为您获取脚本。

#!/bin/bash
wget http://winetricks.org/winetricks
EXE="winetricks"
chmod +x $EXE
$EXE vcrun2005
$EXE vcrun2008
Run Code Online (Sandbox Code Playgroud)

将上述脚本放在某处(最好是您的主目录),并使其可执行。运行它,它应该能够winetricks为您获取以及 VC++ 运行时可再发行库。