Code: Select all
x = x + 1 --God dammit
Moderator: Coders of Rage
Code: Select all
x = x + 1 --God dammit
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote: <sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
Really? Using += works in VB. As far as the line-by-line error checking I can't stand that stupid ass feature. Tell me what I did wrong during compile.. or at least don't tell me in a pop-up message box.programmerinprogress wrote: also, in the version of VBA that i use at college, there isn't and increment operator, and that just annoys the hell out of me...
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
Though you could be completely right (I have not read it) maybe you should give it more of a chance? The first few chapters of a programming book are not supposed to be fully understood--a simple "hello world" application makes use of features that you probably wouldn't understand until later in the book anyway. My advice would be to stick with it some, as it may be better than you originally thought...I really really regret not asking round before buying this book it really is NOT VERY GOOD it does not explain why it tells you to do half the things it says nor does it explain half the code it gives you
yeah i am going to finish the book it is obviously better then nothing but im actually on section 10 and it still is awfulArce wrote:Though you could be completely right (I have not read it) maybe you should give it more of a chance? The first few chapters of a programming book are not supposed to be fully understood--a simple "hello world" application makes use of features that you probably wouldn't understand until later in the book anyway. My advice would be to stick with it some, as it may be better than you originally thought...I really really regret not asking round before buying this book it really is NOT VERY GOOD it does not explain why it tells you to do half the things it says nor does it explain half the code it gives you
I was actually thinking about buyingthe sams teach your self c++ in 21 days, but I read on the forums it's terrible so i didnt get it.deryni21 wrote:yeah i am going to finish the book it is obviously better then nothing but im actually on section 10 and it still is awfulArce wrote:Though you could be completely right (I have not read it) maybe you should give it more of a chance? The first few chapters of a programming book are not supposed to be fully understood--a simple "hello world" application makes use of features that you probably wouldn't understand until later in the book anyway. My advice would be to stick with it some, as it may be better than you originally thought...I really really regret not asking round before buying this book it really is NOT VERY GOOD it does not explain why it tells you to do half the things it says nor does it explain half the code it gives you
I havent read it, but peopel on this forum says it is pretty good.jtst1 wrote: I was actually thinking about buyingthe sams teach your self c++ in 21 days, but I read on the forums it's terrible so i didnt get it.
jtst1 wrote:yeah i am going to finish the book it is obviously better then nothing but im actually on section 10 and it still is awful
[b][color=#BF0000]MarauderIIC[/color][/b] wrote:"Never" is never true in programming.
Actually, that's my number one reccomendation for C++. It's a great, somtimes OVERLY thourough book. I learned from it successfully when I was 12.I was actually thinking about buyingthe sams teach your self c++ in 21 days, but I read on the forums it's terrible so i didnt get it.
Yeah, it is really thorough book, I've had it months and still haven't finished it (far too lazy).Arce wrote:Actually, that's my number one reccomendation for C++. It's a great, somtimes OVERLY thourough book. I learned from it successfully when I was 12.I was actually thinking about buyingthe sams teach your self c++ in 21 days, but I read on the forums it's terrible so i didnt get it.
It's great for an absolute beginner, or even an expiernced programmer wanting a reference book.
Code: Select all
Dim Objects(9) As New Object
Code: Select all
For index As Integer = 0 to 9
Objects(index) = New Object
Next index
Code: Select all
Object.Function(.member)