QT Error with Twain Data Source
-
Yes, i installed and used qt-opensource-windows-x86-vs2008-4.8.7.exe
It list only None in QT Version tab.
I had vs 2008 also already installed.
Please help.
@bhim
Hi
It should have picked it up.
Not sure what went wrong.
Sadly i dont have any vs 2008 to test with and not sure why no Qt is listed.Give some time. Maybe someone is still using vs2008 :)
-
wrote on 20 Dec 2017, 20:01 last edited by
-
Also this is what i have installed, can this be the culprit?
Meantime i will also try on a machine where vs2008 is not installed.
@bhim
Did you also install a QT binary ?
That is only the editor
named something like Qt 2008 visual studio 2008can you show image of all that can be selected?
-
wrote on 20 Dec 2017, 20:16 last edited by
I am not sure if i installed QT binary. Can you please provide me download path? Also the QT Version drop down is only show None.
-
wrote on 20 Dec 2017, 20:53 last edited by
-
Hi ,
Thanks for your help. I m able to open and configure the project now. But getting below error when i build it. Can you please have a look and help.
@bhim
seem to be kinda old/invalid .pro file
can you show what is inside? -
wrote on 20 Dec 2017, 21:08 last edited by
Below is the content of pro file
unix {
TEMPLATE = subdirs
VERSION = 1.0
DEFINES += UNIX
}SUBDIRS = src
I have also shared entire project at below location for you.
https://drive.google.com/drive/folders/1gj69Kh7Xy8-p91uE3QUao673wqxoHidx?usp=sharing
-
Below is the content of pro file
unix {
TEMPLATE = subdirs
VERSION = 1.0
DEFINES += UNIX
}SUBDIRS = src
I have also shared entire project at below location for you.
https://drive.google.com/drive/folders/1gj69Kh7Xy8-p91uE3QUao673wqxoHidx?usp=sharing
-
wrote on 20 Dec 2017, 21:58 last edited by
Thanks It much better now. Though i am still getting lot of errors but these are datatype error and seems like code specific.
Thanks a lot for your help.
Bhim
-
Thanks It much better now. Though i am still getting lot of errors but these are datatype error and seems like code specific.
Thanks a lot for your help.
Bhim
@bhim
Np.
I noticed there are some FreeImage lib files.
Not sure it uses it but make sure they are compatible with vs 2008 if it does.Its pretty old project. there are no newer twain samples?
-
wrote on 20 Dec 2017, 22:10 last edited by bhim
-
This is the latest sample they have. With this i m getting below error , would you be able to help with this one as well?
I know how to take care of these in VS but not in QT.
@bhim
Well Qt is just a normal c++ LIB
and those are normal windows API calls so fix them like you normal would.
seems to be unicode related.
Didnt it later become common to put _TCHAR or something in front ?
or use wchar_t* and not char * ?
maybe you can just use the A version of the API and not W version -
Hi
I wondered if
https://github.com/twain/twain-samples
is something else than the twain you try ? -
wrote on 20 Dec 2017, 23:41 last edited by
I tried the exact same exact same Twain.
-
@bhim
Ok but it didnt work or was not what you wanted? -
wrote on 21 Dec 2017, 15:36 last edited by
-
wrote on 21 Dec 2017, 17:01 last edited by bhim
Hi,
I have resolved all string related error. Now my project is showing this :-1: error: LNK1104: cannot open file 'freeimage.lib' . If i could find the Visual Studio equivalent or Project property in QT, that would be very helpful to very file the linker paths.
-
Hi,
I have resolved all string related error. Now my project is showing this :-1: error: LNK1104: cannot open file 'freeimage.lib' . If i could find the Visual Studio equivalent or Project property in QT, that would be very helpful to very file the linker paths.
@bhim
you mean to link the LIB file to the project ?
http://doc.qt.io/qt-5/third-party-libraries.html
http://doc.qt.io/qtcreator/creator-project-qmake-libraries.htmlBasically you need a
LIBS += -L"3rdparty/CatWhisperer/lib" -lCatWhisperer
(with correct names of course) -
wrote on 21 Dec 2017, 19:37 last edited by
Thanks , this resolve the lib issue. Now below 2 error
14:31:45: Running steps for project src...
14:31:45: Configuration unchanged, skipping qmake step.
14:31:45: Starting: "C:\Qt\qtcreator-4.5.0\bin\jom.exe"
c:\Qt\4.8.7\bin\qmake.exe -spec c:\Qt\4.8.7\mkspecs\win32-msvc2008 CONFIG+=release -o Makefile ..\src\src.pro
C:\Qt\qtcreator-4.5.0\bin\jom.exe -f Makefile.Debug
link /LIBPATH:"c:\Qt\4.8.7\lib" /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /DLL /MANIFEST /MANIFESTFILE:"debug\TWAINDS_FreeImage.intermediate.manifest" /OUT:debug\TWAINDS_FreeImage.dll @C:\Users\rathorb\AppData\Local\Temp\TWAINDS_FreeImage.dll.13524.62.jom
TWAIN_UI.obj : error LNK2019: unresolved external symbol __imp__SHGetSpecialFolderPathA@16 referenced in function "public: __thiscall CTWAIN_UI::CTWAIN_UI(class CTWAINDS_FreeImage *)" (??0CTWAIN_UI@@QAE@PAVCTWAINDS_FreeImage@@@Z)
debug\TWAINDS_FreeImage.dll : fatal error LNK1120: 1 unresolved externals
jom: C:\ODIImages\Source\Twain\twain-samples-master\twain-samples-master\TWAIN-Samples\Twain_DS_sample01\build-src-Unnamed-Release\Makefile.Debug [debug\TWAINDS_FreeImage.dll] Error 1120
jom: C:\ODIImages\Source\Twain\twain-samples-master\twain-samples-master\TWAIN-Samples\Twain_DS_sample01\build-src-Unnamed-Release\Makefile [debug] Error 2
14:31:51: The process "C:\Qt\qtcreator-4.5.0\bin\jom.exe" exited with code 2.
Error while building/deploying project src (kit: Unnamed)
The kit Unnamed has configuration issues which might be the root cause for this problem.
When executing step "Make"
14:31:51: Elapsed time: 00:06.debug\TWAINDS_FreeImage.dll:-1: error: LNK1120: 1 unresolved externals
-
Hi
seems you need to link to
Shell32.lib also
https://msdn.microsoft.com/en-us/library/windows/desktop/bb762204(v=vs.85).aspx
17/37