Search found 15 matches

by clau007
August 5th, 2013, 8:19 pm
Forum: Everything
Topic: New Tutorial Update
Replies: 29
Views: 10545

Re: New Tutorial Update

Yeah Chili, out there have been a lot of people doing harakiri just for ya icy heart! ;)

Great news, BTW!
by clau007
August 5th, 2013, 11:14 am
Forum: Everything
Topic: Visual Studio 2013
Replies: 19
Views: 7517

Re: Visual Studio 2013

I'm using It since I moved from Win7 to Win8 and It's pretty cool! I like the sweetie dark theme ;)

http://imageshack.us/f/713/nyys.png/

Never had compiling problems, though.
by clau007
July 31st, 2013, 8:10 pm
Forum: Everything
Topic: suddenly it cant find the exe file while i try to build it.
Replies: 4
Views: 1969

Re: suddenly it cant find the exe file while i try to build

Probably the process of your application was, somehow, still running when you tried to build a new solution. Therefore, the compiler was unable to replace the old exe.

That's all I can guess atm :) ...
by clau007
July 30th, 2013, 9:24 pm
Forum: Everything
Topic: Hello Everyone
Replies: 6
Views: 2876

Re: Hello Everyone

Welcome back to the serious stuff, then! Get back into C++ and leave Batch and Basic alone! lol
by clau007
July 30th, 2013, 9:12 pm
Forum: Everything
Topic: Memory limit
Replies: 3
Views: 1707

Re: Memory limit

That's because you're trying to allocate the array on the Stack, which is by default limited to 1 MB by the Visual C++ compiler. If you think about it 257000 pixels * 4 bytes (which is the size of a single D3DCOLOR object) = 1028000 bytes, about 1004 kB (the other 20 kB are probably occupied by othe...