Skip to content

India

A forum for members from India
199 Topics 1.0k Posts
  • 0 Votes
    5 Posts
    2k Views
    SGaistS

    Seems like you're duplicating things.

    Let's keep everything under only one thread.

    "Duplicate":https://qt-project.org/forums/viewthread/52819/

  • 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
    2k Views
    V

    Hi,
    It is really a big problem to use Hunspell in Windows environment. Thank your for this help.

  • 0 Votes
    22 Posts
    15k 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
  • 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/

  • 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
    10k 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
    1k Views
    McLionM

    Please don't multipost and close this thread.

  • Extract text from images?

    5
    0 Votes
    5 Posts
    4k 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
    2k 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

  • Qprinter receipt issue

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    No one has replied
  • 0 Votes
    59 Posts
    29k 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.