CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Oct 2009
    Posts
    3

    Please give me some idea, to create a program look like this...

    i wanted to do an asignmnt which are look like this!

    pictures:
    http://lookpic.com/i/974/bowPXhWd.jpeg

    from that pictures...the box 1 and 2...what should i use to make that?? edit box?? or static box or else??

    program file:
    http://www.mediafire.com/?ymdzm2tjmdn

    for your infomation..the box 1 are the text data...that the box 2 are display...

    please lent me some idea..
    for your information, i'm new with VS C++

  2. #2
    Join Date
    Feb 2009
    Location
    India
    Posts
    444

    Re: Please give me some idea, to create a program look like this...

    For box 1 you can use an edit control, but for box 2 you will need a richedit control.
    «_Superman
    I love work. It gives me something to do between weekends.

    Microsoft MVP (Visual C++)

  3. #3
    Join Date
    Oct 2009
    Posts
    3

    Re: Please give me some idea, to create a program look like this...

    Quote Originally Posted by _Superman_ View Post
    For box 1 you can use an edit control, but for box 2 you will need a richedit control.
    i have try to do it...and its look like this...
    http://lookpic.com/i/310/qXtrzfLG.jpeg

    write now...i did not know how to add function in the box..especially for the richedit part...how to make it animate?? display like typewritter the text in the editbox...

  4. #4
    Join Date
    Feb 2009
    Location
    India
    Posts
    444

    Re: Please give me some idea, to create a program look like this...

    What do you want to animate?
    «_Superman
    I love work. It gives me something to do between weekends.

    Microsoft MVP (Visual C++)

  5. #5
    Join Date
    Oct 2009
    Posts
    3

    Re: Please give me some idea, to create a program look like this...

    Quote Originally Posted by _Superman_ View Post
    What do you want to animate?
    the text..

  6. #6
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Please give me some idea, to create a program look like this...

    The right hand side box is a multiline editcontrol.

    if the 'stuff' in the left box is 'static' (it could be a richedit or a html edit, or it could be a generic CView you paint yourself).

    If the left box is animating in the sence that it's scrolling smoothly, then you will most likely need to do this via a regular CView and do the painting (and animating) yourself.

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