Search found 609 matches

by jerome
Tue Dec 01, 2015 8:16 pm
Forum: GUI Toolkit & 2D Graphics
Topic: Cell borders in ListBox
Replies: 6
Views: 61993

Re: Cell borders in ListBox

Hi shakeshuck, Welcome to the Ecere community! F1 in the IDE/Documentor would be the place to look for what the properties do, in addition to hopefully tooltips in the IDE in the future as well, but as you may already have noticed, the documentation is still lacking quite a bit. The actual Ecere sou...
by jerome
Tue Nov 03, 2015 4:00 pm
Forum: General Discussion
Topic: Need Help To How Installing First Time Ecere
Replies: 1
Views: 38938

Re: Need Help To How Installing First Time Ecere

Dear Lestroso, I apologize for answering so late, somehow I did not receive a notification for this post. I hope you are still interested in using Ecere. In the future if I fail to reply promptly please e-mail me directly at jerome@ecere.com. We do have an installer for Windows, you will find it on ...
by jerome
Tue Aug 11, 2015 11:09 pm
Forum: 欢迎使用中文讨论
Topic: API 参考手册打开问题
Replies: 8
Views: 110646

Re: API 参考手册打开问题

Hi Robin,

I don't understand the problem.

In your previous message I thought you said things were working fine?

Does closing and re-starting the IDE solve the problem when it happens?

Cheers,

Jerome
by jerome
Tue Jul 28, 2015 8:30 pm
Forum: 欢迎使用中文讨论
Topic: 新建工程后遇到的问题
Replies: 4
Views: 66982

Re: 新建工程后遇到的问题

I really suggest you install using the Windows installer first.
It should set up the global settings for you automatically.

https://launchpad.net/ecere/trunk/0.44. ... -win32.exe
by jerome
Tue Jul 28, 2015 8:29 pm
Forum: 欢迎使用中文讨论
Topic: API 参考手册打开问题
Replies: 8
Views: 110646

Re: API 参考手册打开问题

F1 in the IDE (Documentor) is our own documentation system. It works by directly loading the documentation from eC libraries. At a later point, it will support exporting the API in HTML and we could also produce .chm files for this. But since right now the documentation is somewhat limited, we have ...
by jerome
Tue Jul 28, 2015 8:10 pm
Forum: 欢迎使用中文讨论
Topic: 希望有个中文版的入门教程
Replies: 5
Views: 80225

Re: 希望有个中文版的入门教程

Sure, feel free to share.

Bu yong xie.

Jerome
by jerome
Tue Jul 28, 2015 11:27 am
Forum: 欢迎使用中文讨论
Topic: 希望有个中文版的入门教程
Replies: 5
Views: 80225

Re: 希望有个中文版的入门教程

See attached this beginning of the Ecere Tao of Programming in Chinese that was contributed before. Further contributions would be most welcomed. Even the English version is far from finished yet... Hopefully, the Ecere Chinese Community can grow, and include more active members who speak good Engli...
by jerome
Tue Jul 28, 2015 11:17 am
Forum: 欢迎使用中文讨论
Topic: 新建工程后遇到的问题
Replies: 4
Views: 66982

Re: 新建工程后遇到的问题

Hi there, Again, forgive me for replying in English only :) I have seen a similar problem before, however I am not sure we ever figured out the cause of the problem. One thing to look for is whether the right mingw32-make.exe is being used. It should be (mingw32-make --version): GNU Make 3.82.90 Bui...
by jerome
Tue Jul 28, 2015 11:04 am
Forum: 欢迎使用中文讨论
Topic: API 参考手册打开问题
Replies: 8
Views: 110646

Re: API 参考手册打开问题

Hi there, I am in Beijing right now and everything Google including Translate is blocked. Forgive me for replying in English only :) Which version of Ecere are you running? Did you compile your own, or did you run the latest installer? When I select 'F1' I see the 'Module ecere' page by default. I a...
by jerome
Wed Mar 25, 2015 8:26 am
Forum: eC Language
Topic: some boolean data type errors
Replies: 1
Views: 29108

Re: some boolean data type errors

Hi Jonas, At the moment it is not possible to initialize default values for properties together with their declaration within a class. However, you can do it separately, e.g.: class Form1 : Window { /*WINDOW properties stuff...*/ bool neg1, neg2; neg1 = false, neg2 = false; Additionally, it is not n...