Search:

Type: Posts; User: endo

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds; generated 13 minute(s) ago.

  1. Thread: If_Else Problem

    by endo
    Replies
    4
    Views
    998

    #include using namespace std; int...

    #include <iostream>
    using namespace std;

    int main()
    {
    int A, B;

    A = 6;
    B = 7;
  2. Thread: Beginners' Work

    by endo
    Replies
    27
    Views
    2,347

    try sticking with the Animal class initially. ...

    try sticking with the Animal class initially. Look at constructors, destructors, member functions, etc. Then move on to inheritance and playing with the Bird class. Your Animal class should look...
  3. Thread: Beginners' Work

    by endo
    Replies
    27
    Views
    2,347

    ok, take this example one step at a time. Look...

    ok, take this example one step at a time. Look at class definitions, and try the first part about creating an Animal class. eat( ) isn't a standard C++ function, it is something you will have to...
  4. Thread: Beginners' Work

    by endo
    Replies
    27
    Views
    2,347

    Desc is probably a description, the animals name...

    Desc is probably a description, the animals name if you like. This is an inheritance question so there is lots of room to expand and practice with classes.



    class Animal
    {
    //animal...
  5. Thread: Beginners' Work

    by endo
    Replies
    27
    Views
    2,347

    Well it depends how much you've covered so far...

    Well it depends how much you've covered so far but I saw the question below posted on here a few months back and thought it looked quite handy for rekindling my interest in C++. It might not be what...
  6. Thread: Depressed :(

    by endo
    Replies
    10
    Views
    2,429

    Depressed :(

    I'm feeling sad. I graduated and never found that elusive entry-level programming job, they seem to be so rare in the UK. I have been stuck in a job for approaching 3 years and although I'm moving...
  7. Replies
    5
    Views
    9,389

    could be many things, I've used something similar...

    could be many things, I've used something similar to this before:




    enum STATUS
    {
    OK,
    NOTOK
    };
  8. Replies
    8
    Views
    2,272

    there is only 1 computer with a wireless belkin...

    there is only 1 computer with a wireless belkin adaptor. the router/modem is made by belkin as well. I'll take a look at the firmware upgrade possibility, thanks
  9. Replies
    8
    Views
    2,272

    sure I can take some screenies, any idea what...

    sure I can take some screenies, any idea what kinda info I might need to look at? Here's the first config screen I see anyways...

    thanks again for the help :)
  10. Replies
    8
    Views
    2,272

    XP pro. Where would I check for RRAS and ICS...

    XP pro. Where would I check for RRAS and ICS running? I'm pretty sure ICS isn't but have never heard of RRAS...

    And the pc isn't plugged into the router at all, its a wireless router/modem about...
  11. Replies
    11
    Views
    2,970

    hehe, good luck trying to screw those nails in! ...

    hehe, good luck trying to screw those nails in! :p
  12. Replies
    4
    Views
    1,347

    for win32 tutorials this sit eis one of the best...

    for win32 tutorials this sit eis one of the best I've found.

    http://www.functionx.com/win32/
  13. Replies
    8
    Views
    2,272

    Thanks for replying. Its a very simple network...

    Thanks for replying.

    Its a very simple network - one modem/router downstairs plugged directly into main phone line and a single pc upstairs. Not really sure what else might be relevant...
  14. Replies
    8
    Views
    2,272

    Wireles network prob - master browser???

    I have recently upgraded to a Belkin wireless modem and router and am having problems with the connection. It has periods when it keeps dropping out every 2 or 3 minutes, and other times when it...
  15. Thread: [STAThread]

    by endo
    Replies
    1
    Views
    2,947

    [STAThread]

    What does [STAThread] do above main( ) in C#? I found it hard to understand the stuff found on google but it seems to be something that applies itself to main( ) and is to do with threading??

    Is...
  16. Thread: Tictactoe problem

    by endo
    Replies
    3
    Views
    1,810

    ok I've narrowed it down to the fact that in...

    ok I've narrowed it down to the fact that in OnLButtonDown I will receive the device coordinates which may vary depending on window size, etc. How can I convert these to logical coordinates inside a...
  17. Thread: Tictactoe problem

    by endo
    Replies
    3
    Views
    1,810

    Well graphical part itself isn't to hard, just a...

    Well graphical part itself isn't to hard, just a few lines inside rectangles. I just cant see why the window is drawn 400x400, I set the mapping mode to 300x300, yet the clicking only seems to be...
  18. Replies
    10
    Views
    1,253

    i seem to recall there is a setw( ) function...

    i seem to recall there is a setw( ) function lying around somewhere, that might be handy but I dont remember a whole lot about it....
  19. Thread: Tictactoe problem

    by endo
    Replies
    3
    Views
    1,810

    Tictactoe problem

    I have just started with MFC again after being away from programming for a bit. And I've encountered exactly the same problem I had the first time I tried to write tictactoe!! The area that can be...
  20. Replies
    6
    Views
    1,773

    Is this likely to be the problem, my visual c#...

    Is this likely to be the problem, my visual c# may be a little out of date - i been away from coding for a bit :(

    .net framework 1.0 version 1.0.3705
  21. Replies
    6
    Views
    1,773

    why does my compiler not recognise Console.Clear...

    why does my compiler not recognise Console.Clear or Console.ReadKey??
  22. Replies
    6
    Views
    1,773

    Thanks for that, I'll try i tlater when I get a...

    Thanks for that, I'll try i tlater when I get a chance. Must've been blind not to Clear( ) in the class description! :confused:
  23. Replies
    8
    Views
    1,474

    Thats great, i needed a homework type question...

    Thats great, i needed a homework type question like that to help me learn C#! That'll be ideal, thanks :)
  24. Replies
    15
    Views
    6,510

    probably not, you dont have a size variable in...

    probably not, you dont have a size variable in Planet - its planetsize. :D
  25. Replies
    6
    Views
    1,773

    Another beginner question

    Help! I'm new to C# and keep getting stuck on things which should be pretty simple :(

    Can anyone tell me why this loop repeats the output found in the menu( ) 3 times when a number is entered?
    ...
Results 1 to 25 of 498
Page 1 of 20 1 2 3 4