Results 1 to 20 of 21

Thread: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    I am new to QT and after not getting my button to fire, I tried lots of things!

    where should I put this:

    QObject::connect(LoginBtn, SIGNAL(clicked()), LoginBtn, SLOT(accept()));

    and I doubt it should be button to button, but I am not sure how to point it to the class holding the function

  2. #2
    Join Date
    Sep 2009
    Location
    UK
    Posts
    2,447
    Thanks
    6
    Thanked 348 Times in 333 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Have you tried :
    Qt Code:
    1. QObject::connect(ui->LoginBtn, SIGNAL(clicked()), this, SLOT(accept()));
    To copy to clipboard, switch view to plain text mode 

  3. #3
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    yes I have tried that before, My attempt before was like this, I tried again and I got this set of errors. Though in my first attempt it was without the ui->LoginBtn, it was just LoginBtn

    1>Compiling...
    1>moc_thewge.cpp
    1>.\GeneratedFiles\ui_thewge.h(72) : error C2065: 'ui' : undeclared identifier
    1>.\GeneratedFiles\ui_thewge.h(72) : error C2227: left of '->LoginBtn' must point to class/struct/union/generic type
    1> type is ''unknown-type''


    Qt Code:
    1. /********************************************************************************
    2. ** Form generated from reading UI file 'thewge.ui'
    3. **
    4. ** Created: Fri Jun 11 13:01:58 2010
    5. ** by: Qt User Interface Compiler version 4.6.2
    6. **
    7. ** WARNING! All changes made in this file will be lost when recompiling UI file!
    8. ********************************************************************************/
    9.  
    10. #ifndef UI_THEWGE_H
    11. #define UI_THEWGE_H
    12.  
    13. #include <QtCore/QVariant>
    14. #include <QtGui/QAction>
    15. #include <QtGui/QApplication>
    16. #include <QtGui/QButtonGroup>
    17. #include <QtGui/QHeaderView>
    18. #include <QtGui/QLineEdit>
    19. #include <QtGui/QMainWindow>
    20. #include <QtGui/QPushButton>
    21. #include <QtGui/QWidget>
    22.  
    23. QT_BEGIN_NAMESPACE
    24.  
    25. class Ui_TheWGEClass
    26. {
    27. public:
    28. QWidget *centralWidget;
    29. QLineEdit *usrLineEdit;
    30. QLineEdit *pwdLineEdit;
    31. QPushButton *LoginBtn;
    32.  
    33. void setupUi(QMainWindow *TheWGEClass)
    34. {
    35. if (TheWGEClass->objectName().isEmpty())
    36. TheWGEClass->setObjectName(QString::fromUtf8("TheWGEClass"));
    37. TheWGEClass->resize(649, 348);
    38. QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
    39. sizePolicy.setHorizontalStretch(0);
    40. sizePolicy.setVerticalStretch(0);
    41. sizePolicy.setHeightForWidth(TheWGEClass->sizePolicy().hasHeightForWidth());
    42. TheWGEClass->setSizePolicy(sizePolicy);
    43. TheWGEClass->setMinimumSize(QSize(649, 348));
    44. TheWGEClass->setMaximumSize(QSize(649, 348));
    45. TheWGEClass->setStyleSheet(QString::fromUtf8("background-image: url(:/TheWGE/gamers.PNG)"));
    46. centralWidget = new QWidget(TheWGEClass);
    47. centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
    48. usrLineEdit = new QLineEdit(centralWidget);
    49. usrLineEdit->setObjectName(QString::fromUtf8("usrLineEdit"));
    50. usrLineEdit->setGeometry(QRect(270, 200, 170, 29));
    51. usrLineEdit->setMaximumSize(QSize(170, 29));
    52. usrLineEdit->setStyleSheet(QString::fromUtf8("background-image: url(:/TheWGE/textbox.PNG);\n"
    53. "color: rgb(255, 255, 255);"));
    54. usrLineEdit->setMaxLength(40);
    55. usrLineEdit->setFrame(false);
    56. pwdLineEdit = new QLineEdit(centralWidget);
    57. pwdLineEdit->setObjectName(QString::fromUtf8("pwdLineEdit"));
    58. pwdLineEdit->setGeometry(QRect(270, 230, 170, 29));
    59. pwdLineEdit->setMaximumSize(QSize(170, 29));
    60. pwdLineEdit->setStyleSheet(QString::fromUtf8("background-image: url(:/TheWGE/textbox.PNG);\n"
    61. "color: rgb(255, 255, 255);"));
    62. pwdLineEdit->setFrame(false);
    63. LoginBtn = new QPushButton(centralWidget);
    64. LoginBtn->setObjectName(QString::fromUtf8("LoginBtn"));
    65. LoginBtn->setGeometry(QRect(350, 270, 90, 31));
    66. LoginBtn->setStyleSheet(QString::fromUtf8("background-image: url(:/TheWGE/login.PNG)"));
    67. LoginBtn->setFlat(true);
    68. TheWGEClass->setCentralWidget(centralWidget);
    69.  
    70. retranslateUi(TheWGEClass);
    71.  
    72. QObject::connect(ui->LoginBtn, SIGNAL(clicked()), this, SLOT(accept()));
    73.  
    74. QMetaObject::connectSlotsByName(TheWGEClass);
    75. } // setupUi
    76.  
    77. void retranslateUi(QMainWindow *TheWGEClass)
    78. {
    79. TheWGEClass->setWindowTitle(QApplication::translate("TheWGEClass", "TheWGE Anti-Cheat Client", 0, QApplication::UnicodeUTF8));
    80. LoginBtn->setText(QString());
    81. } // retranslateUi
    82.  
    83. };
    84.  
    85. namespace Ui {
    86. class TheWGEClass: public Ui_TheWGEClass {};
    87. } // namespace Ui
    88.  
    89. QT_END_NAMESPACE
    90.  
    91. #endif // UI_THEWGE_H
    To copy to clipboard, switch view to plain text mode 

  4. #4
    Join Date
    Sep 2009
    Location
    UK
    Posts
    2,447
    Thanks
    6
    Thanked 348 Times in 333 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Why are you modifying ui_thewge.h? That file is automatically generated so you will loose your changes! Do not edit that file!

  5. #5
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    LOL, all of my posts on this thread have said that I don't know where to put the connect statement, it would be much easier if you just told me where it belongs

  6. #6
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Your problem has nothing to do with Qt, you know. It's pure lack of C++ skills. Sorry for being blunt but then you didn't have to SHOUT(!) in the first place and you could have used proper tags in your posts
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  7. #7
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    i've already built this, in managed code with .net forms in C++, but I want to get away from that with QT so my program will be more secure. I've only been programming C++ for a year, im no pro but Its not that I don't know C++. why can I put 6 posts in 1 thread with all my code asking why a button isn't firing and still have not gotten any real advice?
    Last edited by harleyskater; 11th June 2010 at 21:51.

  8. #8
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Quote Originally Posted by harleyskater View Post
    why can I put 6 posts in 1 thread with all my code asking why a button isn't firing and still have not gotten any real advice?
    That's very simple to answer - because you didn't provide proper information in your first post. Each reply to each of your posts in this thread provides a proper answer to the problem stated in the previous post. First you asked why the application crashes and you were given the answer that it is because you had been using an uninitialized variable which was the proper answer to your question as your variables were obviously uninitialized. Of course after a year of C++ programming you should have noticed that yourself but ok... Then you stated you thought you had them initialized and posted a ui file (which you should have attached to your post instead of posting it inline with wrong bbcode, by the way) which was not that much relevant as the unitialized variable was the one in your widget class and not in the form. Fatjuicymole pointed out you had two sets of variables with the same names which again was the proper answer to your statement. Then you asked where you should put the connect statement connecting your uninitialized variable to something else. You were then given a good advice to use the variable from your ui class instead of the uninitialized variable. Then you said you had tried that before and it gave you some errors that you posted. The answer (again the right one) was that you placed it in a wrong place. Of course after programming in C++ for a year you should have noticed you didn't have a "ui" variable in this scope or you should have understood the clear message from the compiler you had been using for a year, but who am I to judge...

    So to summarize, you had the following problem history:
    1. you used an unexisting "ui" variable in a connect statement which gave you errors you didn't understand
    2. you removed the offending line and instead made another mistake of declaring a variable of the same name in your widget class, forgetting to initialize it and using it in a connect statement
    3. you were told you should have used the variable from the ui file which led you back to your original problem (or rather misled you as you just needed to add "ui->" to your statement and you simply misinterpreted it)
    4. you told me you have little experience with C++ because you have been using it for only a year but you are used to .Net (meaning probably C#, which is also object oriented so you should have spotted both your problems as in C# they would be exactly the same) causing another headache and wondering why majority of problems on this forum recently is related to C++ and not Qt and thinking whether we should introduce some kind of "basic C++ knowledge" certification process for people registering on this forum.

    I hope I clarified the situation. If not, let me know what is still unclear and we'll try to provide a better explanation.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  9. #9
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    i've never worked with C# before, just managed C++ Form applications. I am working away from that because a recent program of mine was decompiled. I could use a fuscator but I read all these things about QT and crossplatforms the programs I am building will soon be needed for mac. It didn't take me any time to program this, but its taken me 3 days to program out this with QT and really my main problem is understanding how to access the UI. I read what you said and I still don't understand where my connect should go, I am guessing my thewge.h. I don't understand what you mean by needing the "ui->". I am just trying to take this project that I have already done, and make it into a project that uses QT.

    Qt Code:
    1. #pragma once
    2.  
    3. #include <mysql++.h>
    4. #include <windows.h>
    5. #include <iostream>
    6. #include "md5.h"
    7.  
    8. namespace wforms {
    9.  
    10. using namespace System;
    11. using namespace System::ComponentModel;
    12. using namespace System::Collections;
    13. using namespace System::Windows::Forms;
    14. using namespace System::Data;
    15. using namespace System::Drawing;
    16.  
    17. /// <summary>
    18. /// Summary for LoginForm
    19. /// </summary>
    20. public ref class LoginForm : public System::Windows::Forms::Form
    21. {
    22. public:
    23. LoginForm(void)
    24. {
    25. InitializeComponent();
    26. //
    27. //TODO: Add the constructor code here
    28. //
    29. }
    30.  
    31. protected:
    32. /// <summary>
    33. /// Clean up any resources being used.
    34. /// </summary>
    35. ~LoginForm()
    36. {
    37. if (components)
    38. {
    39. delete components;
    40. }
    41. }
    42. internal: System::Windows::Forms::Button^ Cancel;
    43. protected:
    44. internal: System::Windows::Forms::Button^ OK;
    45. internal: System::Windows::Forms::TextBox^ PasswordTextBox;
    46. internal: System::Windows::Forms::TextBox^ UsernameTextBox;
    47. internal: System::Windows::Forms::Label^ PasswordLabel;
    48. internal: System::Windows::Forms::Label^ UsernameLabel;
    49. internal: System::Windows::Forms::PictureBox^ LogoPictureBox;
    50.  
    51. private:
    52. /// <summary>
    53. /// Required designer variable.
    54. /// </summary>
    55. System::ComponentModel::Container ^components;
    56.  
    57. #pragma region Windows Form Designer generated code
    58. /// <summary>
    59. /// Required method for Designer support - do not modify
    60. /// the contents of this method with the code editor.
    61. /// </summary>
    62. void InitializeComponent(void)
    63. {
    64. System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(LoginForm::typeid));
    65. this->Cancel = (gcnew System::Windows::Forms::Button());
    66. this->OK = (gcnew System::Windows::Forms::Button());
    67. this->PasswordTextBox = (gcnew System::Windows::Forms::TextBox());
    68. this->UsernameTextBox = (gcnew System::Windows::Forms::TextBox());
    69. this->PasswordLabel = (gcnew System::Windows::Forms::Label());
    70. this->UsernameLabel = (gcnew System::Windows::Forms::Label());
    71. this->LogoPictureBox = (gcnew System::Windows::Forms::PictureBox());
    72. (cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->LogoPictureBox))->BeginInit();
    73. this->SuspendLayout();
    74. //
    75. // Cancel
    76. //
    77. this->Cancel->DialogResult = System::Windows::Forms::DialogResult::Cancel;
    78. this->Cancel->Location = System::Drawing::Point(313, 190);
    79. this->Cancel->Name = L"Cancel";
    80. this->Cancel->Size = System::Drawing::Size(94, 23);
    81. this->Cancel->TabIndex = 12;
    82. this->Cancel->Text = L"&Cancel";
    83. this->Cancel->Click += gcnew System::EventHandler(this, &LoginForm::Cancel_Click);
    84. //
    85. // OK
    86. //
    87. this->OK->Location = System::Drawing::Point(210, 190);
    88. this->OK->Name = L"OK";
    89. this->OK->Size = System::Drawing::Size(94, 23);
    90. this->OK->TabIndex = 11;
    91. this->OK->Text = L"&OK";
    92. this->OK->Click += gcnew System::EventHandler(this, &LoginForm::OK_Click);
    93. //
    94. // PasswordTextBox
    95. //
    96. this->PasswordTextBox->Location = System::Drawing::Point(187, 130);
    97. this->PasswordTextBox->Name = L"PasswordTextBox";
    98. this->PasswordTextBox->PasswordChar = '*';
    99. this->PasswordTextBox->Size = System::Drawing::Size(220, 20);
    100. this->PasswordTextBox->TabIndex = 10;
    101. //
    102. // UsernameTextBox
    103. //
    104. this->UsernameTextBox->Location = System::Drawing::Point(187, 73);
    105. this->UsernameTextBox->Name = L"UsernameTextBox";
    106. this->UsernameTextBox->Size = System::Drawing::Size(220, 20);
    107. this->UsernameTextBox->TabIndex = 8;
    108. //
    109. // PasswordLabel
    110. //
    111. this->PasswordLabel->Location = System::Drawing::Point(185, 110);
    112. this->PasswordLabel->Name = L"PasswordLabel";
    113. this->PasswordLabel->Size = System::Drawing::Size(220, 23);
    114. this->PasswordLabel->TabIndex = 9;
    115. this->PasswordLabel->Text = L"&Password";
    116. this->PasswordLabel->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
    117. //
    118. // UsernameLabel
    119. //
    120. this->UsernameLabel->Location = System::Drawing::Point(185, 53);
    121. this->UsernameLabel->Name = L"UsernameLabel";
    122. this->UsernameLabel->Size = System::Drawing::Size(220, 23);
    123. this->UsernameLabel->TabIndex = 6;
    124. this->UsernameLabel->Text = L"&User name";
    125. this->UsernameLabel->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
    126. //
    127. // LogoPictureBox
    128. //
    129. this->LogoPictureBox->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"LogoPictureBox.Image")));
    130. this->LogoPictureBox->Location = System::Drawing::Point(13, 69);
    131. this->LogoPictureBox->Name = L"LogoPictureBox";
    132. this->LogoPictureBox->Size = System::Drawing::Size(168, 81);
    133. this->LogoPictureBox->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
    134. this->LogoPictureBox->TabIndex = 7;
    135. this->LogoPictureBox->TabStop = false;
    136. //
    137. // LoginForm
    138. //
    139. this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
    140. this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
    141. this->ClientSize = System::Drawing::Size(421, 266);
    142. this->Controls->Add(this->Cancel);
    143. this->Controls->Add(this->OK);
    144. this->Controls->Add(this->PasswordTextBox);
    145. this->Controls->Add(this->UsernameTextBox);
    146. this->Controls->Add(this->PasswordLabel);
    147. this->Controls->Add(this->UsernameLabel);
    148. this->Controls->Add(this->LogoPictureBox);
    149. this->Name = L"LoginForm";
    150. this->Text = L"LoginForm";
    151. (cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->LogoPictureBox))->EndInit();
    152. this->ResumeLayout(false);
    153. this->PerformLayout();
    154.  
    155. }
    156. #pragma endregion
    157.  
    158. // Takes a string in the .NET platform's native Unicode format and
    159. // copies it to the given C string buffer in UTF-8 encoding.
    160. Void ToUTF8(char* pcOut, int nOutLen, String^ sIn)
    161. {
    162. array<Byte>^ bytes = System::Text::Encoding::UTF8->GetBytes(sIn);
    163. nOutLen = Math::Min(nOutLen - 1, bytes->Length);
    164. System::Runtime::InteropServices::Marshal::Copy(bytes, 0,
    165. IntPtr(pcOut), nOutLen);
    166. pcOut[nOutLen] = '\0';
    167. }
    168.  
    169.  
    170. private: System::Void OK_Click(System::Object^ sender, System::EventArgs^ e)
    171. {
    172.  
    173.  
    174. mysqlpp::Connection con(false);
    175.  
    176. if (!con.connect("db", "server", "thewge", "password"))
    177. {
    178. Application::Exit();
    179. }
    180.  
    181. // Retrieve a subset of the sample stock table set up by resetdb
    182. mysqlpp::Query query = con.query();
    183. //query << "SELECT username, password FROM wge_db_user WHERE username = 'da*beast'";
    184.  
    185. const int kInputBufSize = 100;
    186. char acsUserName[kInputBufSize];
    187. char acsPassword[kInputBufSize];
    188.  
    189. ToUTF8(acsUserName, kInputBufSize, UsernameTextBox->Text);
    190. ToUTF8(acsPassword, kInputBufSize, PasswordTextBox->Text);
    191.  
    192. //md5(acsPassword);
    193.  
    194. query << "SELECT username, password FROM wge_db_user WHERE username = '" << acsUserName << "' and password = '" << md5(acsPassword) << "'";
    195.  
    196. mysqlpp::StoreQueryResult res = query.store();
    197. mysqlpp::Row row;
    198.  
    199.  
    200. if (res.num_rows() > 0)
    201. {
    202. //goodlogin - show new form and hide this form
    203. }
    204. else
    205. {
    206. //badlogin
    207. }
    208.  
    209. mysqlpp::Connection::thread_end();
    210.  
    211.  
    212. return;
    213.  
    214.  
    215. }
    216. private: System::Void Cancel_Click(System::Object^ sender, System::EventArgs^ e)
    217. {
    218. Application::Exit();
    219. }
    220. };
    221.  
    222. }
    To copy to clipboard, switch view to plain text mode 




    the things are throwing me off is the generated file and talking and connecting from other forms to the QT GUI


    where should my connect code go, what should it look like and what is the steps needed to get it connected to a function.


    I just came here for help, I thought this would be a simple question and answer because its just a button click event..............

  10. #10
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Quote Originally Posted by harleyskater View Post
    i've never worked with C# before, just managed C++ Form applications.
    Whatever - still object oriented.

    I am working away from that because a recent program of mine was decompiled.
    Every C++ application can be decompiled and disassembled.
    I read what you said and I still don't understand where my connect should go,
    It should be in the constructor of your widget class.

    I don't understand what you mean by needing the "ui->"
    You are familiar with the "->" operator in C++, right?



    the things are throwing me off is the generated file and talking and connecting from other forms to the QT GUI
    So don't generate any files, write everything manually. Nobody forces you to use ui files.

    I just came here for help, I thought this would be a simple question and answer because its just a button click event..............
    But your problem has really nothing to do with any buttons. It's a simple C++ issue of accessing an uninitialized (in one case) or non-existing (in the other case) variable.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  11. #11
    Join Date
    Sep 2009
    Location
    UK
    Posts
    2,447
    Thanks
    6
    Thanked 348 Times in 333 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    You had it in the right place the first time. No one told you to move that statement to another file, which is why when I told you the correct way to use the connect method it didn't work for you. I was (and still am) puzzled why you changed the file, and then when I say you got the wrong file you start complaining that no one is giving you real advice.

    Sheesh. It's a wonder anyone helps you.

  12. #12
    Join Date
    Jun 2010
    Posts
    41
    Thanks
    8
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    juicy, I just realized why this was giving me so many problems, it was actually firing, but my breaks in my code were not stopping the debug : / I am guessing there something between QT and MSVC that isn't great for debugging. thxfor your help

  13. #13
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: QT VS C++ 2005, QPushButton NOT FIRING!!!!!

    Just to correct what I said earlier - I just noticed "ui" was not a pointer in your code (I'm answering too many threads at the same time :P) so it should be "ui." and not "ui->". The rest still stands.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Replies: 0
    Last Post: 22nd February 2010, 09:30
  2. QSocketNotifier activated() not firing
    By jflatt in forum Qt Programming
    Replies: 1
    Last Post: 10th July 2009, 20:10
  3. Qt 4.3.2 with VS 2005 SP1
    By Shawn in forum Installation and Deployment
    Replies: 1
    Last Post: 12th October 2007, 07:04
  4. QT with visual c++ 2005
    By v3n0w in forum Installation and Deployment
    Replies: 5
    Last Post: 20th May 2007, 12:37
  5. Replies: 3
    Last Post: 26th September 2006, 12:16

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.