Hi i want to know how to make a portable app to run in an autoit gui. what commands/functions to use so when i compile the gui script and the portable app i want the portable app runs in the gui. an example would be great.
thanks
The exe file you create with Autoit can be copied to any win32 system and you will be able to run. If that's what you meant under portable that's the answer.
You can't make android app or anything alike with autoit it is not java it is not cros splatform it is a windows automation tool moreover a programming language in itself but for windows systems only
Related
Feels like a silly question, but I'm struggling to find the answer online: Is it possible to deploy Qt apps to Windows if you did development on a Linux machine? It seems the answer should be "yes", but I can't seem to use windeployqt on my linux machine.
If it is possible, what additional resources do I need to do this?
Yes, it's of course possible.
You have to cross-compile Qt using the MinGW compiler, targeting Windows.
You'll have to patch and build windeployqt yourself. By default, windeployqt is looking for g++.exe in the path. Of course this makes no sense on a linux build host, so you'd have to tweak it so that it finds the correct compiler and runtime libraries.
You can then build your application using the cross-targeted Qt build, and deploy all the necessary artifacts into some deploy folder using windeployqt.
To package the deployed build, you can run nsis or wix on Linux as well, to obtain a Windows installer. You can even sign the executable files (required these days for Windows), there's an open source tool called osslsigncode - it works on most platforms and doesn't require Windows.
It'll take a bit of time for you to figure it all out. It's certainly easiest to just build on Windows and not mess with it. But if you insist on building on Linux - you certainly can.
I have develop an application by using QT/ MinGW 32 bit.This app work on my pc Windows 8. But ı want to deploy this app to my friends whose computers has windows 7. How to deploy it.Is there a necessary programs,framework to work it like .net framework, C++ runtime etc.. I don't know.I can't find a clear solution
To deploy a Qt app on Windows, you'll need to gather files from a few different locations. Here is an example how to do it.
See http://doc.qt.io/qt-5/windows-deployment.html, section "Creating the Application Package". You just have to copy all the necessary DLLs (and other files in case of Qt Quick) to the same directory as executable file. The best way to test whether you have all the required files is to rename your Qt installation directory (C:\Qt) to something else and try to double-click your executable.
Deployment on Windows 7 is no different from Windows 8.
Is it possible to use tideSDK to check what applications are running in the Operative System?
Thank you
You'd have to write a native app that does that, which you can then call from within TideSDK. You might want to look into using MonoDevelop for that, since you could hit Windows and OSX with the same application.
I have an existing application that is built on Ubuntu Linux using Maven. It has a server part (Java), Client part (Flex/AIR) and installers (Windows installers + RPMs). The client part now needs to be expanded to use a Native Extension. For this, you cannot longer build a .air, it needs to be a .exe.
I am trying to figure out how I can build this .exe now on Ubuntu Linux.
I am directly calling the adt.jar with some arguments to try to do this, but I get the following error:
Native extensions are not allowed for the current target
Is there a way to make this work?
regards,
Wim
I have Qt gui application working with OpenCV.
Sometimes it's nice to use OpenCV imshow() to show images during program work (for debug).
I just simply use:
cv::imshow("roi",roiImg);
in Qt application.
In Windows 7 everything works fine. Only when debugging in QtCreator I'm getting segfault when trying to show OpenCV window.
But my problem is that in WindowsXP even when running application exe both compiled as debug and release version program crashes.
Has anyone similiar problem? What is the best solution? What solution do you use as debug image output in applications written in Qt for example?