Our Blog   Our Claris FileMaker Blog   Our Xojo Blog   Archive     Follow us on Mastodon, Twitter, Xing, LinkedIn or Facebook.

MBS Plugin versions shipped

Here is a table documenting the release versions of our MBS FileMaker Plugin from the last years. You see how regular we release and what the build number the final version had. If you still use an older one like 11.1.0.7, you may notice you have the pre-release version. Pre-release versions usually are not ready for new/changed features and contain some more debug code to do runtime checks. We disable those for final builds.

(more)

Recent additions to the CURL project from me

The CURL project is a well run open source project and includes a command line tool (curl), a library for C/C++ application developers to use (libcurl) and various smaller utilities like trurl, a command line tool for URL parsing and manipulation. Since this is all publicly hosted on curls.se and github.com/curl, everyone can take a look there and contribute.

Everyone can download the current source code and build their own version of the command line tools, add the library to their product like we do for our plugins and modify them as needed. Yes, if you like, you could customize it and make your own version.

From time to time you may have made changes on your copies, which you would like to push back to the project. This could be:

  • fixing a typo in the documentation or source code
  • adding an option to build process
  • adding a new feature
  • port the project to build with a different compiler or on a new operation system
  • fix a bug or improve something
(more)

MBS @ FMTraining.TV - Printing in FileMaker with the MonkeyBread Plug-in

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk about what printing functions we have in MBS FileMaker Plugin: PrintDialog functions for macOS, Printer.SetPrinter and Printer.Print functions for Windows, PDFKit.Print, PDFKit.SelectPrinter and PDFKit.SetPrintSetting functions for iOS. You may print on iOS without print dialog to print a receipt in a POS software. And even on server you can print a PDF directly to a nearby printer in the same network with PDFKit.Print or DynaPDF.Print functions.

(more)

MBS FileMaker Plugin, version 14.2pr3

New in this prerelease of version 14.2 of the MBS FileMaker Plugin:
  • Updated DynaPDF to version 4.0.87.250.
  • Added IsSwipeNavigationEnabled and HiddenPdfToolbarItems as options to WebView.SetPreferences and WebView.GetPreferences for Windows.
  • Updated SQLAPI to version 5.3.1.
  • Updated SQLite to version 3.45.3.
Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

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


Controlled printing for iOS in FileMaker

If you use FileMaker iOS SDK, we can provide a few new print commands for iOS in the MBS FileMaker Plugin in version 14.2. The new PDFKit.SelectPrinter function allows you to pick a printer. And the PDFKit.Print function got extended to print PDF documents as well as images. You can configure printing with PDFKit.SetPrintSetting function.

 

Let's start with selecting a printer:

 

If [ Length ( PDFKit Print::PrinterURL ) > 0 ]

Set Variable [ $r ; Value: MBS( "PDFKit.SetPrintSetting"; "PrinterURL"; PDFKit Print::PrinterURL ) ]

End If

# show the dialog

Set Variable [ $userDidSelect ; Value: MBS( "PDFKit.SelectPrinter" ) ]

If [ MBS("IsError") ]

Show Custom Dialog [ "Failed to show printer selecto…" ; $r ]

Else If [ $userDidSelect ]

# and check what we got

Set Variable [ $printerURL ; Value: MBS( "PDFKit.GetPrintSetting"; "PrinterURL" ) ]

End If


(more)

MBS FileMaker Plugin, version 14.2pr2

New in this prerelease of version 14.2 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

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


MBS @ FMTraining.TV - The FileMaker Monkeybread Plug-in 14.1 with Christian Schmitz

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk about what is new in version 14.1: New functions, Release Notes and Announcement. Check out the new Overlay functions!

(more)

LibXL 4.3.0 has been released

We are glad to inform you that the new LibXL version 4.3.0 is available now.

What's new in the version 4.3.0:

  • added the possibility to remove all VBA code and macros from xlsm and xlsb files
  • added the possibility to remove all printer settings from xlsx, xlsm and xlsb files
  • added the possibility to set an active cell for splitted sheets (xlsx)
  • added keepAllSheets flag for the partial loading methods, if it's true, all sheets are saved back with Book::save() method, but only one specified sheet is available for processing, thus LibXL can save more memory. It works only for xlsx files, LibXL ignores this flag for xls files
  • added the multi-level sorting for AutoFilter::addSort() and Sheet::applyFilter() (xlsx)
  • added the updating/moving existing tables with Sheet::insertRow() and Sheet::removeRow() methods (xlsx)
  • improved SVG support
  • fixed a bug with adding a hyperlink after setting a picture, the output xlsx file was unreadable by Excel
  • fixed a bug with incorrect return values in Sheet::rowHeight() and Sheet::rowHeightPx() for non-standard DPI settings for some xlsx files
  • fixed Sheet::setPrintAread(), Sheet::setPrintRepeatRows(), Sheet::setPrintRepeatCols() for working with Japanese/Chinese sheet names
  • fixed a bug with reading some values in double quotes in the Sheet::readFormula() (xlsx)
  • fixed a bug with a workbook overwriting dialog message in Excel when an existing sheet is copied in xlsx file
  • fixed a bug with reading some cells after using functions which changes sheet's size (xlsx)
  • fixed a bug with reading tables in some xlsx files
  • fixed some bugs with partial loading/saving some workbooks in the Book::loadSheet() and Book::save() methods (xlsx)
  • fixed a bug with using non UTF-8 character encodings on Linux and Mac
  • fixed a bug with reading some data from a partially loaded workbook (xlsx)

New methods:

  • Book::removeVBA()
  • Book::removePrinterSettings()

The LibXL library can be used with MBS Plugins in Xojo and FileMaker. Updated plugins will be available soon. As usual we add the new functions soon. If you need help or want to try the new version early, let me know.


Custom progress bars for FileMaker

At the Spanish developer conference an attendee asked me about whether we have something to show a nice colored progress bar in a portal, preferable possible for Web Direct, too.

 

After a bit of research, I found an easy way to do this with MBS FileMaker Plugin and without using web viewers and JavaScript. We simply use GraphicsMagick functions to generate a nice picture on demand and show it as a container field. This can either be a script to generate the picture on the fly using a trigger. Or it can be a calculated field to generate it when needed. In both cases you can trigger the recreation of the image by changing a field with the percent value.

First let us show you the sample script. It creates a 300x30 Pixel big image with white background. Then we take the color from a field and if the color is "auto", we calculate the color based on a formula based on the percent value. Once we got a color, we draw a 20 pixel wide line with round caps with the background color. That background color for the bar is dynamically calculated to be lighter than the actual bar color. After the background bar line we draw the normal color bar on top. And save it to the container field, so FileMaker shows it. Don't forget to free the image on the end and avoid the memory get filled with images.


(more)

Conditional Formatting in Excel exports from FileMaker

For MBS FileMaker Plugin 14.2 we include new XL functions to create conditional formatting in an Excel file created in a script. While you can always load an existing document with conditional formatting or diagrams and just fill the cells with data, we now can create the rules for conditional formatting in a script. Let us show you four examples from our example file.

 

Highlighting cells that begin With the given Text

 

This example defines a conditional format with a bold font. The conditional formatting is applied for the cells in the range B3:B11 to highlight all cells that begin with 'a'. The XL.ConditionalFormating.AddRule function allows you to define rules with various conditions like to highlight empty cells, duplicate or unique values, values starting or ending with a value or by an expression. 

 

Set Variable [ $cFormat ; Value: MBS("XL.Book.AddConditionalFormat"; $book) ]

# set font to be folder

Set Variable [ $font ; Value: MBS("XL.ConditionalFormat.Font"; $book; $cFormat) ]

Set Variable [ $r ; Value: MBS("XL.Font.SetBold"; $book; $font; 1) ]

Set Variable [ $cf ; Value: MBS("XL.Sheet.addConditionalFormatting"; $book; $sheet) ]

Set Variable [ $r ; Value: MBS("XL.ConditionalFormating.AddRange"; $book; $cf; 2; 10; 1; 1) ]

Set Variable [ $r ; Value: MBS("XL.ConditionalFormating.AddRule"; $book; $cf; 0 /* BeginWith */; $cFormat; "a") ]


(more)

CURL Up 2024

Recently Daniel Stenberg, the main developer behind the CURL project, announced the curl://up conference for 2024:

curl up 2024 will take place in Stockholm, Sweden in early May.

📅 May 4-5, 2024
📍 Stockholm, Sweden 🇸🇪
🏨 Best Western Hotel
🎤 English
🌍 github.com/curl/curl-up/wiki/2024

Anyone interested in the CURL project is welcome to join the conference!

For details, please check the website.

Monkeybread Software is proud to be a sponsor for the curl project and we will join the conference.


FileMaker Conference dotfmp.berlin 2024

Did you sign up for FileMaker Conference dotfmp.berlin 2024?

This conference is organized by Egbert Friedrich and takes place from 6th to 8th June 2024 in Berlin, Germany.
Already over 60 people from 16 countries: 🇩🇪, 🇬🇷, 🇳🇴, 🇨🇭, 🇨🇦, 🇺🇸, 🇦🇹, 🇩🇰, 🇪🇸, 🇬🇧, 🇧🇪, 🇫🇷, 🇸🇪, 🇮🇹, 🇳🇱 & 🇷🇸.

As the conference is in English, this is your chance to meet people from around the world at a conference in Europe. And for a lot of people it's easier to get to Berlin than to cross the atlantic and deal with US immigration officers.

Who
dotfmp is an effort of various leading European FileMaker Developers. It is meant to bring all kinds of higher level developers together to share knowledge, educate and challenge each other.
When
dotfmp starts at the 5th June 2024 in the later afternoon with a relaxed "Beer and Sausages" in one of the most famous Berlin Beergarden. The session days itself last from 6th until 8th June with various socializing events in the evenings.
What
dotfmp is a 3 Day-Unconference, Meetup, Hangout or Barcamp. It is an informal and self-organized effort to meet on a personal base.
Where
dotfmp takes place in one of the most famous spots in Berlin. The Schankhalle Pfefferberg is located in a vibrant area with a very short walking distance to all the famous restaurants.
Why
We feel there are far too few possibilities to talk to, learn from, and hangout with fellow developers in a relaxed and informal environment. And we'd like to share work and get feedback from people chewing on similar challenges.


If you like to join the conference and present something, please register soon.

Page Layouting in DynaPDF

You can do a lot of PDF things with the DynaPDF functions in MBS FileMaker Plugin. One of them is layouting text and images on a PDF page.

Let us show you the output of a new example we made for a client. On the left you see the final page and on the right side the same PDF but with visible boxes for the text output.

As you see on the test page, we got a couple of cool things here:

(more)

MBS FileMaker Plugin - Valencia 2024

A recording of my presentation for codewave.es. The Spanish FileMaker conference took place in Valencia from 22nd to 23rd March 2024 and was well received. I talked about what is new in 2024 for MBS Plugin for Claris FileMaker.

All movies   Watch on YouTube.   MBS-2024-Valencia.mp4 (578M)

(more)

MBS FileMaker Plugin, version 14.2pr1

New in this prerelease of version 14.2 of the MBS FileMaker Plugin: Download at monkeybreadsoftware.com/filemaker/files/Prerelease/, in DropBox folder or ask for being added to the DropBox shared folder.

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


Company's 24th Birthday

Once again we have April and thus we celebrate the 24th anniversary of our company this monday.



Time flies and it wasn't long ago, where we had to cancel the 20th anniversary party. We already started to plan the party for the 25th birthday!

Thanks everyone for supporting us over the years and see you at the next conference!

If you have a wish for a new plugin function, feel free to send us a message.

Read Invoices from P7M files in Italy

Electronic invoices in Italia are nowadays sent as P7M files, digitally signed with a XML and PDF content. Checkout the details about FatturaPA format if you are interested. For storing XML in a PDF or extracting it, please check our DynaPDF functions. Since you may need to receive and decode such P7M invoices, even if you are not in Italy yourself, we have some sample code to handle this below:

 

First thing is to use PKCS7.ReadFromContainer or PKCS7.ReadFromFile to read in the P7M file and get the reference number. If that works, we can query the main content block of the P7M file with the PKCS7.SignedDataContent function. That block is the XML embedded in the P7M file.

(more)

MBS @ FMTraining.TV - Web Scraping with the MBS Plugin - FileMaker MBS Q&A

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk about a lot about WebView functions.

(more)

MBS @ FMTraining.TV - Error Capturing with the MBS Plugin - FileMaker MBS Q&A

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk a lot about error handling in MBS FileMaker Plugin. Please check the IsError function to check if last function reported an error. Then check ClearErrors, HadErrors or ErrorLog functions.

(more)

MBS @ FMTraining.TV - PDF Manipulation using DynaPDF and the MBS Plugin - FileMaker MBS Q&A

Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.

A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.

We talk a lot about our DynaPDF functions and a few other details.

(more)

Older blog entries:

2024-03-19 New in MBS FileMaker Plugin 14.1
2024-03-14 MBS @ FMTraining.TV - Integrate FileMaker MBS features in a Database
2024-03-12 MBS Plugin 14.1 for Claris FileMaker
2024-03-12 Neues MBS Plugin 14.1 für Claris FileMaker
2024-03-08 Copy the full field specification
2024-03-07 MBS FileMaker Plugin, version 14.1pr6
2024-03-07 MBS @ FMTraining.TV - FileMaker MBS 14.1 Preview
2024-03-06 DynaPDF Licenses and ZUGFeRD invoices
2024-03-06 MBS @ FMTraining.TV - New examples for FileMaker MBS Plugin
2024-03-03 Ten FileMaker Conferences
2024-03-02 FileMaker Konferenz 2024 in Malbun - Zimmer buchen
2024-03-01 MBS FileMaker Plugin, version 14.1pr5
2024-02-28 Overlay windows for FileMaker
2024-02-27 MBS at FileMaker en Valencia
2024-02-26 MBS FileMaker Plugin, version 14.1pr4
2024-02-20 ISO FileMaker Magazine: MBS JavaScript Power
2024-02-19 iODBC update needed
2024-02-19 MBS FileMaker Plugin, version 14.1pr3
2024-02-16 Printing a WebViewer in FileMaker
2024-02-15 Use MapKit to validate addresses

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
XML: RSS Feed XML: Atom Feed