Search found 32 matches

by EdadTace
August 17th, 2012, 11:46 pm
Forum: Everything
Topic: Is there a way to do this on Visual Studio 11?
Replies: 2
Views: 1674

Re: Is there a way to do this on Visual Studio 11?

Usually newer versions of programs can load older saves files - don't know if that's how it's with visual studio, but have you tried just opening it?
by EdadTace
August 5th, 2012, 12:16 pm
Forum: Everything
Topic: Vectors are better than llinked lists I reckon
Replies: 3
Views: 1764

Re: Vectors are better than llinked lists I reckon

vectors take a bit more performance than arrays so if u don't need the dymanic resizing then i'd stick to arrays - it all comes down to what you want to do
by EdadTace
August 5th, 2012, 12:12 pm
Forum: Everything
Topic: functions and methods
Replies: 2
Views: 1618

Re: functions and methods

well a function in a class would be a member function what I've got this from is when I started learning Javascript and the teacher apologized for calling them method, and said he did so because he'd been teaching alot of C# laterly but yes I totally agree that it's absolutely doesn't matter - I was...
by EdadTace
August 4th, 2012, 5:41 pm
Forum: Everything
Topic: functions and methods
Replies: 2
Views: 1618

functions and methods

just a minor thing that really don't matter, but I would like to know so as far as I understand, functions and methods are the exact same thing, with the only exception that we have functions in C++ and methods in Java ( also called functions and methods in various other code languages, but that's n...
by EdadTace
August 4th, 2012, 4:19 pm
Forum: Everything
Topic: lesson 9
Replies: 3
Views: 2014

Re: lesson 9

I had problems with figuring out the DrawSquare function myself, back when I did it - can't remember what I did wrong, just that it gave me more trouble than expected xD
by EdadTace
August 4th, 2012, 2:27 pm
Forum: Everything
Topic: vector calling base class function ?
Replies: 8
Views: 3256

Re: vector calling base class function ?

ah great thanks chili!
i'll get my code fixed right away

edit.:

great! shit works now :D
by EdadTace
August 4th, 2012, 2:02 pm
Forum: Everything
Topic: vector calling base class function ?
Replies: 8
Views: 3256

Re: vector calling base class function ?

well then I'm glad it was a temporary project I got up quick xD

what's the issue then?
by EdadTace
August 4th, 2012, 1:18 pm
Forum: Everything
Topic: lesson 9
Replies: 3
Views: 2014

Re: lesson 9

I think your problem is that u're increasing y in the second while - all those increasements will be saved for next time it come to the second while loop and thus skipping it all you gotta do is add a new variable and set to to the value of y just before you enter the second loop :) something like w...
by EdadTace
August 4th, 2012, 11:37 am
Forum: Everything
Topic: Beginner Lesson 12 : Placing X bug
Replies: 6
Views: 2822

Re: Beginner Lesson 12 : Placing X bug

the other day i posted a problem I had with some code from a book - it was written exactly like in the book - exactly - but it wouldn't compile and I just couldn't figure it out after getting an answer and then finally getting further into the book i then realize it wasn't suppose to be compiled yet...
by EdadTace
August 4th, 2012, 11:34 am
Forum: Everything
Topic: vector calling base class function ?
Replies: 8
Views: 3256

Re: vector calling base class function ?

well then I give u the entire project - u won't be able to compile without download allegro first, but here's the code :D just in case u want to compile - all u need to do is download MSVC zip from http://www.allegro.cc/files/ and dumb the lib, include and bin folders into c:/allegro/ and it should ...