How to I add/change items in a List Field?

You must use the Edit mode in Qt Creator to change add/change items to a List Field. The Design mode is used for look and feel, while the Editor mode is used for entering GUI details.

How to I add/change items in a List Field?2020-02-14T08:12:20-08:00

Qt Quick Controls Not Supported

The Qt Quick Controls module components are designed for desktop (mouse and keyboard) applications, not for touchscreens. As such, we do not support them. If there is a control in this set that does something our QML components do not, please let us know.

Qt Quick Controls Not Supported2022-04-08T09:38:28-07:00

Where are your QML Components documented?

Due to the variety of platforms that QML runs on, by default, there are very few QML components available. Reach has provided a number of components to make development easier. Find them at QML Components.

Where are your QML Components documented?2022-04-08T09:39:30-07:00

Do I have to purchase a Qt license?

You may need to purchase a license. Please contact support at The Qt Company for your specific answer. Learn more qt.io/licensing.

Do I have to purchase a Qt license?2022-04-08T09:40:48-07:00

Do I have to use QML/Qt, or can I use C++?

We provide a Linux Virtual Machine (VM) and a cross compiler for use in coding C and C++ applications. Learn more by visiting the Linux Quick Start Guide.

Do I have to use QML/Qt, or can I use C++?2019-11-14T13:15:35-08:00

How do I port a G2C1 application to the G2H2 module?

To port a G2C1 application to the G2H2 platform, you will need to change the QML files to account for the new QtQuick used in the new Qt Creator. To do this: Double-click on the .qmlproject file to start the new Qt Creator. Click on Tools->Options…, click on Kits, click on Qt 5.3.1, then click on Make Default. In each .qml source file, change the line: import QtQuick 1.1 to: import QtQuick 2.0 Click on File->Save All, then exit Qt Creator. Delete the .qmlproject.user file in your project folder – this removes any incorrect project settings (which are based on old file contents). Double-click on the .qmlproject file to start Qt Creator with the new settings.

How do I port a G2C1 application to the G2H2 module?2019-10-29T08:17:42-07:00
Go to Top