I am starting with QT-Designer/C++ and I am absolute beginner... Have a Zebra scanner library for a barcode scanner that I would like to use to create a scanner app. In Visual studio I can simply add this reference by clicking on add. Under COM libraries I find it and simply add it. How to do the same in QT-Designer? Sorry, in case this is a stupid question. Thanks!
-
1Possibly related: stackoverflow.com/questions/718447/…gravity– gravity2016-12-20 15:49:46 +00:00Commented Dec 20, 2016 at 15:49
-
1Also potentially helpful: stackoverflow.com/questions/20516153/create-com-object-in-qtlcs– lcs2016-12-20 15:57:03 +00:00Commented Dec 20, 2016 at 15:57
-
2Qt Designer has nothing to do with COM. It is a user interface builder.Kuba hasn't forgotten Monica– Kuba hasn't forgotten Monica2016-12-20 16:55:27 +00:00Commented Dec 20, 2016 at 16:55
-
OK, Thanks. In Visual Studio I can add it from add/reference. I see there an item called CoreScanner. I think it is an .exe file that was installed in driver installation process. How can I open that in qt_c++ and use it?Gigi Hofleitner– Gigi Hofleitner2016-12-20 17:45:02 +00:00Commented Dec 20, 2016 at 17:45
-
1Qt itself is able to use COM but that is programming without any designers. QAxObject, QAxWidget, dumpcpp, lookup those words. Or, if the compiler is MS VC++ you can just use ATL technique with #import statement immediately in your code. That is complex, right. Adding references to projects sounds more like C# experience.Alexander V– Alexander V2016-12-20 21:56:51 +00:00Commented Dec 20, 2016 at 21:56
|
Show 2 more comments