Search found 10 matches

by nickdobrinich
Sun Mar 31, 2013 10:02 pm
Forum: General Discussion
Topic: eC expressiveness
Replies: 1
Views: 42152

eC expressiveness

High marks for eC.
http://redmonk.com/dberkholz/2013/03/25 ... ssiveness/

But not as well known or popular.
http://redmonk.com/sogrady/2013/02/28/l ... ings-1-13/

Just two guys' opinions.
by nickdobrinich
Fri Mar 15, 2013 1:29 am
Forum: Compiler Errors
Topic: Ecere on Linux Mint 14
Replies: 4
Views: 35543

[SOLVED] Ecere on 64 bit Linux Mint 14.1 Mate

Yep, I used your sudo apt-get above and got my dependency ducks in a row. I stood no chance without that. I got a clean compile of Ecere on 64 bit Linux Mint 14.1 Mate on an AMD64. So not only are you cross platform, you are cross processor. The Ecere SDK came from the GitHub source. Compile time ab...
by nickdobrinich
Thu Mar 14, 2013 7:28 pm
Forum: Compiler Errors
Topic: Ecere on Linux Mint 14
Replies: 4
Views: 35543

Re: Ecere on Linux Mint 14

> " I can get the Ecere SDK from the Mint repo and it compiles and runs perfectly." > Do you mean the 'Ecere' git repo? No, I got this from Mint's 32 bit software manager. Sorry, I don't remember which version, 0.44.01 I think. > "With the same machine running 64 bit Mint, Ecere is no...
by nickdobrinich
Thu Mar 14, 2013 11:22 am
Forum: Compiler Errors
Topic: Ecere on Linux Mint 14
Replies: 4
Views: 35543

Ecere on Linux Mint 14

I am having some trouble understanding Ecere running on 64 bit hardware with 64 bit Linuxes. For instance, on a 64 bit machine running 32 bit Linux Mint 14 Mate, I can get the Ecere SDK from the Mint repo and it compiles and runs perfectly. The TTF fonts were already included. With the same machine ...
by nickdobrinich
Thu Mar 07, 2013 1:14 am
Forum: Compiler Errors
Topic: Ecere under Slacko 5.5 Puppy Linux
Replies: 2
Views: 29174

Re: Ecere under Slacko 5.5 Puppy Linux

[EDIT] Confirmed, the culprit is the JWM window manager. Switching to Openbox fixed it. Yes, I believe you are correct about the windows manager being the source of this problem. In this case it is Joe's Window Manager JWM. I've had other quirks with it and usually switch to Openbox if available. I ...
by nickdobrinich
Wed Mar 06, 2013 9:28 pm
Forum: Compiler Errors
Topic: Ecere under Slacko 5.5 Puppy Linux
Replies: 2
Views: 29174

Ecere under Slacko 5.5 Puppy Linux

Ecere compile notes for Puppy Linux Slacko 5.5 (released 3/6/2013) This is the current Puppy flagship distro. This version with the 3.4.17-PAE kernel runs like lightning in a bottle. ISO available here: http://01micko.com/slacko5.5/ You will also need the devx_slacko_5.5.sfs to compile Ecere. I coul...
by nickdobrinich
Wed Mar 06, 2013 2:26 am
Forum: Compiler Errors
Topic: Troubles with Clock sample
Replies: 3
Views: 31469

[SOLVED] Re: Troubles with Clock sample

Well as it turns out, I had an old Unix shell suite I had loaded several years ago on the windows side. Long forgotten once I installed Cygwin, it was hanging out hidden at the far end of my path. So now Ecere runs everything cross platform, just as advertised. Your Ecere Global settings above are c...
by nickdobrinich
Sun Mar 03, 2013 2:26 am
Forum: Compiler Errors
Topic: Troubles with Clock sample
Replies: 3
Views: 31469

Troubles with Clock sample

Gentlemen, I have recently rediscovered this old problem on a new Win XP machine. When trying to compile the clock project I get: Couldn't open obj/debug.win32\clock.sym And missing sym files with every other app as well. I've tried all the suggested fixes in this thread. MS SDK, environment path se...
by nickdobrinich
Sat Mar 02, 2013 12:17 pm
Forum: GUI Toolkit & 2D Graphics
Topic: Dropbox Sort
Replies: 4
Views: 37481

Re: Dropbox Sort

Ok, I used your code in the 1st example. Should have paid more attention to the dropbox being initialized in the Form() constructor. However, the initial dropdown list is not sorted after the AddString() calls UNTIL the button is clicked to add the newest element. Tested on both Linux and Win XP. Th...
by nickdobrinich
Fri Mar 01, 2013 5:15 pm
Forum: GUI Toolkit & 2D Graphics
Topic: Dropbox Sort
Replies: 4
Views: 37481

Re: Dropbox Sort

Jerome,
Merci for your suggested code.
As you stated, dropBox1.Sort(null, 1) worked.
I found that I did need this sorting step because when I AddString()ed the out of order strings into the drop box, they were not automatically sorted.
Thx.