Skip to content

India

A forum for members from India
201 Topics 1.1k Posts
  • Want to set up Qt5 for developing application in Wandboard

    59
    0 Votes
    59 Posts
    38k Views
    M
    What ever they shared with me regarding the query is related to yocto Only. With there reply it seems like we also have to move to yocto if we want to finish it with in a time span.
  • How to create own dll in qt

    2
    0 Votes
    2 Posts
    1k Views
    p3c0P
    Hi, This "Qt Wiki":http://qt-project.org/wiki/How_to_create_a_library_with_Qt_and_use_it_in_an_application page might help you.
  • Qt for QNX

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to delete widgets from Qvboxlayout

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Chinese Character in Qt

    Locked
    1
    0 Votes
    1 Posts
    982 Views
    No one has replied
  • Want to configure Qt5 for Wandboard-solo board

    1
    0 Votes
    1 Posts
    971 Views
    No one has replied
  • AdvanTRAK Qt for QNX

    3
    0 Votes
    3 Posts
    2k Views
    D
    Hi, Thanks for your reply.' You would need to create myQNX Account and then you need to log in using created myQNX Account's User ID and Password. You can create myQNX Account in QNX Website., -Thank You.
  • 0 Votes
    4 Posts
    2k Views
    IamSumitI
    Hii.. It looks like your problem is solved ..So make your thread title as SOLVED. thanks
  • Opening for Qt/C++ developers at Bangalore location

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Qt application on LVDS display Freescale Saberauto board

    7
    0 Votes
    7 Posts
    3k Views
    S
    No it is not Qt application. Its airplay where mobile screen is replicated on HDMI display(primary).
  • Caputuring data in qt in windows

    4
    0 Votes
    4 Posts
    3k Views
    V
    hi how to get start time,end time,%cpu,%mem of any application(like firefox) in windows in qt code [quote author="IamSumit" date="1403699138"]hii http://www.codeproject.com/Articles/3921/Disk-free-space (Edited:Use Native API-MSDN for all information)[/quote]
  • Qt Installation on Xubuntu 13.1

    15
    0 Votes
    15 Posts
    7k Views
    C
    I fear the Xubuntu running on your Odroid is not 100% compatible - that seems to be the reason why the messages are similar to a 32/64bit mix. I do not want to lead you the wrong path so hopefully you'll find a solution as you could already install the Qt 4 versions.
  • Please help on this error

    3
    0 Votes
    3 Posts
    2k Views
    A
    It is possible that OS driver does not support OpenGL 2.0 (I guess) Check what version of OpenGL is supported by a graphics card. Also you may try to use different version of Qt for Windows. Qt for windows comes in two editions OpenGL and ANGLE. "See the differences between two versions":http://qt-project.org/wiki/Qt-5-on-Windows-ANGLE-and-OpenGL
  • [Solved] Qml component property accessing

    11
    0 Votes
    11 Posts
    5k Views
    A
    main.qml @import QtQuick 2.0 Item{ id:root width: 640 height: 540 property int count:0 property var rectangle:[] Rectangle { id:rect anchors.fill: parent MouseArea { anchors.fill: parent onClicked: { rectangle[count]=Qt.createComponent("Rect.qml").createObject(parent, {x: mouseX, y: mouseY}) count++ //here we can create number of rectangles, //rectangle[0].width will have the width of first rectangle //rectangle[0].height will have the height of first rectangle //rectangle[0].x will have the xpos of first rectangle //rectangle[0].y will have the ypos of first rectangle /editing a rectangle after its creation will be automatically updated in the corresponding array,so we need not to be care about that/ //count will have number of rectangles created } } } } @ Rect.qml @ import QtQuick 2.0 Rectangle { id: rect color: "yellow" width: 50 height: 50 MouseArea { id: right width: 8 height: parent.height anchors.right: parent.right property int oldMouseX hoverEnabled: true onPressed: { oldMouseX = mouseX } onPositionChanged: { if (pressed) { rect.width = rect.width + (mouseX - oldMouseX) } } } } @
  • Qt/C++ desktop application developer needed

    2
    0 Votes
    2 Posts
    2k Views
    M
    Does it include GUI related work in Qt? If yes, feel free to reach me at monalisa.kanungo@gmail.com
  • 0 Votes
    2 Posts
    3k Views
    SGaistS
    Hi, It means that you are trying to access a file already opened in another process that is using it e.g. deleting an open file. What does it have to do with Qt ?
  • Configure the external qt-components to arm platform Qt4.8.4

    5
    0 Votes
    5 Posts
    2k Views
    ?
    Glad to hear from you
  • Spanning horizontal header

    2
    0 Votes
    2 Posts
    4k Views
    ?
    I guess this is the smae post in stackOverflow, http://stackoverflow.com/questions/22755171/spanning-horizontal-header-in-qt Please mark this as solved if you got the right answer.
  • Read xml file in QML

    7
    0 Votes
    7 Posts
    6k Views
    ?
    Using contextProperty() you can easily connect C++ class inside QML files. Call the C++ functions for read/write XML files. check this, http://qt-project.org/doc/qt-5/qqmlcontext.html#setContextProperty
  • Reg: Open Parent window when push button clicked in child window

    12
    0 Votes
    12 Posts
    10k Views
    ?
    [quote author="Vishva" date="1382966771"]!http://www.thedazzlersinc.com/source/wp-content/uploads/2012/06/flow.png(img)![/quote] Why dont you use stack concept in Qt, using push and pop for showing parent and child.