Special guests at the MBS Xojo Conference in Berlin

Just five weeks till the MBS Xojo Developer Conference in Berlin.

Have you seen the list of guests coming to our conference?
  • Geoff Perlman, CEO and Founder of Xojo, Inc.
  • Travis Hill, engineer at Xojo, Inc.
  • Stéphane Pinel, build engineer at Xojo Inc.
  • Ulrich Bogun, German Xojo Evangelist at Xojo Inc.
  • Antonio Rinaldi, Italian Xojo Evangelist at Xojo Inc.
  • Javier Rodriguez Menéndez, Spanish Xojo Evangelist at Xojo Inc.
  • Jens Boschulte from DynaForms GmbH will be present to answer questions regarding DynaPDF library.
  • Jérémie Leroy, developing custom controls for Xojo
  • Carol and Bob Keeney from BKeeney Software Inc.
  • Marc Zeedar, publisher or the Xojo Developer Magazine
  • Björn Eiriksson from Einhugur, plugin developer.
  • Yousaf Shah from DataTherapy Limited
And of course a lot of regular attendees. With over 70 attendees this is our biggest conference.

For Geoff Perlman this is the first European conference since 2008. Your chance to talk to the CEO of the company and ask all your questions without traveling to the USA. Along with Geoff comes Travis Hill, the developer who is in charge for Android.

From Europe we will have all four local Xojo employees: Stéphane Pinel from France, Ulrich Bogun from Germany, Antonio Rinaldi from Italy and Javier Rodriguez Menéndez from Spain. Your chance to talk to someone from Xojo in French, German, Italian or Spanish.

If you have questions about DynaPDF, be sure to ask Jens Boschulte about his library. The plugin part is from me, so for plugin questions check with me. But if you need new PDF features, ask Jens and once he adds them, I can update the plugin.

Carol and Bob Keeney join us and can show you the BKeeney products like Shorts, FTC and Active Records. With over ten years of consulting experience you can learn from them how to do contracts, handle clients and run a Xojo consulting firm.

You may be a subscriber of the Xojo Developer Magazine. Marc Zeedar, the publisher of the magazine, will attend our conference. Be sure to talk to him about how he automates the production of the issues. If you like to get one of the year books, you can email him to bring you a copy.

For the first time we could get Björn Eiriksson to leave Iceland and join a Xojo conference. Björn creates plugins for Xojo for over 15 years and is great guest to have.

Finally Yousaf Shah will talk about running a business, David Cox about web apps, Mattias Sandström and Heinz Jürgen Groß about their Raspberry Pi projects.

And there is you: Bring your computer with your projects. Show your projects and see what others do. Learn from them how they solved problems and implemented great features. If you found an issue with Xojo, demonstrate it to a Xojo engineer. Sometimes the direct contact helps to identify a bug or add a little feature right away.

Registration and more Information on our website.

Xojo and FileMaker meetings in Arizona

As you know I come to attend the FileMaker DevCon 2017 in Phoenix Arizona.

Now I stay a few extra days in Phoenix and I thought we could have a meeting for local Xojo and FileMaker developers:

Xojo Meeting in Phoenix
Xojo Meeting in Tucson
FileMaker meeting

I know I have over 20 Xojo developers using my plugins in Phoenix alone. A few more live down in Tucson, so maybe I could make a trip to visit Tucson and meet them.
And a few FileMaker people may not be able to join the conference, but still have time for a casual meeting.

So my offer as usual: I reserve a table in a nice restaurant and be there. You can join and we can shop talk all night. Ask me plugin questions, bring your laptop and show projects.

If you are interested, please add yourself to the survey. And please make sure I know your email address, so I can contact you with details on the location. Suggestions are welcome!

MBS Releases the MBS Xojo UDP Socket Kit in version 1.0

Nickenich, Germany (March 29th, 2017) -- Monkeybread Software releases version 1.0 of the MBS Xojo UDP Socket Kit.

The MBS Xojo UDP Socket Kit provides you with a new socket class to use UDP Sockets in your Xojo iOS application.

UDP Socket class:
  • Create socket
  • Send message
  • Events like DidFinishPlaying
  • Listen on a port for incoming data
  • DataAvailable event for incoming data
Wrapper Features
  • For Xojo 2015r1
  • Using exception handling to track error
  • Test code included
  • All classes with MB postfix to avoid name conflicts.
  • Inline documentation
  • Full Source code, no encryption
  • Works for 32bit and 64bit targets.
Our UDP Socket Kit requires Xojo 2015r1 or newer.

The UDP Socket Kit is available for $99 USD or 79 Euro (+VAT if needed).
Buy Now or get all our iOS Kits in one set: Buy Set.

You can learn more and try the sample application on our website.
Please do not hesitate to send us comments, questions or feedback.

Xojo 2017 Release 1 Now Available

Xojo, Inc. just released their latest update to Xojo:

Xojo 2017 Release 1 is now available! This update adds more than 230 improvements, with a major focus on debugging, including 64-bit debugging and Raspberry Pi Remote Debugging.

Xojo 2017 Release 1 features:

  • 64-bit debugging for macOS and Linux
  • Remote debugging to Raspberry Pi
  • Improved printing support on Windows (now using Direct2D)
    Improved Xojo.Net.HTTPSocket on Windows
  • Code Editor improvements, such as more automatic code formatting, optional line number display and improved tab handling
  • Menu shortcut editor allows you to set and change all IDE menu shortcuts
  • WebKit HTMLViewer on Windows is now much faster and standard-compliant (uses Chromium Embedded Framework 3)
  • Support for HTML in text-based web controls
The complete list of improvements in Xojo 2017 Release 1 can be found in the release notes. Download it now!

Is your license expired? Renew today to get access to this release and all others that come out while your license is current.

I am happy to see 64-bit debugging on my Mac which allows to hunt a few 64-bit related bugs in my projects.

Please note that our plugin extensions for WebKit on Windows require plugins version 17.1 or newer. For 17.2 we plan to add more new functions there to better integrate with Chromium.

For printing with DynaPDF on Windows we still see issues. For the time being we are working on newer functions there to do printing without Xojo's graphics class and show print dialog ourselves.

Learn more about Xojo's new release at the European MBS Xojo Conference in Berlin!

Amazon S3 and other services in Xojo and FileMaker

The last weeks I worked on integrating Amazon S3 for a client. Normally using any web services is not much work as our CURL functions in the plugin handle the transfer thing with authentication and encryption. But for Amazon's web services, some extra work is needed.

So for next plugins, I implemented AWS4-HMAC-SHA256 signatures. They are required to authenticate and talk to the web services. To setup this, you pass our plugin the required informations: AWSAccessKeyId, AWSSecretAccessKey, Region, Service, Path, Domain, Verb, HashedPayload, Headers. The key and secret are available from Amazon on their website. The region defines where your server is, for me eu-central-1 with server in Frankfurt, Germany. The service in my case is s3. The path defines the path to the file, e.g. "/test.jpg". The domain can be calculated by plugin or overwritten by you. Usually it is something like s3.eu-central-1.amazonaws.com with various region names included. Verb defines which HTTP operation to do: get, put, delete or post.

The payload sent needs to be included in the signature. So if you provide the data to upload/send before our call to setup with our input functions, the plugin can hash it and include the hash. Or you provide a hash, a lowercase hex encoded SHA256. Especially when uploading a file which does not fit in memory, it may be an option to hash it yourself.

Next you can include various headers. The headers are included in the signature and passed to CURL for the transfer. Our plugin functions add extra headers for amazon and pass the URL to CURL with a few options. You can than add more options like SSL certificates and start the transfer.

The examples will show how to upload/download an image file to Amazon S3 in your bucket.
Coming soon with next plugin update.

PS: if you have older code for Amazon, you may need to update it to use AWS4-HMAC-SHA256, too. Newer regions only support the newer scheme and not the older signature system.

CURL conference

This weekend I participated in the CURL conference in Nuremberg.
It’s great to finally meet the people behind CURL and learn bow all came together and what direction they want to go. We had over a dozen interesting presentations and I learnt a lot about HTTP/2, SSL security and how people use CURL in various ways.

One of the things I learnt from a nice fellow is how to load the system certificates on Windows. I even found similar code for macOS, so next plugins can use system certificates.

So we have now 4 ways to handle SSL security:
  • Ignore it and accept all certificates.
    OptionVerifyPeer = 0 and OptionVerifyHost = 0
    No verification is done and middle man attack is very easy.
  • Use a cacert.pem file with root certificates and verify against those.
    Use this for certificate pinning. Put the certificates of your servers in a pem file and only allow those. Or get a general cacert.pem file with common root certificates.
  • Use system provided SSL functionality, see CURLNMBS class.
    Only for Mac and Windows in our Xojo plugins.
  • New: Load system certificates and verify against them.
    For Mac and Windows with next plugin version.
Please try them soon in FileMaker and Xojo and let me know if they work fine for you.
I even thought about using the system certificates by default if you don’t provide certificates, but ask to verify.

The conference was great and thanks to everyone helping. See you again some day!

MonkeyBread Software Releases the MBS Xojo Plugins in version 17.1

NICKENICH, Germany (March 14th, 2017) -- Monkeybread Software releases version 17.1 of the MBS plug-in for Xojo and Real Studio.

The MBS plug-in comprises a collection of several plug-in parts which extend the Xojo (Real Studio) development environment with 2,400 classes featuring over 62,000 documented functions. Our plugins support all three platforms Mac OS X, Windows and Linux with all project types desktop, web and console including 64-bit and ARM targets.

Some of the highlights on the 17.1 update:

The new NSOutlineControlMBS and the improved NSTableControlMBS controls allow you to implement modern table controls based on Apple's Cocoa controls. Included with the plugins are example projects to show how to replace the standard listbox with our replacements.

For CURL we now have three variants: CURLS classes come with an internal CURL, SSL and SSH library, so you can use it without installation extra libraries. For Mac and Windows the CURLN classes allow you to use native SSL. And the CURL classes without N or S allow you to use your own library files. Our examples mostly demonstrate using CURLS to show you the same behavior cross platform.

Our new ParseDateMBS function parses date and time. You specify the format of the date to parse. Same format can be used with FormatDateMBS function to format a date or time in as specific format.

The functions to edit word files can now extend tables. If your template contains a table and you want to flexible add rows and fill them, you can now duplicate a row as needed and insert it below or on the end of the table.

For Windows we implemented a new class WindowsProcessMBS as a native shell class replacement. You can launch processes and receive their output as string as well as send input to them. Optionally you can use cmd.exe to run shell commands.

You can use the WinNotificationMBS class to draw into a MDI parent window of your application. Our example shows how to draw a picture there. This class is mostly used to be notified about global events like screen resolution changes.

We updated the controls in the plugin and added new mouse events. The cocoa controls got FrameChanged and BoundsChanged events to recognize size changes.

Finally we updated PortMidi, Tidy to version 5.3.15, DynaPDF to 4.0.9.24, SQLite to 3.17.0 and CURL to 7.53.1.

See release notes for a complete list of changes.

Stammtisch in Nürnberg

On my next visit to Nuremberg, I'd love to make another FileMaker and Xojo developer meeting:

Wer hat Interesse an einem Xojo und FileMaker Entwicklertreffen am 17. März 2017 in Nürnberg?

Einfach gemütlich zusammen sitzen und über Xojo und FileMaker plaudern.
Gerne zeige ich auch neue Pluginfunktionen oder helfe bei Problemen mit euren Projekten. Einfach Computer mitbringen und was zeigen.

Bei Interesse bitte in der Liste eintragen.

MBS Xojo Plugins, version 17.1pr5

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

Xojo Stammtisch in Hamburg

On my next visit to Hamburg, I'd love to make another Xojo developer meeting:

Wer hat Interesse an einem Xojo Entwicklertreffen am 7. April 2017 in Hamburg?

Einfach gemütlich zusammen sitzen und über Xojo schnacken.
Gerne zeige ich auch neue Pluginfunktionen oder helfe bei Problemen mit Xojo Projekten. Einfach Computer mitbringen und was zeigen.

Bei Interesse bitte in der Liste eintragen.

Reminder for Xojo and FileMaker events in Netherlands

In the next days I visit Netherlands. We have two events:

Xojo Developer meeting in Utrecht, 10th March 2017.
MBS FileMaker Plugin training day in Utrecht, 11th March 2017.

If you want to join the Xojo meeting, let me know. For the FileMaker meeting you can still sign up on the MeetUp page.

See you there!

MBS Xojo Plugins, version 17.1pr4

New in this prerelease of the 17.1 plugins:
  • Updated DynaPDF to version 4.0.9.24.
  • Added NSOutlineViewMBS, NSOutlineViewItemMBS and NSOutlineControlMBS for hierarchical Cocoa listbox.
  • For the conversion to NSObject* or CFTypeRef from variant we now consider Ptr to be a valid object pointer and expect you know what you are doing!
  • Added ResourcePropertyForKey and SetResourcePropertyForKey and a lot of keys to CFURLMBS class.
  • Fixed a bug in CNLabeledValueMBS failing to return phone number value.
  • Implemented Source and Text properties for ChromiumFrameMBS and CEF3.
  • Added CURLN* classes for using built-in CURL library with native SSL on Mac and Windows.
  • Split CURLEmail classes into own plugin part, so it can stay as CURLEmailMBS and used with all CURL variants.
  • Updated CURL library to version 7.53.1
  • Added AllowsCharacterPickerTouchBarItem and AutomaticTextCompletionEnabled for touch bar to NSTextFieldMBS class.
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared Dropbox folder.

Two months till MBS Xojo Conference in Berlin

The conference is coming closer and just two months are left. If you like to come, please check soon your schedule and make your reservations for traveling.

Monkeybread Software is pleased to announce the MBS Xojo Conference in metropolitan Berlin, Germany. We meet in the lovely Ellington hotel in the center of west Berlin. The hotel is near Kurfürstendamm, the Zoo and KaDeWe. Beside our two conference days we have accompanying social programme with our dinner event and optional two training days. For the evenings we have casual get-together in the hotel bar or beer garden.

Just two months left and we already have over 70 attendees from 16 countries. This is the only Xojo related conference in the year 2017 an the biggest so far in Europe.

We are happy to have Xojo engineers join our conference. Geoff Perlman, CEO of Xojo Inc. and other engineers will join us and present news about Xojo. Bob and Carol Keeney will share knowledge about reporting and databases, Yousaf Shah will show Raspberry Pi uses and talk about running a business. Jens Boschulte, our PDF specialist and creator of the DynaPDF library will be available for questions. And of course we have a few other well known Xojo developers coming.

The schedule:

May 3rd: Xojo Training in English
May 4th: Conference, first day with dinner event
May 5th: Conference, second day
May 6th: Xojo Training in German

See website for details: monkeybreadsoftware.de/conference

Attending the conference costs regularly 499 Euro plus VAT, including food and beverage in the Ellington Hotel as well as an accompanying social program.

Sessions are to be held in English. Our conference is conceived as a networking event for the Xojo community. The conference is an ideal opportunity for sharing your thoughts and your own development experience with fellow users and developers. If you like to hold a presentation, please contact us as soon as possible. Speaker receive discounted tickets.

Registration and more Information on our website.

JPEG Quality Estimate

You can actually query an estimate for the quality setting used to save a JPEG image.

 

In FileMaker

Set Variable [$img; Value:MBS("GMImage.NewFromContainer"; Image::InputImage)]

Set Variable [$value; Value:MBS("GMImage.GetAttribute"; $img; "JPEG-Quality")]

Show Custom Dialog ["JPEG Quality used to compress …"; $value]

Set Variable [$r; Value:MBS("GMImage.Destroy"; $img)]

Or in Xojo:

dim f as FolderItem = SpecialFolder.Desktop.Child("test.jpg")

dim g as GMImageMBS = new GMImageMBS(f)

dim s as string = g.attributeValue("JPEG-Quality")

MsgBox "JPEG Quality: "+s

GraphicsMagick lets you read various attributes including EXIF, IPTC and 8BIM metadata.

The JPEG loader in GraphicsMagick checks the JPEG settings for colorspace, orientation and quality, so the same settings can be used to save the same image again.


The biggest plugin in space...

Archives

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