Welcome to our little community pber!
-redj
PS: Yes, you must code awesome stuff with Ecere SDK and eC!
Search found 105 matches
- Mon Aug 18, 2014 9:44 am
- Forum: Introductions
- Topic: hi all
- Replies: 10
- Views: 140498
- Mon Aug 18, 2014 9:40 am
- Forum: General Help
- Topic: How to fix the issue after DirectX's taken out?
- Replies: 2
- Views: 48843
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
Installing the latest release should fix it.
Download from http://ecere.org/install/windows
-redj
- Mon Dec 16, 2013 11:46 pm
- Forum: General Help
- Topic: Visualize 2D and 3D graphics
- Replies: 5
- Views: 58872
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
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
- Tue Aug 27, 2013 4:19 am
- Forum: GUI Toolkit & 2D Graphics
- Topic: [Solved]Unresolved identifier
- Replies: 2
- Views: 54915
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 ...
- Mon May 06, 2013 6:49 am
- Forum: Introductions
- Topic: Hello from England
- Replies: 1
- Views: 56883
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...
- Mon May 06, 2013 6:45 am
- Forum: Introductions
- Topic: Hello from México! jonaspm
- Replies: 2
- Views: 63900
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...
- Sun Dec 16, 2012 2:41 am
- Forum: System Library
- Topic: String Manipulation
- Replies: 2
- Views: 50829
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(...
- Sat Dec 15, 2012 7:56 pm
- Forum: System Library
- Topic: String Manipulation
- Replies: 2
- Views: 50829
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
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
- Sat Dec 15, 2012 7:52 pm
- Forum: System Library
- Topic: String Manipulation
- Replies: 2
- Views: 50829
String Manipulation
Hi all,
Let's ask and answer questions about string manipulation in eC/EcereSDK here.
-redj
Let's ask and answer questions about string manipulation in eC/EcereSDK here.
-redj
- Mon Oct 22, 2012 2:24 pm
- Forum: Platform Support
- Topic: 64 bit support
- Replies: 15
- Views: 236633
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...