Get a trial license key

We got trial keys about 6 years ago added to our FileMaker and Xojo plugins.

A trial key is only valid for a limit time and allows to test all features without demo limitations. Due to the time limitation of the key, you can use it for a few weeks. The key later expires and you are back to demo mode or you order a license to get a permanent license.

We setup a form to request a license key:
Request Trial License Key

We may limit who can get a trial and filter out the requests looking like spam. But so far we issued over 1800 trial keys to various people.

Please understand that trial keys are not intended for deployment of solutions as keys expire. Our regular keys don't expire and can be used forever with the plugin versions released before the license's expiration date.

You can also explicit register for newsletter, so you know about new releases and events.

Useful array and variant functions

We got quite a few utility functions in MBS Xojo Plugins for you to enjoy in your projects.

GetVariantTypeMBS

Let's say you have a variant containing something. Usually you use VarType() or Variant.Type to query the type.

GetVariantTypeMBS(va as variant) as Integer

The GetVariantTypeMBS function does the same, but has an extra code path for UInt32 and UInt64. While Xojo's functions don't distinguish between signed and unsigned integers, the MBS Plugin can do.

Variant containsVariant.TypeGetVariantTypeMBS
Int3222
UInt322102
Int6433
UInt643103

All other types would be same return values.

(more)

Xojo 2024r2

Today Xojo Inc. released the new version of Xojo, their second release for this year. Let's check what is new.

Release notes - Download

Control Sets for web projects

Better late than never, but this makes it easier to convert older Web 1 projects using control sets to Web 2. And of course you can use array indexes directly instead of putting controls in your own array property. A control set allows you to access an set of controls by the same name and the index.

See also What’s New in Xojo Web in 2024r2 (more)

MBS Xojo Plugins, version 24.3pr5

New in this prerelease of the 24.3 plugins:
  • Added AddRow() variant to SQLDatabaseMBS with returning insert id.
  • Fixed ArcShape for DynaPDFMBS to not close the Arc line.
  • Updated CubeSQL library to version 5.9.
  • Added isSequoia function to SystemInformationMBS module.
  • Deprecated isMavericks, isElCapitan, isYosemite and isSierra functions in SystemInformationMBS module.
  • Deprecated MacROMBootVersion, MacBoardID, MacVRAMSize and MacHasHardwareAcceleratedCoreImage functions in SystemInformationMBS module.
  • Added isValidJSON function for JSONMBS class.
  • Updated DynaPDF to version 4.0.89.256.
  • Added SearchAsIs flag for DynaPDF.Parser.FindText function.
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.

You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.


MBS Xojo Conference - Cross platform development using Convert to Method Pair

We recorded the presentations at the MBS Xojo Conference in April 2024 and here is the fifth video with David Cox presenting about Cross-platform development using Convert to Method Pair:

If you have a massively multi-platform project you quickly discover that placing code in 12 locations (in Objects, Methods and Classes for Desktop, Web, iOS and Android) becomes nearly impossible to manage. Using Convert to Method Pair allows you to place all your source code into one external Class per Window/Container/Page/Screen making your applications work consistently and making debugging much easier.

More videos will follow into the playlist.


MQTT in Xojo

Recently a client asked about whether we can do MQTT to subscribe to a topic and receive messages or even send messages.

MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol designed for devices with limited resources and for low-bandwidth, high-latency, or unreliable networks. It operates on a publish/subscribe model which allows for efficient distribution of information to many receivers.

RabbitMQ

A quick search here found the RabbitMQ classes we have. They allow you to connect to the a server running the open source message broker software RabbitMQ. You can use our plugin to use a lot of things there and they have a MQTT plugin, so you can connect your MQTT stuff with the RabbitMQ server.

See MBS Xojo RabbitMQ Plugin, the example files and blog posts about it.

CURL

We also discovered that we have MQTT capabilities built-in to the CURL library. Just use an URL with "mqtt://" followed by IP or domain name of the server. In the path of the URL goes the subject to subscribe or post to. If you like, set a user name and password. Let us show you with some example code.

(more)

MBS Xojo Plugins, version 24.3pr4

New in this prerelease of the 24.3 plugins: Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.

You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.


MBS Xojo Conference - Managing exceptions like a pro

We recorded the presentations at the MBS Xojo Conference in April 2024 and here is the forth video with Jérémie Leroy presenting about Managing exceptions like a pro:

Detecting bugs and fixing them is very important as a developer. Managing exceptions can take a lot of time to implement. This session will present Sentry.io using an open-source set of classes written in Xojo.

Watch on YouTube. More videos will follow into the playlist.


MBS Xojo Plugins, version 24.3pr3

New in this prerelease of the 24.3 plugins:
  • Added CanonicalXML function to XMLValidatorMBS class.
  • Improved error messages for exceptions raised in OpenSSLMBS module to contain more details.
  • Added quotationEndDelimiter, quotationBeginDelimiter, alternateQuotationBeginDelimiter, alternateQuotationEndDelimiter to NSLocaleMBS class.
  • Added calendarIdentifier, localeIdentifier, languageIdentifier, collatorIdentifier, regionCode to NSLocaleMBS class.
  • Added NSCurrentLocaleDidChangeNotification function for NSLocaleMBS class to use with NSNotificationObserverMBS class.
  • Added localizedStringForVariantCode, localizedStringForScriptCode, localizedStringForLocaleIdentifier, localizedStringForLanguageCode, localizedStringForCurrencyCode, localizedStringForCountryCode, localizedStringForCollatorIdentifier, localizedStringForCollationIdentifier, localizedStringForCalendarIdentifier, localeWithLocaleIdentifier to NSLocaleMBS class.
  • Added PythonHome, ProgramName, ProgramFullPath, Prefix, Path and ExecPrefix properties to PythonMBS class.
  • Changed CURL debug messages to include the full URL you requested for review. We include a warning, if URL has no scheme.
  • Updated DynaPDF to version 4.0.88.252.
  • Added kKeepUnsupportedAnnots constant for DynaPDFMBS class.
  • Added SetLineAnnotPoints and EnableImageCache functions to DynaPDFMBS class.
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.

You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.


MBS Xojo Conference - Mobile Development

We recorded the presentations at the MBS Xojo Conference in April 2024 and here is the third video with Javier Menendez presenting about Mobile Development:

Getting the most out of Mobile Development with Xojo

Watch on YouTube. More videos will follow into the playlist.


MBS Xojo Plugins, version 24.3pr2

New in this prerelease of the 24.3 plugins: Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.

You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.


MBS Xojo Conference - New features in MBS Plugins

We recorded the presentations at the MBS Xojo Conference in April 2024 and here is the second video with Christian Schmitz giving an update on MBS Xojo Plugins:

What is new in the 23 & 24 versions and what is in the pipeline?

Watch on YouTube. More videos will follow into the playlist.


MBS Xojo Plugins, version 24.3pr1

New in this prerelease of the 24.3 plugins:
  • Added Python plugin with PythonMBS class.
  • Fixed a problem with XLBookMBS when using conditional formatting.
  • Updated plugin SDK for Xojo 2024r2.
  • Fixed problem with JSON returning negative floating point numbers without leading 0.
  • Updated to Xcode 15.4.
  • Updated SQLAPI to version 5.3.2.
  • Removed deprecation attribute for FFTSingleMBS and FFTDoubleMBS functions.
  • Fixed the ReplaceTag function in WordFileMBS, which broke in 14.2.
  • Fixed number passing for XojoDOMXPathExpressionMBS class.
  • Updated SQLite to version 3.46.0.
  • Updated our ICU integration for SQLite to the new SQLite version.
  • Changed HotkeyMBS class for Windows to react on right shift/control/option keys, too.
  • Updated DynaPDF to version 4.0.87.251.
  • Updated curl to version 8.8.0
  • Added SetInput method taking ptr to ZLibDecompressMBS, ZLibCompressMBS, BZip2DecompressMBS and BZip2CompressMBS functions.
  • Added title property to VNDocumentCameraViewControllerMBS class.
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.

You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.


The biggest plugin in space...

Archives

Jul 2024
Jun 2024
May 2024
Apr 2024
Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008