Skip to content
QtWS25 Last Chance
  • QML QDoc: inheritance, import statement and qmlmodule

    Solved QML and Qt Quick crea
    10
    0 Votes
    10 Posts
    512 Views
    T
    Ok I see, I will take a closer look on this. Thank you for all your help. I will mark this discussion as resolved
  • How to rewrite MDI example structure C++ code

    Unsolved C++ Gurus crea
    9
    0 Votes
    9 Posts
    844 Views
    JonBJ
    @AnneRanch said in How to rewrite MDI example structure C++ code: I now have two processes running and the "myProcess" dialog works fine - what I wnat is to insert the dialog from one process to another . You have asked this previously, and the answer remains the same. So long as you have "separate processes" --- something run via QProcess --- you cannot "insert the dialog from one process to another ." MDI or not makes no difference. If you wish to have a dialog from one set of code appear in another set of code, they must both be in the same application, no independent processes. On a separate matter, if you do wish to use QProcess you still presently have: myProcess->start(); int result_execute = myProcess->execute(program); //, arguments); We have said before that this will run two instances of the btscanner program, and so you should find there are two btscanner windows opened, which is not right.