Qt5.9.6 vs2015 SQlite database addition, deletion, modification and query

    I have developed a stock intelligent analysis software with powerful functions. If you need to click the following link to get it: https://www.cnblogs.com/bclshuai/p/11380657.html Qt use database catalogue one        Development environment... 1 two        Configure work... 1 two ...

Added by nadeem14375 on Thu, 28 Oct 2021 11:26:11 +0300

QT5 serial port host computer -- teach you to write 02 from scratch

Previous article: QT5 serial port host computer -- teach you to write 01 from scratch Simple serial port programming 2.QSerialPort module configuration QtSerialPort module of QT Qt provides two C + + classes, QSerialPort and QSerialPortInfo. Their functions are as follows: QSerialPort: provides various interfaces for operating serial ...

Added by Spikey on Thu, 28 Oct 2021 00:12:00 +0300

Qt Creator for animation (single animation)

Project background: I mainly want to make an AGV dispatching simulation software. In the first stage, I will complete the movement of the trolley first. Therefore, we need to learn the animation effect of QT to lay a foundation for the whole software, The animation framework is composed of the base class QAbstractAnimation and its two derived ...

Added by whatever on Tue, 19 Oct 2021 21:35:41 +0300

GZHU Software Direction Comprehensive Course Design-Course Management System (Qt+mysql)

Preface Author: Light as the breeze cyfDate: 2021/1/4-2021/1/11This article comes from the Comprehensive Course Design of Software Direction in Senior Three School 1. Topics and Contents of Course Design 1. Basic Facts (1) Students belong to only one class (e.g. Accounting 181) (2) There are six classes in Grade 18 of the Accounting Dep ...

Added by dadamssg on Thu, 14 Oct 2021 20:11:03 +0300

Format log file

Experimental content Program to read and write a file test.txt, and write a line of data to the file every 1 second, similar to this 1, 2021-7-30 15:16:42 2, 2021-7-30 15:16:43 The program should loop indefinitely until you press Ctrl-C to interrupt the program. The next time you start the program to write a file, it can be appended to the ...

Added by agentsmith on Tue, 12 Oct 2021 05:55:03 +0300

Introduction to Qt basics of Qt learning

1. Preface In my last blog, I briefly introduced the object-oriented programming of C + +. This blog is mainly used to get started with Qt. Don't talk too much nonsense. Let's do it! C + + foundation of Qt learning 2. General In the learning process of Qt, I watch the video first, brush the general knowledge twice as fast, then put forward ...

Added by pauldr on Mon, 04 Oct 2021 00:36:26 +0300

Qt ASCII to Unicode to Chinese

Qt ASCII to Unicode to Chinese 1. Preface This is mainly a protocol processing when reading the second-generation ID card. At present, two modules are contacted, and there are some differences in the protocol. Here is an example of the parsing process to illustrate this transformation. 2. Example and conversion process Generally, in t ...

Added by rnintulsa on Fri, 01 Oct 2021 01:08:45 +0300

[punctual atom linux serial] Chapter 59 Linux LCD driver experiment - extracted from [punctual atom] I.MX6U embedded Linux Driver Development Guide V1.0

1) Experimental platform: punctual atom alpha Linux development board 2) Platform purchase address: https://item.taobao.com/item.htm?id=603672744434 2) Full set of experimental source code + manual + video download address: http://www.openedv.com/thread-300792-1-1.html 3) Students interested in punctual atomic Linux can add group discussion: 93 ...

Added by chipmunken on Thu, 23 Sep 2021 09:43:02 +0300

Mac OS QT application packaging

1, Introduction The graphical interface packaged on MacOS must be created from the Bundle. This Bundle is like Apk, which contains code, libraries, resource files and so on. If you create a QT project by yourself and use a. pro file, this file will have the Bundle attribute. To be safe, you can also add the following: CONFIG+=app_bundle If ...

Added by sonehs on Wed, 22 Sep 2021 03:09:24 +0300

Analysis of C++ PImpl implementation mechanism and code implementation

  in the introduction to beyond the c + + standard library boost library, there is a paragraph: scoped_ptr and Pimpl usage   scoped_ptr can be well used for many previously used bare pointers or auto_ptr, such as when implementing pimpl usage. [4] The idea behind pimpl usage is to isolate the client from all knowledge about the ...

Added by frog on Mon, 20 Sep 2021 11:43:10 +0300