Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. Brainstorm
  4. Qt SDK
Forum Updated to NodeBB v4.3 + New Features

Qt SDK

Scheduled Pinned Locked Moved Brainstorm
12 Posts 3 Posters 6.3k 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.
  • C Offline
    C Offline
    chethan7845
    wrote on 12 Nov 2013, 05:00 last edited by
    #1

    Is there any mandatory to use QT sdk while developing Qt project,actually i have been installed qt-vs-addin 1.2.2 and qt-win-opensource 4.8.5 is there any additional packages to install am getting error while compiling my code...

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Rahul Das
      wrote on 12 Nov 2013, 06:25 last edited by
      #2

      See this "Wiki":http://qt-project.org/wiki/Building_Qt_5_from_Git


      Declaration of (Platform) independence.

      1 Reply Last reply
      0
      • J Offline
        J Offline
        JKSH
        Moderators
        wrote on 12 Nov 2013, 06:41 last edited by
        #3

        [quote author="chethan7845" date="1384232456"]am getting error while compiling my code...[/quote]Hi, please describe the error and post the error messages. Otherwise, it is hard to help you.

        Is this for a new project? If so, I recommend installing "Qt 5.1.1":http://qt-project.org/downloads instead.

        [quote author="Rahul Das" date="1384237535"]See this "Wiki":http://qt-project.org/wiki/Building_Qt_5_from_Git[/quote]The OP is asking how to get started with using Qt. That wiki isn't going to help.

        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

        1 Reply Last reply
        0
        • C Offline
          C Offline
          chethan7845
          wrote on 12 Nov 2013, 06:44 last edited by
          #4

          Am getting this error
          The procedure entry point ?deref@QBasicAtomicInt@@QAE_NXZ could not be located in thye dynamic link library Qtcored4.dll

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Rahul Das
            wrote on 12 Nov 2013, 06:49 last edited by
            #5

            In the wiki, you can find the dependencies Or the additional packages.

            It is not mandatory to use the "QtSDK":http://doc.qt.digia.com/sdk-1.2/index.html . For Ex : You can use Qt plugin with IDEs like Eclipse , Or VS, as long as the Qt libs and tools are in place.


            Declaration of (Platform) independence.

            1 Reply Last reply
            0
            • C Offline
              C Offline
              chethan7845
              wrote on 12 Nov 2013, 06:56 last edited by
              #6

              I have installed Qt 4.8.5 libraries and qt-vs-addin 1.1.11 and visual studio 2008 are these versions compatible ?

              1 Reply Last reply
              0
              • R Offline
                R Offline
                Rahul Das
                wrote on 12 Nov 2013, 07:00 last edited by
                #7

                4.8.2 and 1.1.11 was released together. I dont know if there is any compatibility issue with 4.8.5


                Declaration of (Platform) independence.

                1 Reply Last reply
                0
                • C Offline
                  C Offline
                  chethan7845
                  wrote on 12 Nov 2013, 07:03 last edited by
                  #8

                  Finding fatal errors such as
                  "fatal error LNK1181: cannot open input file 'qtmaind.lib' "

                  what might be wrong? any idea?

                  1 Reply Last reply
                  0
                  • R Offline
                    R Offline
                    Rahul Das
                    wrote on 12 Nov 2013, 07:13 last edited by
                    #9

                    http://www.qtcentre.org/threads/23917-fatal-error-LNK1181-cannot-open-input-file-qtmaind-lib


                    Declaration of (Platform) independence.

                    1 Reply Last reply
                    0
                    • J Offline
                      J Offline
                      JKSH
                      Moderators
                      wrote on 13 Nov 2013, 00:05 last edited by
                      #10

                      [quote author="chethan7845" date="1384238655"]Am getting this error
                      The procedure entry point ?deref@QBasicAtomicInt@@QAE_NXZ could not be located in thye dynamic link library Qtcored4.dll

                      ...

                      Finding fatal errors such as “fatal error LNK1181: cannot open input file ‘qtmaind.lib’ “[/quote]Your DLLs have gotten mixed up.

                      Do this:

                      Uninstall all versions of Qt from your computer

                      Make sure you don't have Qt in your PATH

                      Make sure you don't have MinGW in your PATH

                      Go to http://qt-project.org/downloads and download "Qt 5.1.1 for Windows 32-bit (MinGW 4.8, OpenGL, 666 MB)"

                      [quote author="Rahul Das" date="1384238982"]It is not mandatory to use the "QtSDK":http://doc.qt.digia.com/sdk-1.2/index.html .[/quote]That is the Nokia SDK. It is obsolete. Do not use it.

                      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                      1 Reply Last reply
                      0
                      • C Offline
                        C Offline
                        chethan7845
                        wrote on 25 Nov 2013, 10:11 last edited by
                        #11

                        How to retrieve the username and password from database ? i am using postegre sql connection my databse connection is working successfully but am not able to retrieve data please help me
                        my code is
                        QSqlDatabase db = QSqlDatabase::addDatabase("QPSQL");
                        db.setHostName("localhost");
                        db.setPort(5432);
                        db.setDatabaseName("chethan");
                        db.setUserName("postgres");
                        db.setPassword("**********");

                                db.open();
                        

                        bool ok = db.open();
                        if(ok != true)
                        {
                        QMessageBox Msgbox;
                        Msgbox.setText("Connnctiopn was be Failed");
                        Msgbox.exec();

                        }
                        else
                        {
                          QMessageBox Msgbox;
                        

                        Msgbox.setText("connection was successfull");
                        Msgbox.exec();

                                 QSqlQueryModel model;
                        

                        QString qry = QString("select * from login ");
                        model.setQuery(qry);

                        newProj = new NewProj();
                        this->hide();

                         newProj->show();
                        

                        }

                        1 Reply Last reply
                        0
                        • J Offline
                          J Offline
                          JKSH
                          Moderators
                          wrote on 26 Nov 2013, 22:40 last edited by
                          #12

                          Hi chethan7845,

                          Please post your question in a new thread. It is completely unrelated to this one.

                          Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                          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