MBS Xojo Plugins, version 22.3pr5

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

Four month Russian war in Ukraine

It is already four months since Russia started the invasion of Ukraine. The Russian government sees them as a rival they think they can beat and prevent Ukraine from a prosperous live in the free world. They don't want a puppy government under the control of the Kreml, but their own independent country. Deciding their own fate and who they make treaties with.

This war is unnecessary and will not help Russia. It brings big pain to the people in Ukraine and as well to all the families in Russia, who see their sons die for this bullshit.

Please put the money where the mouths is. We try to help and sent once again a bigger donation to help people in the Ukraine. Also we will look to reduce our own use of petrol and natural gas. Currently we look into investing into photovoltaics to produce our own power.

Please check if you can help yourself by helping Ukraine or by reducing your consumption of Russia products.

Sending email via gmail

Recently a client had questions on how to send an email using our CURLEmailMBS class via gmail service and our CURLSMBS class. There are a few challenges:

  1. You need to know what server to use. That is easy for google mail and smtp.gmail.com will do it.
  2. You need to know your login credentials. Your account should have 2 Factor Authentication. But you never pass your gmail password to an application directly. You go to the google website, login and then create an app-specific password for smtp. The advantage is that you can disable that password later, if it got stolen and create a new one.
  3. You need to know the port to use. Basically port 25, 465 and 587 all can work. But 25 and 587 connect in plain text and do the TLS upgrade later after discussing the details of the supported encryption variants. For port 465, the first package is encrypted and for that we would tell the plugin to use TLS directly. That is our UseSSL flag, you can set when using port 465. To set the port, please either put in the server, e.g. "smtp.gmail.com:587" or later set it on the CURL object with OptionPort. For gmail the default port 25 works just fine here.
  4. You need to know what TLS version is allowed. For our example we don't need to set an explicit version. CURL now tries TLS 1.3 and falls back to version 1.2 if the server doesn't support it. But you can set a version as minimum.
  5. Since gmail doesn't do plain text, we tell CURL to require SSL with OptionUseSSL = kUseSSLall.
(more)

Merge PDFs with page numbers in Xojo

You can use DynaPDFMBS class in MBS Xojo DynaPDF Plugin for a lot of PDF operations. Create PDF from scratch, add content like text, tables, vector graphics, images and place existing PDF content as templates. You can merge, split, encrypt, decrypt, optimize and print PDF documents.

Let's show you how to do merge in DynaPDF with the following method snippet:

Sub Merge() Dim pdf As New DynapdfMBS pdf.SetLicenseKey "Lite" // For this example you can use a Lite, Pro or Enterprise License Dim outFile As folderitem = GetSaveFolderItem(MyFileTypes.Pdf, "Merge.pdf") If outFile = Nil Then Return // cancelled Call pdf.CreateNewPDF(outFile) // we import all content and as pages Dim flags As Integer = Bitwise.BitOr(pdf.kifImportAsPage, pdf.kifImportAll) Call pdf.SetImportFlags(flags) // loop over list to import all files there Dim c As Integer = List.ListCount-1 For i As Integer = 0 To c // we store folderitems for file references in the CellTag here. Dim file As FolderItem = List.CellTag(i, 0) // open file Dim FileHandle As Integer = pdf.OpenimportFile(file, pdf.kptopen, "") If FileHandle >= 0 Then // import all pages Call pdf.ImportPDFFile(pdf.GetPageCount+1, 1.0, 1.0) // alternatively with Pro license, import individual pages 'Call pdf.ImportPDFPage(1) Call pdf.CloseImportFile End If Next // optional edit all pages to have new text for page numbers If CheckPageNumbers.Value Then AddPageNumbers pdf End If Call pdf.CloseFile // open in preview outFile.Launch End Sub
(more)

MBS Xojo Plugins, version 22.3pr4

New in this prerelease of the 22.3 plugins:
  • Fixed PCRE2MatchDataMBS class to not crash with querying StartPosition in an empty matchdata object.
  • Updated Rockey4ND libraries, including Apple Silicon and Linux 64-bit for ARM.
  • Updated to DynaPDF 4.0.68.186.
  • Added more plugin support for Windows.
  • Added SetTemplBBox method to DynaPDFMBS class.
  • Added SetStackSize method to PCRE2MatchContextMBS class.
  • Implemented Constructor taking picture for CVPixelBufferMBS to work on iOS.
Download: monkeybreadsoftware.com/xojo/download/plugin/Prerelease/ or from DropBox.
Or ask us to be added to our shared DropBox folder.

MBS Xojo Plugins, version 22.3pr3

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

News from the MBS Xojo Plugins Version 22.2

In this article I want to introduce you the new functionalities from the MBS Xojo Plugins in version 22.2.

PCRE2

In the Regular Expressions topic there are huge changes. So far we have had the class RegExMBS. This is now deprecated and is no longer being developed, but remains in the plugin and can be used. We now provide the more modern classes:

If you want to learn more about the new functionalities, I recommend you to read our blog article New PCRE2 Plugin for Xojo which deals with the topic in more detail.

(more)

Multi Year Updates

If you have a license for our plugins, you can renew it at any time and add additional years at current pricing.

While our updates are already discounted at 50%, you can take multiple years and get an additional discount:
  • 2nd year with 10% reduction
  • 3rd year with 20% reduction
  • 4th year with 20% reduction
  • 5th year with 20% reduction
For example a $99 update for 5 years would be factor 4.3 instead of 5, so $425.70 instead of $495 with a $69.3 discount.

Please contact us to let us know you like to order with discount, so we can raise a custom invoice for your purchase.

If you order a multi year update via our web shop for full price, we can extend the MBS Plugin licenses (not DynaPDF or LibXL) with extra months instead of a discount:
  • 2 years -> 1 month extra
  • 3 years -> 3 months extra
  • 4 years -> 6 months extra
  • 5 years -> 9 months extra
This should be about the same level of discount. In any case, please let us know in advance. With ordering now in advance, you can secure current pricing.

And of course we appreciate the trust that customers put into us when they update for several years.

Please note that you may need to depreciate the value of the purchase over multiple years in most countries.

CNContactPickerViewController for Xojo

You may know that our MBS Xojo Plugins contain classes for Contacts for macOS and iOS. And now we add a new CNContactPickerViewControllerMBS class, so you can use the standard picker on iOS to pick a contact.

You subclass the CNContactPickerViewControllerMBS class and fill the events or use addHandler to connect the events to your methods. There is didCancel event in case user presses cancel button and there are events for one (or multiple) contacts selected or contact properties. Depending on which event you implement, the picker will be single or multi selection and may show contact properties.

So let's subclass and fill the events:

Class MyCNContactPickerViewControllerMBS Inherits CNContactPickerViewControllerMBS
Sub didCancel() System.DebugLog CurrentMethodName End EventHandler
Sub didSelectContact(contact as CNContactMBS) MessageBox "Picked: " + contact.givenName + " " + contact.familyName End EventHandler
End Class
(more)

MBS Xojo Plugins, version 22.3pr2

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

MBS Xojo Plugins, version 22.3pr1

New in this prerelease of the 22.3 plugins: Download: monkeybreadsoftware.com/xojo/download/plugin/Prerelease/ or from DropBox.
Or ask us to be added to our shared DropBox folder.
The biggest plugin in space...

Archives

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