Search:

Type: Posts; User: nold

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    10,010

    cant find

    Now it runs and all but displays a bgi error saying it cant find egavga.bgi. Its looking right at it too. what does this mean?
  2. Replies
    7
    Views
    10,010

    ohh yeah

    Never mind, I know, Thanks man
  3. Replies
    7
    Views
    10,010

    that is it

    No, I didnt, thanks!

    ohh and by the way, where is the target expert?
  4. Replies
    7
    Views
    10,010

    graphics.h link errors

    Hi, I have a 16 bit DOS app and am getting link errors, first here is my code to get a picture of what im doing:



    #include <dos.h>
    #include <graphics.h>
    #include <conio.h>

    int main()
    {
  5. Replies
    6
    Views
    1,238

    At compile time I get three errors and here they...

    At compile time I get three errors and here they are:

    error C2556: 'int __cdecl InitHandles(void)' : overloaded function differs only by return type from 'void __cdecl InitHandles(void)'

    error...
  6. Replies
    6
    Views
    1,238

    sorry for not using tags, il use them from now on

    sorry for not using tags, il use them from now on
  7. Replies
    6
    Views
    1,238

    Im using VC++ 6.0. Here is what InitHandles()...

    Im using VC++ 6.0. Here is what InitHandles() looks like

    int InitHandles(void)
    {
    HANDLE q_Screen;
    HANDLE q_Keyboard;
    q_Screen=GetStdHandle(STD_OUTPUT_HANDLE);...
  8. Replies
    6
    Views
    1,238

    InitHandle Problem

    Well, I have two handles. One for the keyboard and another for the screen(Im working on a new game) and I have a function that initializes them defined in a .cpp file. But whenever I try to...
  9. Replies
    8
    Views
    3,071

    Yes

    Yes
  10. Replies
    8
    Views
    3,071

    This may have no relevance, but did you have an ...

    This may have no relevance, but did you have an

    #ifndef

    ...

    #endif

    Or some sort of unclosed statement?
  11. Replies
    7
    Views
    1,354

    Give an example of how you are intending to use...

    Give an example of how you are intending to use it.
  12. Thread: Include problems

    by nold
    Replies
    5
    Views
    1,127

    help is here

    Well, you might want to start by lowering your big @$$ ego, I don't think a newbie should be so pridefull.
  13. Replies
    30
    Views
    14,302

    necessary statement

    Ohh, and by the way. I would like to add a very neccesary statement to all the ego-heads in this forum.

    "I think money has problems with getting his opinions confused with the reality others...
  14. Replies
    30
    Views
    14,302

    return

    Just play with it, get experience with it, and get examples and ideas from others...

    "any egotistic reply's to this message will be dealt with firmly"
  15. Replies
    30
    Views
    14,302

    Who are you refering to in the confused newbie...

    Who are you refering to in the confused newbie statement?
  16. Replies
    30
    Views
    14,302

    If you'd rather debate, go to a debating...

    If you'd rather debate, go to a debating forum...not a C forum
  17. Replies
    30
    Views
    14,302

    Please give an example then and enlighten us.

    Please give an example then and enlighten us.
  18. Replies
    7
    Views
    2,910

    unique code

    I have to say your code is unique...unlike much I have seen before. Guess everyone has there own style.:)
  19. Replies
    30
    Views
    14,302

    use of "return"

    Study this for example:

    //A function for multiplying two numbers

    int multiply(int x, int y)
    {
    int answer;
    return answer= (x * y);
    }
    //use function
  20. Replies
    4
    Views
    3,267

    oh, ok thanks...

    oh, ok thanks...
  21. Thread: rpg code

    by nold
    Replies
    7
    Views
    1,608

    I agree, thats why I added the "it is good...

    I agree, thats why I added the "it is good sometimes to have a good example" line. I have learned most of what I know from trial and error, you may have learned otherwise but for me thats the easiest...
  22. Replies
    2
    Views
    930

    just make these changes to your code: #include...

    just make these changes to your code:

    #include <iostream>

    using std::cout;
    using std::endl;

    int main()
    {
    cout<<"Lucky Charms\n";
  23. Replies
    2
    Views
    1,519

    clrscr()

    clrscr() and many other functions in <conio.h> have seemed to have died..such as textcolor(int newcolor), textbackground(int newcolor), gotoxy(x, y), and a few more dont exist in MS VC++ 6.0
    I was...
  24. Thread: rpg code

    by nold
    Replies
    7
    Views
    1,608

    well kermit, as long as your code works and does...

    well kermit, as long as your code works and does what you want it to, I wouldn't concern myself with how others code is(it is good sometimes to have a good example) but hey, there are different ways...
  25. Replies
    4
    Views
    3,267

    initializing the graphics driver.....

    I have a Turbo C editior with a graphics library all for DOS. Befor I
    can use the library I must initialize it with the initgraph() func. It has three parameters, first the driver(I set to auto...
Results 1 to 25 of 26
Page 1 of 2 1 2