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. Project manager file for VS10E
Forum Updated to NodeBB v4.3 + New Features

Project manager file for VS10E

Scheduled Pinned Locked Moved General and Desktop
4 Posts 3 Posters 1.4k 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
    ArbolOne
    wrote on last edited by
    #1

    Gtkmm has its own project manager file for VS10E, that makes things very easy for us, is there something similar in Qt5?

    TIA

    This is not the first time you've been here, at the end you've always lost. You create viruses and we the cure, and in this battle you've always lost.

    1 Reply Last reply
    0
    • A Offline
      A Offline
      ArbolOne
      wrote on last edited by
      #2

      WOW!!
      I went to this page:
      http://qt-project.org/groups/qt_windows
      I looked everywhere for a button that would say, 'post question' or 'Ask a question", NOTHING!! there no button to click on to ask a question, what am I doing wrong?!! or have I gone nuts!!

      I just installed qt5 in my Win7 machine.
      Following a tutorial I have done all this, but when I click on the, 'Green Arrow', run button nothing happens, is the installation all right or is there a problem?

      //Notepad.cpp
      #include "notepad.h"
      #include "ui_notepad.h"

      Notepad::Notepad(QWidget *parent) :
      QMainWindow(parent),
      ui(new Ui::Notepad){
      ui->setupUi(this);
      }

      Notepad::~Notepad(){
      delete ui;
      }

      void Notepad::on_quitButton_clicked(){
      qApp->quit();
      }

      void Notepad::on_actionOpen_triggered(){ }

      void Notepad::on_actionSave_triggered(){ }

      //// Notepad.h

      #ifndef NOTEPAD_H
      #define NOTEPAD_H

      #include <QMainWindow>

      namespace Ui {
      class Notepad;
      }

      class Notepad : public QMainWindow
      {
      Q_OBJECT

      public:
      explicit Notepad(QWidget *parent = 0);
      ~Notepad();

      private slots:
      void on_quitButton_clicked();
      void on_actionOpen_triggered();
      void on_actionSave_triggered();

      private:
      Ui::Notepad *ui;
      };

      #endif // NOTEPAD_H

      ///// main.cpp

      #include "notepad.h"
      #include <QApplication>

      int main(int argc, char *argv[])
      {
      QApplication a(argc, argv);
      Notepad w;
      w.show();

      return a.exec&#40;&#41;;
      

      }

      This is not the first time you've been here, at the end you've always lost. You create viruses and we the cure, and in this battle you've always lost.

      1 Reply Last reply
      0
      • JKSHJ Offline
        JKSHJ Offline
        JKSH
        Moderators
        wrote on last edited by
        #3

        [quote author="ArbolOne" date="1357792719"]
        http://qt-project.org/groups/qt_windows
        I looked everywhere for a button that would say, 'post question' or 'Ask a question", NOTHING!! there no button to click on to ask a question, what am I doing wrong?!! or have I gone nuts!![/quote]Hello,

        Sorry you've found it hard to navigate the website. In the future, just post questions directly into the forums at http://qt-project.org/forums/ , don't use Groups. I hope this makes things easier.

        [quote]I just installed qt5 in my Win7 machine.
        Following a tutorial I have done all this, but when I click on the, 'Green Arrow', run button nothing happens, is the installation all right or is there a problem?[/quote]What error message do you get?

        [quote author="ArbolOne" date="1357785274"]Gtkmm has its own project manager file for VS10E, that makes things very easy for us, is there something similar in Qt5?[/quote]The "Green Arrow" you mentioned before is from Qt Creator. Which IDE are you using? Qt Creator, or Visual Studio?

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

        1 Reply Last reply
        0
        • G Offline
          G Offline
          giesbert
          wrote on last edited by
          #4

          [quote author="JKSH" date="1360460536"][quote author="ArbolOne" date="1357792719"]
          http://qt-project.org/groups/qt_windows
          I looked everywhere for a button that would say, 'post question' or 'Ask a question", NOTHING!! there no button to click on to ask a question, what am I doing wrong?!! or have I gone nuts!![/quote]Hello,

          Sorry you've found it hard to navigate the website. In the future, just post questions directly into the forums at http://qt-project.org/forums/ , don't use Groups. I hope this makes things easier.
          [/quote]

          If you want to ask in groups, you have to go to the forum sub page of the group (which will lead to the specific forum). The group page is just an overview of the activities....

          Nokia Certified Qt Specialist.
          Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

          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