wxErlang错误消息
我根本无法让 wxErlang 工作。我需要包含一个模块吗?找不到相关的基本信息。请帮忙。我正在寻找一个非常基本的模块示例。
我收到的错误是
未定义的函数 wx:start/0
I cannot get wxErlang to work at all. Do i need to include a module. Can't find any basic information relating to it. Please help. I am look for a very basic example of a module.
the error I am getting is
undefined function wx:start/0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该显示一个空框架:
This should display an empty frame:
查找 ex-erlang-samples 您应该在 EShell 中发出以下调用来查找 wx-erlang 的基本目录:
在 Windows 上,返回的路径使用“/”而不是“\”,因此只需替换它们即可。
在该目录内应该有一个目录“examples”。在这些示例中从“简单”开始。
另外你应该检查 wx 是否正常工作:使用
在 EShell 中。
To find the ex-erlang-samples You should issue the following call in EShell to locate the base directory for wx-erlang:
On Windows the returned path uses "/" instead of "\", so just replace them.
Inside that directory there shoud be a directory "examples". Start with "simple" inside those examples.
Also You should check if wx is working properly: use
in EShell.
我只需要使用以下行包含 wx lib:
include/ 是我的项目中包含 wx 库的子目录。
I just needed to include the wx lib using the following line
include/ is a sub directory in my project containing the wx library.