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

Search:

Type: Posts; User: lnknprkn

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    580

    visual C++ express debugger

    i am having trouble using the debugger. i set breakpoints, but the debugger just seems to move throughout the program as if the breakpoints do not even exist. also, it just flashes up the black...
  2. Replies
    4
    Views
    888

    Re: how can i run my program line by line?

    when i set the breakpiont and start debugging, it says that "the breakpoint will currently not be hit. no symbols have been loaded for this document"

    how do i fix this?
  3. Replies
    4
    Views
    888

    how can i run my program line by line?

    is it possible to run a program line by line? i want to see where my program goes as it is being run, like how long it stays in the loop, which functions it goes into, etc.
  4. Replies
    3
    Views
    7,568

    extract first word in a string

    user input: **HELLO**!!

    what's suppose to happen:
    firstWord = HELLO
    inspectThis = **!!



    string extractWord (string& inspectThis)
    {
  5. Replies
    2
    Views
    1,191

    getLastWord of a string. need beginner help

    string getLastWord (string& inspectThis)
    {
    int i = 0;
    string finalLastWord;
    string reverseLastWord;

    i = inspectThis.length() - 1;
    while (i != inspectThis.length())
    {
  6. Replies
    2
    Views
    717

    Re: need help with simple string code

    THANKS!!! omg thank you so much. im using visual basic 2005



    firstWord += inspectThis[i];


    that fixed my problem. but could you please explain to me what it does? i'm afraid i don't quite...
  7. Replies
    2
    Views
    717

    need help with simple string code

    here's my code. it keeps on getting an error and freezes up the computer. theres no compiler error or anything, the .exe just crashes

    what the function does it gets the first word of a string....
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured