stefanero: ok, thanks very much

lennynero: I compiled wx with no unicode support and didn't enable utf8 supoprt systray in aMule. It works fine.
The crash you may experience might be an amule.conf bug which makes aMule crash on every startup. To avoid this, edit C:\Documents and Settings\sensi\.aMule\amule.conf and set [Razor_Preferences]/MAIN_X_SIZE=800 and [Razor_Preferences]/MAIN_Y_SIZE=600
You might have to do this every time you start aMule :S
Or just edit src/amuleDlg.cpp:
if (!override_size) {
if (x2 > 0 && y2 > 0) {
SetSize(0, 200);
} else {
#ifndef __WXGTK__
make it:
if (!override_size) {
if (x2 > 0 && y2 > 0) {
// SetSize(x2, y2);
} else {
#ifndef __WXGTK__
So that it doesn't crash at startup, though the size of aMule's window will not be saved then. If you find this too annoying, try setting the line to "SetSize(800, 600);"
greets!