Search:

Type: Posts; User: Jarrette

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Thread: visual basic

    by Jarrette
    Replies
    7
    Views
    2,844

    thanks

    thanks a lot guys, really appreciate that. I'm in my senior year, trying to finish my IS degree. I've taken cobol and C++ now i need the networking stuff, vb, and I hope java.

    wish me luck, and...
  2. Thread: visual basic

    by Jarrette
    Replies
    7
    Views
    2,844

    In programming terms getting an answer to a...

    In programming terms

    getting an answer to a simple question > searching every single site in google till i find a good one
  3. Thread: visual basic

    by Jarrette
    Replies
    7
    Views
    2,844

    visual basic

    anyone know of a good VB website like this one?
  4. Thread: <windows.h>

    by Jarrette
    Replies
    11
    Views
    2,468

    this isn't it? int WINAPI...

    this isn't it?



    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow)
  5. Thread: <windows.h>

    by Jarrette
    Replies
    11
    Views
    2,468

    Linking... LIBCD.lib(crt0.obj) : error LNK2001:...

    Linking...
    LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
    Debug/win.exe : fatal error LNK1120: 1 unresolved externals
    Error executing link.exe.



    compiled fine but got...
  6. Thread: <windows.h>

    by Jarrette
    Replies
    11
    Views
    2,468

    View Post

    hey i'm really curious about being able to program with windows interface. I just finished my C++ class but I'm an IS major so i really just learned how to do simple business apps. I tried...
  7. Replies
    6
    Views
    1,070

    woot...

    figured it out!!! :)

    just wanted to follow up on this so no one wastes time trying to help me out here.

    I even sorted my table alphabetically!! Now all i need to do is figure out how to export...
  8. Replies
    6
    Views
    1,070

    hmmm, just thought of something, is that 'if'...

    hmmm, just thought of something, is that 'if' statement making the for loop not increment the row? if the 'if' keeps proving true does it even go back up to the for loop?



    ...
  9. Replies
    6
    Views
    1,070

    ok, i did that and the program seems to work a...

    ok, i did that and the program seems to work a lot better. only problem is, only the last record gets entered into the table as the first record, all others are cleared! :confused:
  10. Replies
    6
    Views
    1,070

    very wierd, i changed it to if(response == 1)...

    very wierd, i changed it to

    if(response == 1)

    and then changed the declaration to

    int response = 1;

    it seemed to work better, but then i started losing information from my table!
  11. Replies
    6
    Views
    1,070

    this loop kicking my arse

    The program below compiles. The only problem I am having at them moment is the loop in the main function...





    for(row=0;row<TABLE_SIZE;++row)
    {
    if(response = 1)
    {
  12. Replies
    12
    Views
    2,671

    compute grades

    ok, my brain is fried and i'm frustrated as hell
    does anyone have any suggestions at all on how i can fix this mess?



    /*this program computes a final average for marketing students
    using...
  13. Replies
    12
    Views
    2,671

    hrmm never mind im getting 6 errors now i'll...

    hrmm never mind im getting 6 errors now

    i'll fix it, but i gotta eat right quick, brb in a few

    btw, x, do you post on amdmb.com?? thought i recognized the name
  14. Replies
    12
    Views
    2,671

    yeah compiles in microsoft visual c++ 6.0 standard

    yeah compiles in microsoft visual c++ 6.0 standard
  15. Replies
    12
    Views
    2,671

    ok, here it is

    problem:

    a professor of marketing keeps the following info on each studen in her marketing 101 class: student last name, student first name, ssn, phone numb, grades for 5 quizzes, grade for the...
  16. Replies
    12
    Views
    2,671

    AAAHAHHHHH!!!!!!!!

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

    #define TABLE_SIZE 25

    struct STUDENT_STRUCT
    {
    char last_name [21];
  17. Replies
    12
    Views
    2,671

    loop not working

    why is this loop not working?




    cout << "\nEnter first student?\nEnter Y or N\n";
    cin.getline(response, 8);
    cin.ignore(80, '\n');

    while (toupper(*response) == 'Y')
  18. Replies
    4
    Views
    1,261

    hmm

    you see how in user_prompt function I collect all those strings like last name, etc. ?

    those pointers, i.e.(cin.getline (stud_ptr.first_name, 21);), kinda messing with my head.
    can i mess with...
  19. Replies
    4
    Views
    1,261

    excerpt from program #define TABLE_SIZE 25...

    excerpt from program



    #define TABLE_SIZE 25

    struct STUDENT_STRUCT
    {
    char last_name [21];
    char first_name [21];
  20. Replies
    4
    Views
    1,261

    passing table rows by address

    I know how to pass structures by using pointers to functions. Is it possible to pass a table or a particular row from a table by address using pointers?

    say i have something like


    ...
  21. the reason that the function are screwed up is...

    the reason that the function are screwed up is because i started out trying to attack this from a different angle. I was just changing things here and there and I haven't gone back through the...
  22. passing struct pointers to make tables/files

    ok im banging my head against the wall on this one....

    here's the problem:

    say I'm a professor and i keep a record of all my students, here is the info i keep:

    first name
    last name
    ssn...
  23. Replies
    21
    Views
    25,672

    oh im just going through lessons and examples in...

    oh im just going through lessons and examples in my textbook. Right now im trying to learn structures and enums. So yeah it was prolly redundant to use enum in that, but it's helping me learn enums.
  24. Replies
    21
    Views
    25,672

    wow, that even makes sense! Hey I'm really...

    wow, that even makes sense!

    Hey I'm really happy to have found this board, I'm an IS major who's taking C++ atm. I really love the language, I guess because last semester I took COBOL.
    ...
  25. Replies
    21
    Views
    25,672

    wow, that even makes sense! Hey I'm really...

    wow, that even makes sense!

    Hey I'm really happy to have found this board, I'm an IS major who's taking C++ atm. I really love the language, I guess because last semester I took COBOL.
    ...
Results 1 to 25 of 27
Page 1 of 2 1 2