CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2002
    Posts
    30

    Smile Dynamic Text Box

    I´m writing an app where I need to show the info. I get from serial port (after processing it) in a Text box.

    My intention is to have an small box where the info. are presented just like "Movie Credits".

    Anyone could give some tips on that?

    Aprecciate very much.

    Ric.

  2. #2
    Join Date
    May 2002
    Posts
    37
    ugh.... presenting it in a Dialog box, or what?

    In this case, you could just create a Dialog with the Dialog Editor, adding an Edit Box to it and assigning a CString Variable m_strTitle to it.

    m_strTitle=GetTheInfoFromYourCode();
    UpdateData(FALSE);

    hope this helps

  3. #3
    Join Date
    Sep 2002
    Location
    Philadelphia ***Epoch: Timeless***
    Posts
    560
    Do you mean you want it to automatically scroll the text?
    SolarFlare

    Those who cling to life die and those who defy death live. -Sun Tzu

    cout << endl;
    return 0;
    }

  4. #4
    Join Date
    Jul 2002
    Posts
    30
    Exactly solarflare!!

    Sorry about the way I wrote. The point is...I don´t want just to update it...i need to keep all the previous info. displayed and then automatically scroll as new info. arrive.

    thanks again!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured