Search:

Type: Posts; User: dalek

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    3,442

    Or it could be that you have a crappy video card...

    Or it could be that you have a crappy video card at school and the CPU is waiting on the GPU to process the geometry...
  2. Replies
    7
    Views
    11,985

    I just use: Console.ReadLine(); Its...

    I just use:



    Console.ReadLine();


    Its exactly the same principle as in C++ etc.
  3. Replies
    2
    Views
    3,023

    Heh - how do you like that. Cheers :)

    Heh - how do you like that.

    Cheers :)
  4. Replies
    2
    Views
    3,023

    Friends in a template class

    Hi,

    I was just curious to see how I would implement a friend function in template class. It was purely as an excercise, as I have never really found a use for it in real life. Anyway, I came up...
  5. Replies
    1
    Views
    861

    Well, make sure you have included the header file...

    Well, make sure you have included the header file in your project that defines the functions that you are calling, and make sure that the lib file is in the correct path to be loaded by your app.
    ...
  6. Replies
    2
    Views
    2,193

    You need to look at the...

    You need to look at the System.Diagnostics.Process class..

    You can do something like the following to execute a command in the shell. But I don't think this is going to work for the pause command...
  7. Replies
    3
    Views
    1,868

    Sorry, might not have made myself clear ( I do...

    Sorry, might not have made myself clear ( I do ramble) - thanks for your response though..

    I know how to do this with a dereferencing binary predicate, I was wondering though if it is possible to...
  8. Replies
    3
    Views
    1,868

    vector and binary predicates

    Or rather not using binary predicates...

    I'm probably missing something really simple here, but I can't see what I am doing wrong.

    When using the STL vector template you can use the algorithm...
  9. Replies
    14
    Views
    2,434

    Its in project properties (right click on your...

    Its in project properties (right click on your project in the solution window and select properties) /Linker/System. You need to change the SubSystem field to either "Console(/SUBSYSTEM:CONSOLE)" or...
  10. Thread: dll question

    by dalek
    Replies
    5
    Views
    1,142

    Well, actually, if you have the .lib and .h...

    Well, actually, if you have the .lib and .h files you can statically link the DLL and the code will be embedded if you like into the .exe. But, I don't know that I understand what the OP is actually...
  11. Thread: C++ Newbie Help

    by dalek
    Replies
    4
    Views
    1,144

    I can't really help with question 1. However...

    I can't really help with question 1.

    However question 2 kind of depends on which download your talking about (there are a number of options on the Borland site). There are a number of downloads...
  12. Replies
    7
    Views
    1,623

    Well, C is a procedural language and C# is an...

    Well, C is a procedural language and C# is an Object Oriented language for a start. Other than that, they share some similarities in their syntax, but are really not that closely related.
  13. Replies
    2
    Views
    957

    Firstly, you should probably tell us what your...

    Firstly, you should probably tell us what your error is.

    But at a guess, I would say that you've forgotten the << operator before the endl in your code.


    cout << "Hello World! I'm " << nAge...
  14. Replies
    36
    Views
    4,368

    LOL. Yes - I too have had a look at this...

    LOL.


    Yes - I too have had a look at this and it is very tempting.

    I also think there is going to be a real case for writing commercial games in C# when the next version of windows comes...
  15. Replies
    1
    Views
    1,930

    Its probably not a good idea to alienate yourself...

    Its probably not a good idea to alienate yourself from the chinese in this fashion is it. I mean it is such a large market.
  16. Replies
    37
    Views
    7,058

    Interesting. :)

    Interesting. :)
  17. Replies
    36
    Views
    4,368

    Its an interesting choice for a game though -...

    Its an interesting choice for a game though - although its application in AI is obviously well known. I guess the point is, go with what you know ay :)

    Your just as likely to get a job in the game...
  18. Replies
    36
    Views
    4,368

    It is quite amazing really. It is like an object...

    It is quite amazing really. It is like an object oriented pascal. The language was written by the same guy who wrote/designed C#.

    But I have to say it appears to be really fast and the Borland...
  19. Replies
    17
    Views
    4,412

    I second these. Both very good.

    I second these. Both very good.
  20. Thread: class template

    by dalek
    Replies
    7
    Views
    2,085

    Thats right, and Visual C++ 6.0 definitely does...

    Thats right, and Visual C++ 6.0 definitely does not support having the implementations in a seperate file.
  21. Replies
    8
    Views
    3,435

    Dragging and dropping buttons has nothing to do...

    Dragging and dropping buttons has nothing to do with .NET. There are both .NET and non .NET development environments that provide this functionality.

    There are plenty of links here that have...
  22. Replies
    8
    Views
    2,615

    I'd say you've created a console application. The...

    I'd say you've created a console application. The compiler is expecting WinMain as the entry point not main. You can change this after creating the project. In VC++ 7 its under the Linker/subsystem...
  23. Replies
    1
    Views
    6,331

    From MSDN: You need to call TrackMouseEvent...

    From MSDN:


    You need to call TrackMouseEvent every time you want to recieve the WM_MOUSEHOVER message (if you have already recieved one). I am not actually sure why you don't get one after it has...
  24. Replies
    4
    Views
    12,983

    Thanks for that - I was wondering what was going...

    Thanks for that - I was wondering what was going on - particularly since I was getting WM_KEYUP messages.
  25. Replies
    12
    Views
    9,861

    Unfortunately its a little more difficult than...

    Unfortunately its a little more difficult than just adding a style (which is what I had hoped you could do initialy!). You need to include a windows manifest file as a resource and init the common...
Results 1 to 25 of 136
Page 1 of 6 1 2 3 4