The forum

Picaxe Editor 6 not run

Author Replies
XavierPOL Wednesday 13 March 2019 at 23:47
XavierPOLAnonymous

I tried to run Picaxe Editor 6.1.0.0  via POL 4.2.12 in Ubuntu 18.04 LTS over AMD A8 64bits and obtain this fixme's collection.

Any suggestions, please?

[03/13/19 23:35:09] - Running wine- start.exe /wait /unix  (Working directory : /home/xavier/.PlayOnLinux/wineprefix/a/drive_c/users/xavier/Start Menu/Programs/Revolution Education/PICAXE Editor 6)
0009:fixme:exec:SHELL_execute flags ignored: 0x00000100
0025:fixme:nstc:NSTC2_fnSetControlStyle2 mask & style (0x00000004) contains unsupported style(s): 0x00000004
0025:fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x13be50 (2, 1026, a003, 0, 0x33f508)
0025:fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x13be50 (2, 1026, a004, 1, 0x33f508)
0025:fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x13be50 (2, 1025, a003, 1, 0x33f508)
0025:fixme:shell:IShellBrowser_fnSendControlMsg stub, 0x13be50 (2, 1025, a004, 1, 0x33f508)

Edited by XavierPOL

Dadu042 Friday 15 March 2019 at 8:26
Dadu042

I will search for informations in the Wine AppDB:

https://appdb.winehq.org/objectManager.php?sClass=application&iId=2984

Edited by Dadu042

Dadu042 Friday 15 March 2019 at 9:29
Dadu042

v6 seems to now work (with Wine) like v5 did... :(

I tried Wine 4.3 + dotnet35sp1 without success.

Edited by Dadu042

Dadu042 Saturday 16 March 2019 at 11:05
Dadu042

I tried many things on Wine 3.0.3 and 4.3 (see in the script: # Tried without success (app still crash when launched) without success.

Perhaps one last thing is to put the 'wave32.ocx' and register it in the windows registry (I have read that in the editor's forum).

Unhandled Exception:
System.InvalidProgramException: Invalid IL code in #e.#d:#b (string[]): IL_0002: brtrue.s  IL_0009

[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidProgramException: Invalid IL code in #e.#d:#b (string[]): IL_0002: brtrue.s  IL_0009

 

My script (not working) :

#!/usr/bin/env playonlinux-bash

# Date : (2019-03-15 15-25)
# Last revision : (2019-03-16 11-10)
# Wine version used : 3.0.3
# Distribution used to test : Ubuntu 18.10 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Version tested: PICAXE Editor 6.1.0.0 (2019)

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="PICAXE Editor 6.1.0.0"
PREFIX="picaxe_editor6"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="PICAXE"
GAME_URL=" "

Set_OS "win7"

POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

# Tried without success (app still crash when launched) :
# POL_Call POL_Install_dotnet35sp1
# POL_Call POL_Install_mono210
# POL_Call POL_Install_mfc42
# POL_Call POL_Install_msxml6
# POL_Call POL_Install_vbrun6
# POL_Call POL_Install_dotnet20sp2

POL_SetupWindow_InstallMethod "LOCAL"

if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "PicaxeEditor.exe" "$TITLE" ""

POL_Shortcut_Document "$TITLE" "picaxe_manual1.pdf"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Edited by Dadu042

XavierPOL Wednesday 27 March 2019 at 21:32
XavierPOLAnonymous

Merci beaucoup Dadu042!

Dadu042 Thursday 28 March 2019 at 11:11
Dadu042