web-dev-qa-db-ja.com

Linuxでabstractspoonからtodolistを実行する方法は?

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.

また、ネットでヘルプを検索しましたが、まだ解決策が見つかりません。

コマンドライン「wineToDoList.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

助けてください :)

5
Seeker

MFC42u.dllライブラリはVisualC++ランタイムライブラリであり、デフォルトではWINEには付属していません。

winetricks スクリプトを取得できるはずです。

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

上記のスクリプトをどこかに置き(できればホームディレクトリ)、実行可能にします。それを実行すると、winetricksと、VC++ランタイムの再配布可能なライブラリを取得できるはずです。

2
new123456

ToDoListは、いくつかの大きなリストや複雑なリストでもクラッシュします。以下は私のために働きます

$ winetricks vcrun6 comctl32
2
Hoa