Search found 454 matches

by barbara
Tue Aug 29 2023 6:24 am
Forum: Developers
Topic: MySQL plugin question
Replies: 3
Views: 11118

Re: MySQL plugin question

We are making a few changes to the FindMySQL.cmake file and the plugin to accommodate a wider range of MySQL versions. These modifications will be available and pushed to github within the next two weeks.

Barbara
by barbara
Thu Aug 24 2023 3:21 am
Forum: Issues
Topic: QComboBox Documentation Issue
Replies: 6
Views: 12296

Re: QComboBox Documentation Issue

The SIGNAL currentIndexChanged is overloaded however this is the name of the signal users should be looking for. The NOTIFY property you mentioned is showing our internal SIGNAL name. We will modify the documentation and not list the internal name.

Barbara
by barbara
Fri Aug 18 2023 8:47 pm
Forum: User Support
Topic: Flatpak
Replies: 1
Views: 4247

Re: Flatpak

Can you tell us what end result you are looking for. Do you simply want a list of CopperSpice dependencies for packaging?

Barbara
by barbara
Thu Aug 17 2023 1:45 am
Forum: User Support
Topic: SQLIte3?
Replies: 2
Views: 4007

Re: SQLIte3?

The method addDatabase() is static and the result must be assigned to your QSqlDatabase variable. Please give the following code a try. QSqlDatabase dbms; dbms = QSqlDatabase::addDatabase("QSQLITE"); dbms.setDatabaseName(s_dbms); if (! dbms.open()) { qDebug() << dbms.lastError().text(); re...
by barbara
Fri Aug 11 2023 10:14 pm
Forum: Installation
Topic: Compile error on Fedora 38
Replies: 3
Views: 4197

Re: Compile error on Fedora 38

Let us know if you have any other questions and we will do our best to help you out.

Barbara
by barbara
Fri Aug 11 2023 2:13 am
Forum: Installation
Topic: Compile error on Fedora 38
Replies: 3
Views: 4197

Re: Compile error on Fedora 38

If you build CS from SHA a7f3e774dd (or later) this issue should be resolved. This was added after the 1.8.2 release.

Barbara
by barbara
Sat Jun 17 2023 10:32 pm
Forum: User Support
Topic: Markdown preview question
Replies: 1
Views: 4706

Re: Markdown preview question

... QTextBrowser type classes have a Markdown preview The QTextBrowser class does not support Markdown. As you mentioned, you can use plain text or rich text. Rich text supports the basic HTML tags. It is not documented in this class since Markdown is not supported. DoxyPress is linked with several...
by barbara
Wed May 31 2023 6:11 pm
Forum: Enhancements
Topic: C++ based webserver and application server?
Replies: 3
Views: 15834

Re: C++ based webserver and application server?

I haven't gone through the process of updating it for a while.
This sounds really cool. If you would like us to look at any thing and offer some suggestions please let us know.

Barbara
by barbara
Mon May 29 2023 5:24 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12827

Re: Problem building Kitchensink with VS2022

I want a GUI-RAD System with visual designer and native compiled language and static linking. Just thought I would add a bit more information since you seem interested in using C++. Various members of our CopperSpice team have been involved in this language since well before the C++98 release. It i...
by barbara
Sat May 27 2023 10:43 pm
Forum: Developers
Topic: Exception Related to String Encoding?
Replies: 5
Views: 10460

Re: Exception Related to String Encoding?

In Copperspice it appears that both the application and copperspice libraries have to both be Release or Debug mode. Yes, both CS and your application need to be in the same mode. Typically this is not an issue since debug builds are not distributed. I assume this is because it uses the Ninja . . ....