Search:

Type: Posts; User: zordon

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,377

    Building cppunit

    Hi, I want to test my code using cppunit. Looking inside the home folder of cppunit I don't see any object code. Does anybody whether I would need to build it or not? If I do need to build it, how...
  2. Programming procedurally means everything is...

    Programming procedurally means everything is based around procedures. Procedures are programs within programs. They can thus be run inside program themselves! You can also run them more then once. In...
  3. Replies
    4
    Views
    1,535

    I see them used in all my Microsoft's examples on...

    I see them used in all my Microsoft's examples on Windows gui's using the Win Api. And they are always generated by Visual Studio in their window application templates. Well, thank you for the...
  4. Replies
    12
    Views
    1,433

    What phantom is saying here is just a bit...

    What phantom is saying here is just a bit aggrandized. With that many years of programming experience, I am sure he is quite knowledge about most aspects of C++, even the nuances. He's only...
  5. Replies
    4
    Views
    1,535

    BEGIN and END in Rc File

    Within the resource definition of the resource file, i'm puzzled as to what Begin and End do? Can someone please explain their existence and purpose? Thanks.
  6. Replies
    6
    Views
    1,418

    Okay, thanks everyone for the replies. I...

    Okay, thanks everyone for the replies. I appreciate it.
  7. Thread: Notepad App

    by zordon
    Replies
    2
    Views
    840

    Notepad App

    Does anybody know how to create an windows textarea for letting user type. One that is similar to notepad or any other basic text editor. Thanks.
  8. Yes, when you don't have any arguments to a...

    Yes, when you don't have any arguments to a constructor, the parens are optional and are implicitly stated.
  9. Replies
    2
    Views
    1,101

    Well, you probably don't want to return the value...

    Well, you probably don't want to return the value returned from DialogBox to main. From what I think, when you return from main you end the program. The return from main is the exit point of the...
  10. Replies
    6
    Views
    1,418

    Need help Creating Basic Window

    I need help with the following. When executed know window is visible. Can someone help me, please? It is based on a tutorial from msdn. I tried to give more structure by placing some of the code into...
  11. I suggest you read up on arrays and loops.These...

    I suggest you read up on arrays and loops.These seems like exercises with arrays and loops. Maybe re-read chapters on looping in your book if you haven't already.
  12. You are refering to what is know as exception...

    You are refering to what is know as exception handeling. This paticular mechanism, called try-catch, is found in many popular languages. It is made up of the two blocks, the try blocks and catch...
  13. The errors you are recieving are from the...

    The errors you are recieving are from the redelaration of variables everytime you use a variable. You only need to declare a variable once. Afterwords, you can refer to it without using its type like...
Results 1 to 13 of 13