Search found 105 matches

by redj
Mon Aug 18, 2014 9:44 am
Forum: Introductions
Topic: hi all
Replies: 10
Views: 82535

Re: hi all

Welcome to our little community pber! :D

-redj

PS: Yes, you must code awesome stuff with Ecere SDK and eC! ;-)
by redj
Mon Aug 18, 2014 9:40 am
Forum: General Help
Topic: How to fix the issue after DirectX's taken out?
Replies: 2
Views: 25721

Re: How to fix the issue after DirectX's taken out?

hey Sam,

Installing the latest release should fix it.

Download from http://ecere.org/install/windows

-redj
by redj
Mon Dec 16, 2013 11:46 pm
Forum: General Help
Topic: Visualize 2D and 3D graphics
Replies: 5
Views: 31549

Re: Visualize 2D and 3D graphics

Hi Jonas,

You have to compile to see the results of drawing / graphics.

It would be nice to see support for more and more "live" code and interpretation but that's a lot of work! We need contributors.

-redj
by redj
Tue Aug 27, 2013 4:19 am
Forum: GUI Toolkit & 2D Graphics
Topic: [Solved]Unresolved identifier
Replies: 2
Views: 33671

Re: Unresolved identifier

hey samsam598, Use NotifyKeyDown, which you will use to do something in the event of a keystroke when using any GUI control/widget that implements NotifyKeyDown, instead of the OnKeyDown, which is something you would use to implement the specifics of a custom GUI control/widget. The Notify* methods ...
by redj
Mon May 06, 2013 6:49 am
Forum: Introductions
Topic: Hello from England
Replies: 1
Views: 33817

Re: Hello from England

Welcome errare!!! I don't know why this post has been unanswered for so long, sorry about that. It bugged me that nobody has answered you so I wanted to really welcome you to the Ecere community. Did you have a chance to join us on IRC (#ecere on irc.freenode.net) (there's a link on the website if y...
by redj
Mon May 06, 2013 6:45 am
Forum: Introductions
Topic: Hello from México! jonaspm
Replies: 2
Views: 36070

Re: Hello from México! jonaspm

Welcome jonaspm! Bienvenidos! I'm very curious to know what tests you have done or will do with Ecere SDK and I hope you enjoy your experience with it. Feel free to join us on IRC (#ecere on irc.freenode.net) (there's a link on the website if you need a web-based client) to say hi or to ask question...
by redj
Sun Dec 16, 2012 2:41 am
Forum: System Library
Topic: String Manipulation
Replies: 2
Views: 28658

Re: String Manipulation

here's something: sdk/extras/stringTools.ec that works rather nicely: char * s = SingleFuncCharsCopy(" my string ", isspace, both, ' '); also: char * s = SingleCharsCopy(" my string ", " \t\n\r!@#$%^&*()-=+{}[]|", both, ' '); list of new functions: void SingleChars(...
by redj
Sat Dec 15, 2012 7:56 pm
Forum: System Library
Topic: String Manipulation
Replies: 2
Views: 28658

Re: String Manipulation

What's the best method to get rid of extra spaces in a string?

Please show method(s) to remove double, triple and so on space by a single space.
Including solution(s) that handle all space characters including tab or alternatively only actual spaces.

-redj
by redj
Sat Dec 15, 2012 7:52 pm
Forum: System Library
Topic: String Manipulation
Replies: 2
Views: 28658

String Manipulation

Hi all,

Let's ask and answer questions about string manipulation in eC/EcereSDK here.

-redj
by redj
Mon Oct 22, 2012 2:24 pm
Forum: Platform Support
Topic: 64 bit support
Replies: 15
Views: 135325

Re: 64 bit support

In fact pthread and dl should probably be there, they must somehow just be picked up automatically in 32 bit or something... You'll also notice they are already in the Release config, and in Makefile.ecereCOM (Should probably be moved to Common ). ecereCOM has Release, Debug and Static project conf...