如何在 Linux 中从 abstractspoon 运行 todolist?

如何在 Linux 中从 abstractspoon 运行 todolist?

我想运行待办事项列表(Linux 中 5.3 至 6.2 的任意版本)(ubuntu 11.04)

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.

我也在网上寻求帮助但仍然没有找到解决方案。

在我使用命令行“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

请帮忙 :)

答案1

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

葡萄酒技巧应该可以为您提供脚本。

#!/bin/bash
wget http://winetricks.org/winetricks
EXE="winetricks"
chmod +x $EXE
$EXE vcrun2005
$EXE vcrun2008

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

答案2

ToDoList 仍然会在某些大型或复杂的列表中崩溃。以下对我有用

$ winetricks vcrun6 comctl32

相关内容