wxErlang错误消息

发布于 2024-08-03 10:44:26 字数 111 浏览 6 评论 0原文

我根本无法让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

柠北森屋 2024-08-10 10:44:26

这应该显示一个空框架:

1> wx:new().
{wx_ref,0,wx,[]}

2> Frame = wxFrame:new(wx:null(), 0, "myFrame").
{wx_ref,36,wxFrame,[]}

3> wxFrame:show(Frame).
true

This should display an empty frame:

1> wx:new().
{wx_ref,0,wx,[]}

2> Frame = wxFrame:new(wx:null(), 0, "myFrame").
{wx_ref,36,wxFrame,[]}

3> wxFrame:show(Frame).
true
蓝色星空 2024-08-10 10:44:26

查找 ex-erlang-samples 您应该在 EShell 中发出以下调用来查找 wx-erlang 的基本目录:

代码:lib_dir(wx)。

在 Windows 上,返回的路径使用“/”而不是“\”,因此只需替换它们即可。

在该目录内应该有一个目录“examples”。在这些示例中从“简单”开始。

另外你应该检查 wx 是否正常工作:使用

wx:demo()。

在 EShell 中。

To find the ex-erlang-samples You should issue the following call in EShell to locate the base directory for wx-erlang:

code:lib_dir(wx).

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

wx:demo().

in EShell.

[浮城] 2024-08-10 10:44:26

我只需要使用以下行包含 wx lib:

-include_lib("include/wx.hrl").

include/ 是我的项目中包含 wx 库的子目录。

I just needed to include the wx lib using the following line

-include_lib("include/wx.hrl").

include/ is a sub directory in my project containing the wx library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文