CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: exdox77

Search: Search took 0.03 seconds.

  1. Thread: creating a gui

    by exdox77
    Replies
    4
    Views
    833

    Re: creating a gui

    thank you, i have heard this before but never had a chance to try it out.
  2. Thread: creating a gui

    by exdox77
    Replies
    4
    Views
    833

    creating a gui

    up until now i havnt really done anything with gui's in C++ can someone recommend a good site to get started in gui production in C++?
  3. Thread: creating a gui

    by exdox77
    Replies
    6
    Views
    1,079

    Re: creating a gui

    so if i wanted to develop a gui for both mac and windows i would have to develop two separate programs?
  4. Thread: creating a gui

    by exdox77
    Replies
    6
    Views
    1,079

    creating a gui

    up until now i havnt really done anything with gui's in C++ can someone recommend a good site to get started in gui production in C++?
  5. Replies
    15
    Views
    3,088

    Re: for loop question

    Are you kidding me I should known that. Arrays get me every time well thanks everyone for your help. Next step is to try the vector and grow my array as I input people. Any ideas to start from.
  6. Replies
    15
    Views
    3,088

    Re: for loop question

    employee name is string and no and here is the complete code:




    // 9.cpp : Defines the entry point for the console application.
    //

    #include "stdafx.h"
  7. Replies
    15
    Views
    3,088

    Re: for loop question

    thats all it gave me, when it was finished it sent me to memcpy.asm and pointed to a line.



    rep movsd ;N - move all of our dwords
  8. Replies
    15
    Views
    3,088

    Re: for loop question

    so i did the array with my class but when i reach the last element in the array and the compiler gives me an error like this:

    '9.exe': Loaded 'C:\Users\bwilson\Desktop\Axis\9\Debug\9.exe', Symbols...
  9. Replies
    15
    Views
    3,088

    Re: for loop question

    ill give it a try, thanks for you help. as you can tell i am new to c++ and only know that basics. but thanks for you help
  10. Replies
    6
    Views
    1,496

    Re: calling class function problem

    thanks for you help i ended up figuring it out, it was just like how you showed me, thank alot
  11. Replies
    15
    Views
    3,088

    Re: for loop question

    okay i got it now, so how do you do infinite array, for example i dont know how many people i will be inputing i just want to input until i say stop
  12. Replies
    15
    Views
    3,088

    for loop question

    i have a for loop where i use an object to input information like this:

    I want the emp objects to increase as the loop goes around. so for each time to loop goes around i need it to go from emp1...
  13. Replies
    6
    Views
    1,496

    Re: calling class function problem

    Well crap now I'm confused. I guess I need to take emp1 and plug it into the function ImplementCalculations.
  14. Replies
    6
    Views
    1,496

    Re: calling class function problem

    Yea that's the line I'm having trouble with. I need to take my emp1 object and feed it into the class function.
  15. Replies
    6
    Views
    1,496

    calling class function problem

    im working on a simple overtime pay program and i am suppose to call a class function but i keep getting a complier error.

    I know there are other errors that are commented out so i can isolate...
  16. Replies
    14
    Views
    2,901

    Re: Something about arrays

    how much clearer can I get!

    I want to extract the element number from the array with out using a separate counter:

    I have and array of 3 apples

    apples[3] = {'green','red','yellow'};

    I...
  17. Replies
    14
    Views
    2,901

    Re: Something about arrays

    Nevermind, I guess there isn't a way to do what I am asking.
  18. Replies
    14
    Views
    2,901

    Re: Something about arrays

    Ok I have an array

    Apples[3] = {'green', 'red', 'yellow'};

    I want to extract element 2 from the array. I know how display the contents as so:

    Apples[2]; //shows yellow

    I wants be able to...
  19. Replies
    14
    Views
    2,901

    Re: Something about arrays

    Okay so I use my index. So there isn't a way to extract the element number into an integer.
  20. Replies
    14
    Views
    2,901

    Re: Something about arrays

    okay that you for your help. One more question, how can I show the index number of the array element. For example I have an array element char apples[3] = 'green';, i want to show it like like
    ...
  21. Replies
    14
    Views
    2,901

    Re: Something about arrays

    may you provide an example please. I realize that I need a for loop but I am not sure how to do this.
  22. Replies
    14
    Views
    2,901

    Something about arrays

    Hello I am taking a programming class and I am stuck with this part of the project. Could someone please help me out. Below is the portion I am stuck on and below that is the current code I have...
Results 1 to 22 of 22





Click Here to Expand Forum to Full Width

Featured