Search:

Type: Posts; User: Phylter

Search: Search took 0.01 seconds.

  1. Replies
    17
    Views
    2,992

    I too agree that Mingw Studio is great. You...

    I too agree that Mingw Studio is great. You should try it out.

    Once Dev-C++ 5 gets out of beta it too will be excellent IMO.
  2. Replies
    8
    Views
    1,489

    I've read a little about it. I just don't do...

    I've read a little about it. I just don't do enough console stuff to make studying it more worth while.
  3. Replies
    8
    Views
    1,489

    It sounds like you want the conio.h functions,...

    It sounds like you want the conio.h functions, but the only windows compiler that supports that fully would be borland c++. I think that would be the easiest.
  4. Thread: C++ first?

    by Phylter
    Replies
    10
    Views
    1,269

    Win32 is just an API of c/c++ (or other languages...

    Win32 is just an API of c/c++ (or other languages but we will only discuss c/c++ for the moment) and knowing the language is an important step to being able to use the API effectively. I recomend...
  5. Replies
    8
    Views
    32,339

    Then you need to use other functions to slow down...

    Then you need to use other functions to slow down the process of beeping. You can get real fancy with timers but you probably only need a simple pause between each beep.
  6. Replies
    1
    Views
    3,042

    What version of Borland C++ are you using?

    What version of Borland C++ are you using?
  7. Replies
    8
    Views
    32,339

    You may have one of the newer computers that do...

    You may have one of the newer computers that do not have a pc speaker hooked up. Open the case and look to see if there is a single speaker on the case that is connected to your motherboard.
  8. Thread: .exe size

    by Phylter
    Replies
    10
    Views
    2,029

    Try using the command "strip yourexe.exe". It...

    Try using the command "strip yourexe.exe". It will take out all the debugging information and probably bring the exe down half it's original size.

    Another thing you can do is try to remove any...
  9. Replies
    7
    Views
    2,688

    I think he is asking for a multi-threaded...

    I think he is asking for a multi-threaded compiler. One that uses more than one cpu for the purpose of compiling his source code.

    I'm not sure of any right off hand. VC++ might do that in the...
  10. Replies
    19
    Views
    5,108

    There are a lot of books out. It depends on how...

    There are a lot of books out. It depends on how self motivated you are, to know which one is best. Most people don't like the "21 days books" but I learned a lot from Sam's Teach Yourself C++ in...
  11. Replies
    16
    Views
    2,843

    -- begin snip of error code -- #include...

    -- begin snip of error code --
    #include <iostream.h>
    int main()
    {
    for (char x)
    /* for checks for a positive condition and it is getting 0
    the proper syntax in a for loop is
    for (int i = 0; i...
  12. Replies
    10
    Views
    1,205

    Often times a simple command line "strip...

    Often times a simple command line "strip <executable>"will work to get the executable size down by stripping the debugging information. DJGPP is for DOS and it provides very large executable files...
  13. Replies
    33
    Views
    5,377

    I use Borland C++ Builder 5 Pro or whatever...

    I use Borland C++ Builder 5 Pro or whatever version of gcc 3.2 that is needed for the platform that i'm programming on. I find the multiplatform support for gcc 3.2 very helpful, but I use the RAD of...
  14. Replies
    2
    Views
    1,849

    I don't quite understand what your wanting. Can...

    I don't quite understand what your wanting. Can you please explain in more detail?
  15. Thread: BGI Graphics

    by Phylter
    Replies
    14
    Views
    2,092

    Graphics

    For Graphics in MS-DOS or Windows I use allegro. It has some of the more advanced features i'm to lazy to try and impliment myself. Allegro Home Page. it's also fairly easy to use with a good online...
  16. Replies
    2
    Views
    1,019

    Look up PlaySound in your WinAPI referance. You...

    Look up PlaySound in your WinAPI referance. You might not need a component with that.
  17. Replies
    15
    Views
    3,081

    I might be sounding ignorant here but where can I...

    I might be sounding ignorant here but where can I get information about that?
  18. Replies
    15
    Views
    3,081

    The problem with the format of the code from...

    The problem with the format of the code from windows to linux is that windows/dos uses CR/LF and I believe that linux only uses LF. You can get an environment that will behave like linux for free...
  19. In my experiance it is possible to do mode 13h in...

    In my experiance it is possible to do mode 13h in a window, but not by something done progmatically. Only a few video drivers support it though.
  20. Replies
    10
    Views
    2,810

    I don't know how useful this is, but I do know...

    I don't know how useful this is, but I do know that borland has released their old Turbo C++ 1.1. You can find it in the museum on their community site community.borland.com.:D
Results 1 to 20 of 20