Results 1 to 4 of 4

Thread: how to append text in label

  1. #1
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanks
    116
    Thanked 42 Times in 41 Posts

    Default how to append text in label

    hi friends,
    is it possible to append some text in QLable()
    we are using label->setText("someText");
    the label->text() is already having the text "role"

    now if user click one button say "valid" button .. i have to append the text "validated" to "role" so
    the label->text() will have text "role validated"
    i try label->append() but says
    error: ‘class QLabel’ has no member named ‘append’

    how can i append a text in .cpp file .. please help ...

  2. #2
    Join Date
    Oct 2007
    Location
    Cracow
    Posts
    56
    Qt products
    Qt4
    Platforms
    Windows
    Thanks
    1
    Thanked 10 Times in 10 Posts

    Default Re: how to append text in label

    Qt Code:
    1. QString temp = label->text();
    2. temp.apend( " validated" );
    3. label->setText( temp );
    To copy to clipboard, switch view to plain text mode 

  3. #3
    Join Date
    Aug 2008
    Location
    Ukraine, Krivoy Rog
    Posts
    1,963
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows
    Thanked 370 Times in 336 Posts

    Default Re: how to append text in label

    try this
    Qt Code:
    1. ...
    2. label->setText(label->text() + " some other text");
    3. ...
    To copy to clipboard, switch view to plain text mode 
    Qt Assistant -- rocks!
    please, use tags [CODE] & [/CODE].

  4. #4
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanks
    116
    Thanked 42 Times in 41 Posts

    Default Re: how to append text in label

    thanks to both mr.mazurekwrc and spirit

Similar Threads

  1. Replies: 15
    Last Post: 31st January 2020, 19:25
  2. Unhandled exception in qatomic
    By NewGuy in forum Qt Programming
    Replies: 14
    Last Post: 23rd July 2013, 10:49
  3. Replies: 1
    Last Post: 11th September 2008, 10:07
  4. label with image and text
    By mattia in forum Newbie
    Replies: 1
    Last Post: 7th March 2008, 12:28
  5. Replies: 1
    Last Post: 24th October 2006, 17:40

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.