About two months left until we start our MBS Xojo Developer Conference in Andernach, Germany.
With a recent registration from Belgium, we got over 40 people from 13 countries:
🇩🇪, 🇳🇱, 🇬🇧, 🇺🇸, 🇫🇷, 🇨🇭, 🇪🇸, 🇨🇦, 🇵🇱, 🇦🇹, 🇩🇰, 🇸🇪 & 🇧🇪
Friday dinner
For the friday dinner, we will go to the Taverne Olympus, a greek restaurant in Andernach. Family Thomopoulos runs this place successfully since 1981 and looks forward to serve us greek specialties.
We meet 17:40 o'clock outside the hotel and walk over to the restaurant. We may need 15 minutes for about 950m. Basically to the Rhein gate, op the alley and then left the Hochstraße and then walk through the Koblenz gate and follow the Koblenz street to the restaurant on the left side.
If you can't join us for the restaurant, please let us know, so we don't waste a spot. From the restaurant, you can leave at any time to get your train. The station is 1.1km away through Am Stadtgraben and Bahnhof street.
We may be limited to 40 people there. But we assume a few of you leave friday after the last session.
(more)
For
MBS FileMaker Plugin 14.1 we have new
Overlay functions for you. These allow you to create windows without the usual system border and provide the whole content as a picture. This can include transparent areas, so you can make round windows if you like. You may receive mouse clicks with a script trigger as well as mouse moving in and out of the overlay. That's a great functionality and you may use it for various usages:
Splash Screen
When your solution opens, you could show a nice graphic as splash screen from the start script. While your solution does some work like opening more databases, you can keep the window showing. When the start script finishes its work, you can close it.
Custom Navigation
You can have custom buttons outside or over your windows to provide actions for users. That may be a navigation bar, where you use the mouse trigger to perform actions and provide shortcuts to launch scripts.
(more)
We look forward to join the Spanish FileMaker conference coming up end of March 2024:
Friday, March 22 and Saturday, March 23, 2024
Hotel Valencia Oceanic Affiliated By Meliá
In Valencia, Spain
See website codewave.es
MBS sponsors the event and I will be there to show off some MBS Functionality and answer questions. See you there!
(more)
New in this prerelease of the 24.1 plugins:
Download:
monkeybreadsoftware.de/xojo/download/plugin/Prerelease/ or
from DropBox.
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.
New in this prerelease of version 14.1 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.
Let's say you make a library, a plugin or just your own set of classes. You use them in various applications, so you add them to your projects. But you don't use all parts always. If you can segment them and maybe help the Xojo compiler, it can strip out unused project items and produce smaller applications.
Use cases may be one project, which can be compiled to both the full version and a demo version. Or a Pro and a Lite version. Or a viewer vs. editor version of the application. Or simply you have a ton of utility classes, but don't need them for the current app. Then you would like to not include all the parts.
We use various of this techniques with MBS Plugin to reduce the size of your built applications. We actively avoid dependencies between plugins as much as possible.
Project Items
The Xojo compiler can strip out whole items in the project. A window that is never referenced in the current version, will be stripped. You can wrap the only reference for one part in a #if section and avoid referencing it in the smaller app version:
#if ProVersion
Dim e as new EditorWindow
e.show
#else
MessageBox "Please buy Pro version."
#endif
You may define boolean constants in a module to do this. Toggle them either manually, via IDE scripting or build steps with scripts. This also helps with target constants to only include some items that are only for one platform:
#if targetWindows then
WindowsModule.DoSomething
#elseif targetMacOS
MacModule.DoSomething
#endif
The other module can be stripped. Same for images, classes, controls, windows and other project items.
(more)
About two months left until we start our MBS Xojo Developer Conference in Andernach, Germany.
More attendees
We got a few more registrations so we can add Denmark, Sweden and Austria to the country list:
🇩🇪, 🇳🇱, 🇬🇧, 🇺🇸, 🇫🇷, 🇨🇭, 🇪🇸, 🇨🇦, 🇵🇱, 🇦🇹, 🇩🇰 & 🇸🇪
New Session
Jeremy will come and talk about handling exceptions. Of course you can ask him questions about mobile development as he has a very successful iOS app business using Xojo.
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.
by Jérémie Leroy
(more)
Check out the FileMaker Magazine website. Matt Petrowsky provides a huge collection of training videos around FileMaker. And recently he started a series of videos about our MBS Plugin:
Watch it on filemakermagazine.com and subscribe to his YouTube channel. The free preview is 15 minutes and the full video is 54 minutes.
Matt shows what cool things he built with our JavaScript and JavaScriptWebKit functions.
More videos from Matt about MBS Plugin in this playlist.
Recently a few clients run into a problem with using ODBC databases:
IM004 [iODBC][Driver Manager]Driver's SQLAllocEnv() failed
The ODBC manager (called iODBC) can't load the ODBC driver for the database you like to connect to. By default on macOS we load "/usr/lib/libiodbc.2.dylib" as the ODBC manager, but this library seems to be outdated.
(more)
New in this prerelease of version 14.1 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.
New in this prerelease of the 24.1 plugins:
- Updated DynaPDF to version 4.0.83.243.
- Implemented better MovableByWindowBackground for OverlayMBS class on Windows to work with mouse events.
- Fixed a bug in DateDifferenceMBS class related to an overflow in January.
- Enabled allTouches in NSEventMBS class for macOS.
- Added touchesBeganWithEvent, touchesCancelledWithEvent, touchesEndedWithEvent and touchesMovedWithEvent events to CanvasGesturesMBS class.
- Fixed an issue in MBS Xojo SQL Plugin where an error message would be cut on the first character improperly encoded.
- Improved MBS Xojo SQL Plugin to better return error messages if the ODBC driver provided them with ASCII instead of UTF16/32 encoding.
- Added willShowContextualMenu and didCloseContextualMenu events to 34 controls.
Download:
monkeybreadsoftware.de/xojo/download/plugin/Prerelease/ or
from DropBox.
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.
At Claris Engage we got the question about how to print a web viewer in FileMaker. While FileMaker has nothing built-in in that direction, we can provide a solution in our
MBS FileMaker Plugin with the
WebView.Print function.
Print
You can add a print button to the layout, assign it a "Set Variable" script step to run and then call MBS( "
WebView.Print"; WebViewerRef ) there. For the WebViewerRef parameter you can pass the name of the web viewer and our plugin should find it on the current window. For more difficult cases you can use
WebView.FindByName and specify the window with a window reference.
It may be useful to tune the website beforehand with some JavaScript or CSS to hide content you don't want to print. Our documentation website uses extra CSS files for media=print, so we can hide the sidebar with navigation for a print out. If you like to hide something for your printout, you may want to use a bit of JavaScript with
WebView.Evaluate to hide an element:
document.getElementById('HelpNavigation').style.display = 'none';
We frequently hide things like navigation bars, advertisements or the headers/footers from a website.
(more)
Recently a client asked if we could help on entering addresses. Like to fix typos, lookup zip codes or split addresses into fields like for street name, house number and city. We got an idea and made a new sample file for you to validate address with MapKit.
(more)
New in this prerelease of version 14.1 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.
New in this prerelease of the 24.1 plugins:
- Updated our headers for NetSNMP library.
- Added AVSpeechSynthesizerMBS and related classes.
- Changed SetLicenseKey in DynaPDFMBS class to raise exception if you call it in debug mode after calling SetLicenseKeyGlobal to suggest you to remove the SetLicenseKey call.
- Updated DynaPDF to version 4.0.83.242.
- Changed Bounds, GPTS and LPTS in DynaPDFMeasureMBS to be double.
Download:
monkeybreadsoftware.de/xojo/download/plugin/Prerelease/ or
from DropBox.
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.
At Claris Engage we learnt from Wim Decorte that it may be better to disable advanced tools if possible. Quite a few ways to hack a FileMaker solution go by using the debugger to check scripts or data viewer to read or evaluate some things. Advanced tools are great for developers, but normal users may not need these tools. You can use the checkbox in the preferences dialog:
Let's go and check via plugin on whether advanced tools are enabled. You may have scripts check for this and or react on the outcome. e.g. if enabled and user is not developer or admin, then disable it automatically for the next launch of FileMaker. Or included the status in some reporting to server, so you know which user has it turned on.
(more)
After five years of pause, Claris finally invited everyone to an in-person conference. It was a bit different with a chance to visit an Apple campus in Austin, Texas. About 620 people came and we had a great conference.
The weather was great for winter times. We feared it could be cold and freezing, but it turned out to be a very nice week with sunshine and above 20 degrees Celsius. I could walk outside with just a t-shirt.
These office buildings from Apple are phenomenal. Well designed with a lot of details to discover. We had over a dozen meeting rooms for presentations and lots of smaller rooms in various sizes for your own meet-ups. And the basement has a nice theater with a few hundred seats for the big sessions. The keynote was split in two rooms since all people don't fit in one room here.
(more)
Here is a list of which FileMaker version includes which CURL version:
FileMaker version | CURL Version |
11.0.4 | 7.19.4 |
12.0.5 | 7.21.6 |
13.0.9 | 7.21.6 |
14.0.4 | 7.38.0 |
15.0.3 | 7.44.0 |
16.0.4 | 7.51.0 |
17.0.3 | 7.58.0 |
18.0.3 | 7.62.0 |
19.0.1 | 7.62.0 |
19.1.3 | 7.62.0 |
19.2.1 | 7.62.0 |
19.3.1 | 7.62.0 |
19.3.2 | 7.62.0 |
19.4.1 | 7.62.0 |
19.5.3 | 7.76.0 |
19.6 | 7.83.0 |
20.1 | 7.83.0 |
20.2 | 7.83.0 |
20.3 | 7.83.0 |
(more)
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.
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. First 25 tickets are sold already!
When a client asks you whether you can do something in FileMaker, please don't just check FileMaker documentation, but also check if MBS FileMaker Plugin has something for you. Over the past 18 years we got a lot of requests and consequently added a lot of functionality to our plugin. Let's show you a few examples:
Switch printers
While FileMaker has a printer setup script step, you may prefer to use our plugin to switch printers and set various options like which tray to use or whether to print color or b&w. Our plugin has functions to control the printer on macOS and Windows and allows you to automatically lookup the best printer in the database for each workstation in a company. Then print to the nearby printer and dynamically pick paper source, format and collation options.
(more)
For a few years now it is possible to load an extension both in MBS Xojo SQL Plugin using SQLite as well as into Xojo's built-in SQLiteDatabase. But now we have something new for you here:
You can register custom functions to use in the SQLite database and define them in Xojo.
(more)
New in this prerelease of the 24.1 plugins:
- Added MovableByWindowBackground property for OverlayMBS class.
- Added requestWriteOnlyAccessToEvents, requestFullAccessToReminders and requestFullAccessToEvents to EKEventStoreMBS class.
- Updated dyncall library to version 1.4.
- Added new kCallMode* constants for DeclareFunctionMBS class.
- Changed MidiThruConnectionMBS class to be a subclass of MidiObjectMBS class.
- Added Find method to MidiThruConnectionMBS class.
- Changed kOptionLibrarySeparator in SQLConnectionMBS class to be a shared method to return ";" on Windows and ":" on macOS/Linux.
- Improved Data Detector example to include a contextual menu routine for showing actions based on NSDataDetectorMBS class.
- Fixed a problem with MacBase and CURL plugin loading on older macOS versions.
- Implemented IgnoreMouseClicks for Windows in OverlayMBS class. Allows mouse clicks to fall through to window behind.
- Fixed PortAudioStreamRecorderMBS to enforce sample format paFloat32 when using OpenStream() to prevent errors later.
- Added SQLiteFunctionMBS class to add custom SQLite functions for SQLite database connections.
- Added Path property to InternalSQLiteLibraryMBS module.
- Added NWPathMonitorMBS class for macOS/iOS to monitor available network.
- Added NSProcessInfoPowerStateDidChangeNotification for NSProcessInfoMBS class.
- Added NWPathMBS, NWEndPointMBS and NWInterfaceMBS classes.
- Updated SQLite to version 3.45.1.
- Added new variant of FromDiff method in JSONMBS class with KeyToCopy parameter to copy primary keys.
Download:
monkeybreadsoftware.de/xojo/download/plugin/Prerelease/ or
from DropBox.
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.
New in this prerelease of version 14.1 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.
Our Xojo conference in Andernach comes closer week by week and we are very excited to host you all in our homeland.
On the last weekend I walked to the Krahnenberg outlook over Andernach. That is a hike you could do if you have an hour or two of spare time in Andernach. The shortest and steepest way is 1.3 km from the Einstein Hotel, but a longer 2.4 km way over road is available or a 2.0 km way along the Rhine and up through the forest.
(more)
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.
Let's take the FileMaker iOS SDK to make an application for iPhone first. Basically we follow these instructions from Claris. Then we run it in the Vision OS simulator. We explore what visionOS offers and even integrate the MBS FileMaker Plugin. Finally we build an iOS app to run on macOS.
(more)