Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Query regarding Q3Ftp setup and using its API
Qt 6.11 is out! See what's new in the release blog

Query regarding Q3Ftp setup and using its API

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 641 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gans
    wrote on last edited by
    #1

    Hello,

    This is regarding, the configurations which are required for using the Q3Ftp API for writing the FTP client program. I am using the QT creator version 2.7.2 based on QT 5.1.0. It seem that by default the package does not support the Q3Ftp APIs. Hence I have downloaded the same from the following location. This download contains the header files which are related to Q3Ftp and also the dll.
    

    http://cygwin.parentingamerica.com/x86/release/qt4/libQt3Support4-devel

    I would like to refer this header files or directly dlls (libQt3Support.dll) and (libQtNetwork.dll)

    I have tried the following configuration in the .pro file. But it is giving certain compilation error in the Q3Ftp supporting header files.

    LIBS += E:\myworkspace\build-abc-Desktop_Qt_5_1_0_MinGW_32bit-Debug\debug\libQt3Support.dll

    LIBS += E:\myworkspace\build-abc-Desktop_Qt_5_1_0_MinGW_32bit-Debug\debug\libQtNetwork.dll

    INCLUDEPATH += "E:/myworkspace/abc/Qt3Support/"
    INCLUDEPATH += "E:/myworkspace/abc/QtNetwork/"

    Note: ‘abc’ is my project name.

    Kindly provide your suggestion and the required correction what I have to make.

    Regards,

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      Short answer: forget about that class. Qt3Support was a helper library used to help transition between Qt 3 and Qt 4. It's not available with Qt 5.

      However, you have the QFtp module that you can use.

      On a side note. You don't link to dlls but to lib file. If you want to use the network module just add QT += network to your pro file.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved