xricht17 / twpp

TWAIN framework for C++11. Makes development of applications and data sources much easier.
MIT License
39 stars 17 forks source link

Provide some bug solutions and mind map #35

Closed STDwang closed 2 years ago

STDwang commented 2 years ago

solution:

Add a line to pro: LIBS += -lUser32

solution:

Use software for viewing dynamic library dependencies, such as DependenciesGui, to view the library dependencies of the .ds file, and put the missing dynamic library in the .ds file directory

solution:

在simpleds.cpp的userInterfaceEnable函数中新增代码

Reason: The running environment of the .ds file is inconsistent with the running environment of the test program, so the windows dependent library in the directory of the .ds file may not be found

Purpose: Add the directory where the .ds file is located to the environment where the link library is loaded

solution:

Change the current working directory to the directory where the .ds file is located, and change the working directory back to the directory where the original test program is located when the qml program exits

mind Map

Twain