Search:

Type: Posts; User: Brian_of_Bozeat

Search: Search took 0.01 seconds.

  1. Thank you, that's a big help. I have just scanned...

    Thank you, that's a big help. I have just scanned a bit about QT on wikipedia and it sounds like that will be just the ticket. Cheers!
  2. Jim - you are a star! OK, so here's what...

    Jim - you are a star!

    OK, so here's what happened. I started a new win32 project (dialogue based, if that makes any difference) then deleted everything except the main source file. I then deleted...
  3. Thanks, I'm sure your post is correct, but how...

    Thanks, I'm sure your post is correct, but how does one "stick to standard C++ and Portable libraries & set up the environment correctly"? its a chicken and egg situation for me as I'm trying to get...
  4. Thanks again Jim.A First Windows Application -...

    Thanks again Jim.A First Windows Application - Cprogramming.com

    is the tutorial

    Error messages: (after commenting out the stdafx.h line)
    ...
  5. Thanks Jim for your help, Looks like I'm shafted...

    Thanks Jim for your help, Looks like I'm shafted - I'm pretty frustrated right now, I set aside an afternoon to do this tutorial, to be honest I'm bored with making console applications and I want to...
  6. Yes indeed, my apologies: #include...

    Yes indeed, my apologies:


    #include "stdafx.h" is the line it chokes on. I copied and pasted it this time.
  7. Oh, sorry - I'm using code blocks 10.05 with the...

    Oh, sorry - I'm using code blocks 10.05 with the default GNU GCC compiler.
  8. First Windows Application Tutorial. stdfx.h: No such file or directory

    Hi, I'm trying to follow rods First Windows Application Tutorial. (from the tuts section on this site)

    but I get an error

    error: stdfx.h: No such file or directory

    I also have a warning...
  9. Dear Shmamy, Many apologies for my earlier...

    Dear Shmamy,

    Many apologies for my earlier erroneous suggestions to the problem with your program. By way of an apology for the confusion I have spent some time debugging your program.



    The...
  10. Thank you for your help Elysia: I stand...

    Thank you for your help Elysia:

    I stand corrected.
  11. You are right whiteflags - my Error. Sorry...

    You are right whiteflags - my Error.
    Sorry shmamy, I was suggesting using pass by Value... My Apologies.
    You were using pass by reference, so - I have included here a stripped out version of that...
  12. Replies
    23
    Views
    2,544

    I'm not sure that I understand what you are...

    I'm not sure that I understand what you are trying to do now. Please explain clearly what you are trying to do and why and I will try to help.
    (it may be that you need to watch more of bucky's...
  13. void GetRoomNumb (int& RoomNumb) { std ::...

    void GetRoomNumb (int& RoomNumb)
    {
    std :: cout << "Enter number of rooms: ";
    std :: cin >> RoomNumb;
    }
  14. Replies
    23
    Views
    2,544

    Also - have a look at this tutorial and numbers...

    Also - have a look at this tutorial and numbers 10 and 11 that follow it. They will help you to understand what I was trying to tell you. Best of luck.

    C++ - 9 - Functions
  15. Replies
    23
    Views
    2,544

    chinesebarbie - your getinput function still has...

    chinesebarbie - your getinput function still has no return value as it is a void function. Please re-read the code I wrote earlier and try to understand how values are passed in it before modifying...
  16. Sorry, in a rush - but at first glance - Void...

    Sorry, in a rush - but at first glance -

    Void GetRoomNumb doesnt return anything, perhaps this should return the room number (just a guess).

    Roomtiles is a double but you seem to have tried to...
  17. Replies
    23
    Views
    2,544

    It would be more helpful if you linked to a...

    It would be more helpful if you linked to a tutorial? - Just putting people down for not following YOUR rules does not help. Ironically, your English is appalling.
  18. Replies
    23
    Views
    2,544

    Ok, so I'm going to try and help you get started,...

    Ok, so I'm going to try and help you get started, try and read through this simplified version of your code and see if you can understand how the function call works.

    Best of luck (I'm pretty new...
  19. Thanks for taking the time to help me, Quote...

    Thanks for taking the time to help me,

    Quote from Book:

    C++0x supports both weak and strong enum (enumerated types). Use of enum
    class (see the following example) creates a strongly typed set...
  20. have you searched you tube for : Bucky's C++...

    have you searched you tube for : Bucky's C++ Programming Tutorials?
  21. Thanks for your help, I ticked the box in the...

    Thanks for your help, I ticked the box in the global compiler settings in codeblocks that said:


    Have G++ Follow the coming C++ ISO C++ language standard [-std=c++0x]

    Is that all I needed to...
  22. Replies
    7
    Views
    1,056

    The problem is its not a program - try this: ...

    The problem is its not a program - try this:

    (I spent ages in a similar spot just last week)



    #include <iostream>

    using namespace std;
  23. scoped enums only available with -std=c++0x or std=gnu++0x

    Hi - First post, so please be gentle with me if I breached any rules or anything... Thanks.

    I am reading C++ Without Fear (second edition). Near the end of chapter 10 I am tasked with updating a...
Results 1 to 23 of 23