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

Search:

Type: Posts; User: FenixRising

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,521

    Re: Creating applications...

    Thanks a lot for the info.

    B.
  2. Replies
    2
    Views
    1,225

    Re: Default settings....

    Thanks, I appreciate the input.
  3. Replies
    2
    Views
    1,225

    Default settings....

    Hi,
    Is there a way to set the Visual Basic 2012 IDE back to it's default settings? I've got screens everywhere and can't find anything. New to VB2012 I'm in Windows Forms Application -"Form 1"
    ...
  4. Replies
    4
    Views
    1,521

    Re: Creating applications...

    I have Microsoft Visual Studio 6.0 and tried to install it. It contains VB6. But, when I try to install it, it says incompatible program. I have WIN 8. Any ideas?
  5. Replies
    4
    Views
    1,521

    Creating applications...

    Can you write and compile VB6 applications with Visual Studio 2012? Else, what do you use? New to VB.

    Thanks
  6. Replies
    2
    Views
    1,139

    Re: Need some book recommendations.....

    Well, I have VS 2012 IDE.

    MySQL is free.

    A particular book - ?
  7. Replies
    2
    Views
    1,139

    Need some book recommendations.....

    Hi,
    I am just starting out on a new project. I am trying to determine what to use as the back end and what to use as the front end. I have chosen to use MySQL and am leaning towards Visual Basic....
  8. Replies
    10
    Views
    12,857

    Re: parsing a line for words...

    The other book is Beginning Visual C++ 2012. Actually, I like both books. But, everyone seems to think I should be using strings. And, I am a little bit confused about that.
  9. Replies
    10
    Views
    12,857

    Re: parsing a line for words...

    Ok, I have ordered the book. It will be here Wednesday.

    Regards,
    Bob
  10. Replies
    10
    Views
    12,857

    Re: parsing a line for words...

    First, delete [] p; was left in the program by mistake. Secondly, I am reading two books. I have read 550 pages in one and 450 in another. Both books were written and released in late 2012. The "C"...
  11. Replies
    10
    Views
    12,857

    parsing a line for words...

    Hi,
    I'm getting this when I compile my program. Then, when the program runs I get an error. I assume it is because I have the warning for this problem. How can get around this error.

    warning...
  12. Replies
    1
    Views
    3,035

    Re: length of a string

    got it; dumb me.
  13. Replies
    1
    Views
    3,035

    length of a string

    Does anyone know a way to get the length of a string? I have tried:

    str.length
    str.size
    strlen()

    Bob
  14. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    Thanks
  15. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    Hi,
    VictorN the last chages compile and ran correctly. There are 3 parts to the program. Thanks for the direction.
    Paul I don't know how to use MSDN, but I would like to learn. Do you know of...
  16. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    I am sorry about the code tags:



    // golf.h -- for pe-9.cpp
    #include <iostream>
    #include <cstring>
    using namespace std;

    const int Len = 40;
  17. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    1 : incomplete type is not allowed
  18. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    Hi, sorry that i took so long to respond.

    I have changed my code and now have a pre-compile error in this line: void setgolf(golf & g, const char * name, int hc)

    setgolf is the first error...
  19. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    I have changed my program. I had some incorrect code left in the program. The program works as it has been written. But, the problem I am having now is how to enter multiple golf struct records using...
  20. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    Hi,
    I'm using C++ Primer Plus. Classes are in the next chapter with objects.
    I am digesting what you have told me. I'll get back to you.
  21. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    Can you give me some direction to accomplish what I want to do?
  22. Replies
    22
    Views
    42,444

    Re: Error while using cin.get

    I am trying to enter into the member handicap of the stuct golf of the handicap of the golfer entered. It is an integer.
  23. Replies
    22
    Views
    42,444

    Error while using cin.get

    Hi, Line 76: cin.get(g.handicap+count);
    Pre compile error dot in between cin and get. no instance of overload function ...




    // golf.h -- for pe-9.cpp
    const int Len = 40;
    struct golf
    {
  24. Replies
    17
    Views
    11,318

    Re: problem with toupper()

    Hi 2kaud,
    The book that I am using is C++ Primer Plus by Stephen Parata. I am currently on page 445 of 1,334 pages. As far as the exercise goes, it really is an exercise is passing parameters by...
  25. Replies
    17
    Views
    11,318

    Re: problem with toupper()

    Hi 2kaud,
    I have looked at the documentation and have changed my program. I am assuming that cstr is a pointer and that pointer arithmetic should work. But, I still have errors.

    ...
Results 1 to 25 of 42
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured