Search found 21 matches

by fedor_bel
Thu Apr 08, 2010 4:22 am
Forum: eC Language
Topic: XMLParser
Replies: 1
Views: 37011

XMLParser

Dear Jerome, Is the XMLParser in the extras section complete? It seem to be a work in progress. I have found some unclear moments in it for me when trying to use it and debugging through it. It calls ProcessKeyword for opening and closing tags, sending just the tag name as a parameter. What is a pos...
by fedor_bel
Thu Apr 08, 2010 4:00 am
Forum: Networking
Topic: Networking Objects
Replies: 6
Views: 40746

Re: Networking Objects

Hi, Jerome, Sure, the ecere project built very well and I happen to have some comparison tools. I dont have much time, because I am busy at my main job, but have much interest, it is a pleasure to take part in such a nice project. Maybe we could do the communication in some separate forum thread, th...
by fedor_bel
Wed Apr 07, 2010 10:07 am
Forum: Networking
Topic: Networking Objects
Replies: 6
Views: 40746

Re: Networking Objects

Dear Jerome,
Thank you for the files. I am wondering now how to use them? I have always been interested in doing some in-depth groung level programming, especially in such a nice project, as this!!!
I have access to Mantis with Access Level reporter.
by fedor_bel
Mon Apr 05, 2010 5:43 pm
Forum: Networking
Topic: Networking Objects
Replies: 6
Views: 40746

Re: Networking Objects

Dear Jerome, I am trying to use the Socket and the Service class. They work great! But still I have got a question: how to make the service to stop listening without shutting down all already connected sockets. I have a listening service, once a connection is established, I create a socket, which is...
by fedor_bel
Mon Apr 05, 2010 5:31 pm
Forum: eC Language
Topic: Container syntax
Replies: 5
Views: 18791

Re: Container syntax

Dear Jerome, Is it possible to beautifully iterate through the container elements backwards? Like, this is great Array<int> array { [ 1, 2, 3 ] }; for(i : array; i > 1) PrintLn(i); But, what if I want to iterate from the last element to the first? The same here Iterator<int> it { a }; while(it.Next(...
by fedor_bel
Sun Apr 04, 2010 8:13 am
Forum: eC Language
Topic: Exception Handling
Replies: 2
Views: 12284

Re: Exception Handling

Dear Jerome, Don't worry. I actually did not really expect that you can bring up exception handling just out of the pocket. I am not a kid and see that in the world without automatic garbage collection and the stack structure and rules present there can be no such exception handling as in Java. I am...
by fedor_bel
Sun Apr 04, 2010 8:04 am
Forum: eC Language
Topic: Strings in eC
Replies: 5
Views: 36873

Re: Strings in eC

Dear Jerome, Thank you for the sincere answer. That clarifies things a bit and brings me down to earth. Ok, untill that perfect string class is available I will have to write some simple utility class and use it together with the other memory and string handling advices you gave me. That should not ...
by fedor_bel
Sat Apr 03, 2010 4:08 pm
Forum: eC Language
Topic: Exception Handling
Replies: 2
Views: 12284

Exception Handling

Hello,

Does Ecere provide some exception handling mechanism?
by fedor_bel
Sat Apr 03, 2010 2:10 pm
Forum: eC Language
Topic: Strings in eC
Replies: 5
Views: 36873

Strings in eC

Dear Jerome, Thank you very much for your explanations. I know the question I asked was hard to answer, but the sum up you gave was pretty clear. Now I have to learn to live (i.e. to program) with this new reality. It is new to me, because in the recent years I have been mainly a Java programmer and...
by fedor_bel
Sat Apr 03, 2010 12:41 pm
Forum: Compiler Errors
Topic: Linker Error: cannot find -lecere
Replies: 2
Views: 27415

Re: Linker Error: cannot find -lecere

Thank you, Jerome.
That helped! Now It is very easy to take ecere along with me.