Search:

Type: Posts; User: Jamsan

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    24
    Views
    2,798

    Ha, I totally forgot about these forums until now...

    Ha, I totally forgot about these forums until now when I get the subscription email saying someone responded to this thread...amazing :p
  2. Replies
    5
    Views
    1,229

    i rmemeber a link on here about exactly what your...

    i rmemeber a link on here about exactly what your asking, but cant remember it exactyl...looking around now.

    edit: this is kinda what your looking for, but not the one im thinking of.
  3. Replies
    5
    Views
    1,229

    using namespace std; is your friend or use the...

    using namespace std; is your friend

    or use the older header, iostream.h



    #include <iostream>
    using namespace std;

    int main()
  4. Replies
    31
    Views
    4,858

    empty for loop is basically to have a controlled...

    empty for loop is basically to have a controlled infinitive loop...

    for the parts of a c++ program, how advanced is this class? by the looks of it, its pretty basic, so i'd just go with function...
  5. Replies
    4
    Views
    24,415

    what he said in a nutshell... you can have...

    what he said in a nutshell...

    you can have spaces with getline, but not with cin.
  6. Thread: Newbie

    by Jamsan
    Replies
    4
    Views
    994

    I'm assuming there's some kinda database with the...

    I'm assuming there's some kinda database with the CC #'s or something? well....basically, just have if statements....

    if (amountspent > credlimit)
    cout << "They went over the limit\n";
  7. Replies
    6
    Views
    980

    what type of "file" are you trying to open?

    what type of "file" are you trying to open?
  8. Replies
    37
    Views
    5,832

    summer holiday? ha...well over this summer...

    summer holiday? ha...well over this summer "holiday", ive picked up a few books on php and mysql, so im gonna dable with those 2 all summer.....then back to school for some Unix :rolleyes:
  9. Replies
    13
    Views
    2,199

    codes tags!!! and you didnt include iostream...

    codes tags!!!

    and you didnt include iostream when you went to run your program king



    #include <stdio.h>
    #include <iostream.h>
    #include <stdlib.h>
  10. Replies
    3
    Views
    4,926

    if you could post a test file, that would be...

    if you could post a test file, that would be great.
  11. Replies
    16
    Views
    17,214

    Just have an array the size of the highest...

    Just have an array the size of the highest possible numbers....and then for each cell in the array, just increment array2[array1[i]], then find the max of the 2nd array
  12. Thread: Extreme Newbie

    by Jamsan
    Replies
    14
    Views
    1,686

    Genious. Pure genious.

    Genious. Pure genious.
  13. Thread: Extreme Newbie

    by Jamsan
    Replies
    14
    Views
    1,686

    both pieces of code work there chief...dont be...

    both pieces of code work there chief...dont be jealous ;)
  14. Thread: Extreme Newbie

    by Jamsan
    Replies
    14
    Views
    1,686

    A) use code tags like illustrated in B. B) ...

    A) use code tags like illustrated in B.

    B)


    #include <iostream.h>
    #include <stdlib.h>

    int main()
    {
  15. Thread: CDC :: Arc

    by Jamsan
    Replies
    2
    Views
    1,445

    I got it, thanks. :D

    I got it, thanks. :D
  16. Thread: CDC :: Arc

    by Jamsan
    Replies
    2
    Views
    1,445

    CDC :: Arc

    How exactly is this used? I need to have a dialog open up and ask the user for the center point of a circle and the radius...im fine with that...im fine with setting up the area in which the circle...
  17. Replies
    2
    Views
    4,629

    that did it...thanx alot.

    that did it...thanx alot.
  18. Replies
    2
    Views
    4,629

    Hover text in MFC?

    How would I go about displaying hover text when going over a tool item? say your in IE (or whatever browser), and you throw your mouse over the back button, and it'll hover "Back to Cboard bla...
  19. Replies
    33
    Views
    5,360

    MS VC++ 6

    MS VC++ 6
  20. Replies
    18
    Views
    2,051

    This is for VS 6, but it shouldn't be too...

    This is for VS 6, but it shouldn't be too different

    Project ---> Settings ---> instead of Use MFC in a Shared DLL, change it to Use MFC in a Static Library

    the executable will be 1 meg + tho...
  21. Replies
    3
    Views
    1,133

    #include #include ...

    #include <iostream.h>
    #include <fstream.h>
    #include <stdlib.h>
    #include <string.h>

    int first();
    int main()
    {
    char goal[20];
    int show;
  22. Thread: fstream

    by Jamsan
    Replies
    9
    Views
    1,945

    maybe im just being utterly and completely naive,...

    maybe im just being utterly and completely naive, but i see you have file3.DAT in your code, yet your test file is file3.TXT
  23. Replies
    15
    Views
    3,373

    #include #include int...

    #include <iostream.h>
    #include <stdlib.h>

    int main (void)
    {
    cout << "Hello World" << endl;

    system ("pause");

    return 0;
  24. Replies
    4
    Views
    841

    try casting it perhaps ?

    try casting it perhaps ?
  25. Replies
    4
    Views
    841

    it's doing what its supposed to?

    it's doing what its supposed to?
Results 1 to 25 of 162
Page 1 of 7 1 2 3 4