CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    Making a rich text box interactive with user

    I currently use a rich text box to return queried information from the database and present to the user. One of the things that my user needs to do is print labels for example. Currently I make them print labels for each record or print for one. They would like to be able to skim through and select the records they would like to print. I don't think this is possible using a rich text box. I thought of loading the record number into a combo box then letting them add it to an array by selecting the record from the combo box. I would prefer however if there is someway to just select mulptiple entries from a rich text box or some other control and then just use that info to process the request.

    Thanks in advance,

    SGRECO


  2. #2
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: Making a rich text box interactive with user

    You can use a listbox and set the style of the listbox to checkboxed, this way there will be a checkbox in front of every item (record). The user can then easely select the records he want.

    Tom Cannaerts
    [email protected]

    The best way to escape a problem, is to solve it.
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

  3. #3
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    Re: Making a rich text box interactive with user

    Look at the listview control in Report View


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