Search found 446 matches

by barbara
Tue Sep 12 2023 2:50 pm
Forum: Issues
Topic: QComboBox Documentation Issue
Replies: 6
Views: 12235

Re: QComboBox Documentation Issue

Please email or post the exact code which did not trigger the slot method. We would like to test this and figure out what was not working.

Thanks,

Barbara
by barbara
Fri Sep 08 2023 4:31 am
Forum: Issues
Topic: QComboBox Documentation Issue
Replies: 6
Views: 12235

Re: QComboBox Documentation Issue

We verified the method which emits the SIGNAL and both cs_currentIndexChanged(int) and currentIndexChange(int) are emitted. So you can use either one but for consistency it would be better to use the one without the prefix. You mentioned there was an issue so I am including the connect() used our te...
by barbara
Tue Aug 29 2023 6:24 am
Forum: Developers
Topic: MySQL plugin question
Replies: 3
Views: 11078

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: 12235

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: 4213

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: 3976

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: 4148

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: 4148

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: 4671

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: 14827

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