September 21st, 2012 06:10 PM
The following is also worth mentioning. It seems that many really like it and many really do not. People should read the description of its purpose before purcahsing.
Programming: Principles and...
October 17th, 2011 01:56 AM
FindWindow does not always work; there are many reasons for why it would not work. Which proves that the logic is faulty if the logic states that something should never be used if it has any...
October 16th, 2011 11:27 AM
I guess that is why I stopped participating in CodeGuru. Members have a tendency to insist that something is true without regard for truth.
The truth is that it can work; just because it won't...
October 15th, 2011 01:45 PM
This thread is nearly 8 years old, but saying "EnumWindows is not guaranteed to work" is not the same thing as saying that it will never work. If the main window is the only window for the...
February 27th, 2009 10:14 PM
Thank you for the instructions. It seems simple and obvious and I don't remember why it did not work for me; it has been a while. I probably did not expect to have to compile (assemble) it. Now that...
February 10th, 2009 12:33 AM
How are you doing?
I downloaded the x3dOS.zip file but I did not understand how to create a bootable floppy. I understand that it is still being developed and you are not ready for it to be used...
January 14th, 2009 02:41 PM
I know that this latest couple of replies are nearly a month old but I have been trying since September to sign in to CodeGuru and I was unsuccessful until now.
Note that this was the first...
September 12th, 2008 10:04 AM
Thank you for trying to keep this discussion on-topic. Note that I am the "OP" and I am the person that made the comment you are quoting.
Note that I did not ask for individual opinion; I asked...
September 12th, 2008 07:16 AM
Perhaps you are thinking of Basic, which Pascal was designed to replace.
September 12th, 2008 07:13 AM
See Pascal (programming language) - Wikipedia. Pascal is an implementation of structured programming methodolgy. Pascal has pointers and does have functions that return values. Programming "back...
September 12th, 2008 05:53 AM
Many years before C even existed, it was very common for assembler programmers to pass addresses (pointers) to data instead of the data. It is extremely basic to the way that processor instructions...
September 12th, 2008 04:58 AM
A function's inability to modify parameters seems inefficient and cumbersome. The solution being suggested elsewhere is to return the created or modified data, however JScript (the language being...
September 12th, 2008 12:50 AM
This is a theoretical question about languages and development theoretically.
What do software development theorists say about functions that modify the values of parameters passed to them? Is it...