Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Looking For QT Video Tutorial From Scratch To End
Forum Updated to NodeBB v4.3 + New Features

Looking For QT Video Tutorial From Scratch To End

Scheduled Pinned Locked Moved General and Desktop
6 Posts 2 Posters 1.8k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    almazi
    wrote on last edited by
    #1

    Hi,
    I am a complete newbie here (joined the QT gang today and already lost in info overload :( ).
    So I just installed QT Creator 5.1.0 for GUI projects gonna take place in some of my courses of university.
    Really looking forward to get familiar with the amazing tool and set it up so that I can dig deep. Is there any step by step guideline available (most preferably video)?

    There maybe some more video tutorial related posts around but couldn't find a new one. Sorry to admins.

    _ Zii
    1 Reply Last reply
    0
    • A Offline
      A Offline
      almazi
      wrote on last edited by
      #2

      Found one: http://www.youtube.com/playlist?list=PLD0D54219E5F2544D
      If there is any other please recommend or suggest better :)

      _ Zii
      1 Reply Last reply
      0
      • M Offline
        M Offline
        mikeosoft
        wrote on last edited by
        #3

        I like and have found useful the VoidRealms Tutorials, the same person does tutorials on other things, but I have only looked at the QT so far and found them helpful.

        "VoidRealms":http://www.voidrealms.com/tutorials.aspx?filter=qt

        1 Reply Last reply
        0
        • A Offline
          A Offline
          almazi
          wrote on last edited by
          #4

          Thanks alot "mikeosoft":http://qt-project.org/member/139916!
          I was watching and following this video instruction http://www.youtube.com/watch?v=QLT7oEt6gLE

          But I am using QT Creator 5.1.0 and after inputting ui->label->seeText(ui->lineEdi­t->text()); on mainwindow.cpp it gives error when I run the program: D:\QT\mainwindow.cpp:17: error: 'class QLabel' has no member named 'seeText'
          D:\QT\mainwindow.cpp:17: error: 'class Ui::MainWindow' has no member named 'lineEdit'

          _ Zii
          1 Reply Last reply
          0
          • M Offline
            M Offline
            mikeosoft
            wrote on last edited by
            #5

            I haven't looked at the video you refer to, but I would guess that the problem is a typo.

            The command you have included there:

            @ui->label->seeText(ui->lineEdi­t->text());@

            When posting you should include the code elements within the code tags presented on the "Post a reply". formating tool bar, so that it looks better and is easier to read.

            I think it should be:

            @ui->label->setText(ui->lineEdi­t->text());@

            That way it would take the text from the lineEdit field you have in your form and make the label widget display it.

            Using the auto complete feature, should help avoid these kinds of problems.

            1 Reply Last reply
            0
            • A Offline
              A Offline
              almazi
              wrote on last edited by
              #6

              Oh didnt notice that code line input option, thanks alot.

              _ Zii
              1 Reply Last reply
              0

              • Login

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • Users
              • Groups
              • Search
              • Get Qt Extensions
              • Unsolved