Skip to content

India

A forum for members from India
202 Topics 1.1k Posts
  • Static IP in Wifi Connection Qt

    2
    0 Votes
    2 Posts
    2k Views
    p3c0P
    Hi, There's no such class as QNetworkSessionManager. And there's no purely Qt way to set IP. You need to rely on platform specific code or use tools such as for eg. ipconfig on Linux. You can call this using QProcess.
  • WIFI session disconnection problem in Ubuntu Qt

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Embed Qt Widget into Qml view in QtQuick 2.0

    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS
    I do not think you can do that. Maybe with Window element somehow, but I doubt it.
  • Read or write the thumbnail embedded in a JPEG image

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    SGaistS
    Seems like you're duplicating things. Let's keep everything under only one thread. "Duplicate":https://qt-project.org/forums/viewthread/52819/
  • Unable to add library to the .pro file of the target file

    6
    0 Votes
    6 Posts
    3k Views
    sierdzioS
    You are welcome. Usually a few iterations are needed before it starts working (usually people have problems with writing correct LIBS statements, and often there are issues with supplying right paths). But in general, you should be on a good azymouth right now.
  • Downloading data ZIP file from website

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS
    Please do not "double post":https://qt-project.org/forums/viewthread/51978/.
  • Qt::TapGesture Gesture is not working properly

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to use Hunspell in Qt.

    4
    0 Votes
    4 Posts
    3k Views
    V
    Hi, It is really a big problem to use Hunspell in Windows environment. Thank your for this help.
  • How to take input date from user in qdateedit and show database accordingly

    22
    0 Votes
    22 Posts
    17k Views
    p3c0P
    Sorry but the code looks little bit weird. I think you must first rectify them: No need to open the database twice. Since you are fetching everything from the same table with same where clauses why unnecessarily complicate the code by firing 4 different queries. Furthermore it complicates the if and while conditions. Closing the connection in while loop would be a bad idea as it will close the database and the end of first iteration itself and thus affecting the remaining data if any.
  • Problem about QHistoryState

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Serial comunicacion using Qt and Visual Studio

    2
    0 Votes
    2 Posts
    2k Views
    T
    Did you read the next article? http://qt-project.org/doc/qt-5/qtserialport-terminal-example.html
  • Installation of Qt creator on red hat linux

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • I need help on taking a flash webvideo screenshot on Pyside or PyQt4

    3
    0 Votes
    3 Posts
    2k Views
    R
    Thanks for the quick response. is there any other methods to take screenshot with video from self.page().mainFrame() ?
  • Changing image by using keypress

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    SGaistS
    Like already suggested don't create multiple copies of the same questions Closing this one "Duplicate":http://qt-project.org/forums/viewthread/47975/
  • Connecting the image slice change with the slider

    6
    0 Votes
    6 Posts
    3k Views
    R
    @#include "ui_mainwindow.h" and in the interactor style class did as below Ui_MainWindow *_ui; void SetUi(Ui_MainWindow *ui) { _ui=ui; } void OnMouseWheelForward() { if(_Slice < Max_Slice) { _Slice += 1; Image_Viewer->SetSlice(_Slice); _ui->verticalSlider_2->setValue(_Slice); Image_Viewer->Render(); } } and things work perfect. @
  • [solved] how to set local fonts

    21
    0 Votes
    21 Posts
    12k Views
    S
    okay.. :) Happy
  • Qt Quick app on WP8: Shaders not compiling

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Is it possible to define query globally

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    McLionM
    Please don't multipost and close this thread.
  • Extract text from images?

    5
    0 Votes
    5 Posts
    5k Views
    JKSHJ
    Hi, It sounds like you want to use Optical Character Recognition (OCR) technology. You can either launch an external OCR program like BlackDal suggested, or can integrate a 3rd-party OCR library (like "Tesseract":https://code.google.com/p/tesseract-ocr/) into your code.
  • Qt giving the ld error

    2
    0 Votes
    2 Posts
    3k Views
    N
    Hi I have a final setup of Qt-creator as follows.I ran the script in the /opt/poky/1.6.1/ and opened the qt-creator from the concole. with this settings as below i'm trying to cross-compile the sample clock code General http://picpaste.com/1-gAmJsS3o.png Kits http://picpaste.com/2-Y3kFvHIG.png Qt version http://picpaste.com/3-lwZngysy.png 4 compiler http://picpaste.com/4-M4y6gJYb.png Debugger http://picpaste.com/5-DQhrxi6t.png CMake http://picpaste.com/6-l3FhICDq.png Build Settings http://picpaste.com/7-4myooBgL.png With the settings ,clock code is giving me error[8]. http://picpaste.com/8-kGmTWy3P.png 14:32:34: Running steps for project clocks... 14:32:34: Could not start process "/opt/poky/1.6.1/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi/usr/bin/make" clean Error while building/deploying project clocks (kit: wandboard) When executing step 'Make' 14:32:34: Elapsed time: 00:00. Please if you can assist. Thanks