Pretty sure this a crazy "Program Files" path thing. Windows still isn't too smart.<div><br></div><div>Your easiest bet is to reinstall erlang in a path without spaces in the name. When I was on windows I would choose to install to e.g.:</div><div>"C:\Erlang-R15B02"</div><div><br></div><div>...rather than into "C:\Program Files\...".</div><div><br></div><div>I ran multiple versions like this and I strongly suspect that the space in the path is the issue for the failed driver load (yes, even though it says "PROGRA~1").</div><div><br></div><div>HTH</div><div>/s<br><br>On Monday, August 6, 2012 1:36:28 PM UTC-5, micern wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">Hello!<p>I'm trying to learn Erlang, so I apologize if this is a trivial problem I<br>should have solved myself.</p><p>I'm failing when using WX, trying to open a window for my application.</p><p>Yep, Windows 7 seams to be an odd choice of OS, but that is what I've got.</p><p></p><p>Doing this in the monitor fails:<br>------------------------------<wbr>--<br>1> Wx = wx:new().</p><p>=ERROR REPORT==== 6-Aug-2012::19:42:42 ===<br>WX Failed loading "wxe_driver"@"c:/PROGRA~1/<wbr>ERL59~1.1/lib/wx-0.99.2/priv" <br>** exception error: {load_driver,"Det går inte att hitta den angivna<br>modulen."}<br>     in function  wxe_server:start/0 (wxe_server.erl, line 64)<br>     in call from wx:new/1 (wx.erl, line 107)</p><p>2> Wx.<br>* 1: variable 'Wx' is unbound</p><p><br>The corresponding code in an .erl file fails too:<br>------------------------------<wbr>-----------------<br>-module(minimal).</p><p>-include_lib("wx/include/wx.<wbr>hrl").</p><p>-export([start/0]).<br>-compile(export_all).</p><p>start() -><br>    Wx = wx:new(),<br>    Frame = wx:batch(fun() -> create_window(Wx) end),<br>    wxWindow:show(Frame),<br>    loop(Frame),<br>    wx:destroy(),<br>    ok.</p><p>(more code, loop, create_window, etc).</p><p>...</p><p>7> c(minimal).<br>{ok,minimal}<br>8> minimal:start().</p><p>=ERROR REPORT==== 6-Aug-2012::19:49:23 ===<br>WX Failed loading "wxe_driver"@"c:/PROGRA~1/<wbr>ERL59~1.1/lib/wx-0.99.2/priv" <br>** exception error: {load_driver,"Det går inte att hitta den angivna<br>modulen."}<br>     in function  wxe_server:start/0 (wxe_server.erl, line 64)<br>     in call from wx:new/1 (wx.erl, line 107)<br>     in call from minimal:start/0 (minimal.erl, line 16)</p><p>yep, it bombs @ Wx = wx:new(), ...</p><p><br>Starting the debugger get a similar warning, even if the window actually<br>opens.<br>------------------------------<wbr>------------------<br>2> debugger:start().</p><p>=ERROR REPORT==== 6-Aug-2012::19:47:08 ===<br>WX Failed loading "wxe_driver"@"c:/PROGRA~1/<wbr>ERL59~1.1/lib/wx-0.99.2/priv" <br>{ok,<0.40.0>}</p><p><br>Digging in Erlang library files on my computer...<br>------------------------------<wbr>-------------------<br>Directory .../erl5.9.1/lib/wx-0.99.2 exists.<br>wxe_driver@c:/PROGRA~1/ERL59~<wbr>1.1/lib/wx-0.99.2/priv exists.</p><p><br>Swedish...<br>----------<br>"Det går inte att hitta den angivna modulen" = "Not possible to find the<br>module"</p><p><br>WHY?!?!?!  AND WHAT TO DO?!?!?!</p><p>/micael</p><p></p><p></p><p>--<br>View this message in context: <a href="http://erlang.2086793.n4.nabble.com/WX-Failed-loading-wxe-driver-tp4655138.html" target="_blank">http://erlang.2086793.n4.<wbr>nabble.com/WX-Failed-loading-<wbr>wxe-driver-tp4655138.html</a><br>Sent from the Erlang Questions mailing list archive at Nabble.com.<br>______________________________<wbr>_________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br><a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<wbr>listinfo/erlang-questions</a><br></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p></blockquote></div>