Search found 212 matches

by samsam598
Wed Aug 17, 2011 9:03 pm
Forum: eC Language
Topic: [Solved]Bug in the example?
Replies: 11
Views: 37493

Re: Bug in the example?

Hi Joreme, Thanks for your prompt response,appreciated. Another issue that I encountered is the ide will crash when I try to assign hot key to a button using the designer.Drag and place a button on a form,rename the button text to "OK",select 'hotkey',then pull down the arrow of the 'code'...
by samsam598
Wed Aug 17, 2011 7:55 pm
Forum: eC Language
Topic: [Solved]Bug in the example?
Replies: 11
Views: 37493

[Solved]Bug in the example?

Greetings! Below example is from wiki http://www.ecere.com/wiki/index.php?title=Utilities Linked List Example import "ecere" class MyItem : struct { MyItem prev, next; int value; } void Test() { MyItem i; List list { }; list.Add(MyItem { value = 5 }); for(i = list.first; i; i = i.next) pri...