Monthly Archives: December 2010

Install .bin file on 32bit ubuntu

I got tired of not finding or having trouble with 32bit software on 64bit ersions of ubuntu. I installed a new 32bit version, only to find out I get the same problem when installing QT. If you saw my previous … Continue reading

Posted in Operating Systems, Ubuntu | Tagged , , , , , , | Leave a comment

Setup visual studio with QT

I searched long and hard trying to get usual studio to work with QT. QT creator is great but its nice to be in a familiar environment. I came across this doc at http://portfolio.delinkx.com/files/Qt.pdf Its slightly out dated but the … Continue reading

Posted in C++, Technology | Tagged , , , , | Leave a comment

QT Using layouts and updating QWidgets based on other widget’s value

#include #include #include #include int main(int argc, char *argv[]) { QApplication app(argc, argv);//construct QApp QWidget *window = new QWidget;//instanciate the QWidget window window->setWindowTitle(“Enter Your Age”);//set the title QSpinBox *spinBox = new QSpinBox;//create a spinner QSlider *slider = new QSlider(Qt::Horizontal);//create a … Continue reading

Posted in C++, Technology | Tagged , , , , , | Leave a comment