跳到內容

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.4k 主題 456.4k 貼文
  • Compiling for windows xp

    17
    0 評價
    17 貼文
    9k 瀏覽
    G
    [quote author="kitten" date="1313915797"]my windows is 64 bit and when i compile it on release mode it doesn't run [/quote] You should also compile 32 bit for 32 bit systems. 32 bit software can run on 32 bit machines and on 64 bit machines. 64 bit software only on 64 bit machines. The second thing is, if you compile with MSVS, you must always ensure that the redistributables are correctly installed.
  • Advanced tabwidget

    2
    0 評價
    2 貼文
    2k 瀏覽
    S
    Qt does not provide such a widget and there are no current plans of adding such a widget to Qt.
  • Adding item to toolbar context menu

    9
    0 評價
    9 貼文
    8k 瀏覽
    S
    It is not possible to add items to the taskbar context menu using Qt.
  • Help with QNetworkConfigurationManager!

    3
    0 評價
    3 貼文
    2k 瀏覽
    T
    dig it.
  • Parsing .mdb File in Qt4

    15
    0 評價
    15 貼文
    10k 瀏覽
    V
    Now you got my thinkin.
  • [SOLVED] qtcpserver and qmainwindow on the constructor

    8
    0 評價
    8 貼文
    4k 瀏覽
    K
    [quote author="Rahul Das" date="1313916068"]Kalster , you have already raised a question regarding this. Please check the work around i have posted in your other "thread":http://developer.qt.nokia.com/forums/viewthread/9006/.[/quote] Rahul Das is correct. i really do not need this topic anymore because he helped me out in the other topic. he basically solved two topics in one post.
  • [SOLVED] what signal and slot for this server?

    11
    0 評價
    11 貼文
    4k 瀏覽
    K
    the code works excellent. thank you :)
  • [Solved] Unable to include <QtcpSocket>

    4
    0 評價
    4 貼文
    12k 瀏覽
    J
    This was it. I knew it was something easy. Thanks! Ken
  • How to get Mouse Click event on QComboBox

    4
    0 評價
    4 貼文
    7k 瀏覽
    A
    Well... it seems obvious to me that the events that happen for the combobox will be send to... the combobox. Not the form the combobox is on. You could install an event filter on the combobox if you want to catch its events though.
  • [Solved] QTabWidget over MenuBar

    10
    0 評價
    10 貼文
    6k 瀏覽
    H
    Perfect, thank you everybody fr your help! Cheers huck
  • A problem whit QToolButton?

    5
    0 評價
    5 貼文
    4k 瀏覽
    Y
    oh, I see. thank you very much. It is useful for me!
  • [solved] QTextstream problems

    12
    0 評價
    12 貼文
    11k 瀏覽
    S
    thank you!!!! you are simply a wizard!
  • Different behaviour inside X outside MS Visual Studio IDE - possible bug?

    5
    0 評價
    5 貼文
    3k 瀏覽
    K
    Hi Francisco if you are able to make it retraceable you shall issue a bug report on "JIRA":https://bugreports.qt.nokia.com/secure/Dashboard.jspa Even so, if it is not retraceable you might want to file a bug report. Another thing you can try is to update your Qt version. Version 4.7.3 is most recent release. There is also a list with fixed bugs. May be it has been fixed already. Have fun
  • Correct Suppression Valgrind : Fedora 14 i686

    1
    0 評價
    1 貼文
    2k 瀏覽
    尚無回覆
  • [SOLVED] textEdit selective text in bold

    3
    0 評價
    3 貼文
    2k 瀏覽
    K
    yes it does. thank you
  • QProgressDialog FPE exception

    7
    0 評價
    7 貼文
    3k 瀏覽
    L
    You're right. Although it is stated in the docs this behaviour isn't very intuitive and should be fixed somewhen.
  • Qt Licensing Help

    3
    0 評價
    3 貼文
    2k 瀏覽
    D
    Oh thanks mate
  • Using a db three times at the same time

    8
    0 評價
    8 貼文
    5k 瀏覽
    R
    Yes, that is correct. :) Remember, as per "doc":http://doc.qt.nokia.com/latest/qsqldatabase.html#setConnectOptions bq. This must be done before the connection is opened or it has no effect
  • Adding some path to a QListView

    5
    0 評價
    5 貼文
    3k 瀏覽
    A
    If you want to use QList_View_, then you are using it with a model, a QAIM subclass. If you want to add something to the displayed list, you have to add that piece of data to the model. The view will then display it. You are not telling us what type of model you are using, so it is hard to tell you how to do this. In your small code sample, you are trying to do something that looks more like how you would work with QListWidget. That will not work. Perhaps your model is a QStandardItemModel? In that case, you can add a new item to this model with a syntax that looks a bit like what you are trying to do.
  • [SOLVED] client can't disconnect user from server

    2
    0 評價
    2 貼文
    2k 瀏覽
    K
    i found what i was looking for. the disconnectFromHost() disconnects the client from the host.