Tip of Day: ChartTime back to date object

We had today the question how to convert back from ChartDirector time to a Xojo date. To solve this, we got this example code for you:
Function ChartTimeToDate(ChartTime as Double) As date static diff as double = 0.0 if diff = 0.0 then dim d2 as Double = CDBaseChartMBS.chartTime(2015, 1, 1) dim da as new date(2015, 1, 1) dim ts as Double = da.TotalSeconds diff = ts - d2 end if dim d as new date d.TotalSeconds = diff + ChartTime Return d End Function
As you see we calculate the difference in base date from Date and ChartTime and later use difference to convert.

Windows Error codes

From time to time we have people ask what is -2147286786 or &h800F0216 and nobody knows quickly. So I put together a table on our website to show.

Windows Error Codes

Maybe worth a bookmark for future reference?

MBS Xojo / Real Studio Plugins, version 15.3pr1

New in this prerelease of the 15.3 plugins:
  • Rewrote PHP plugin part to use PHP version 5.6.12 and work with 64-bit.
  • Added new 64-bit plugin for Mac covering Accounts, Social and EventKit classes.
  • Added gamma option to QTPictureMovieTrackMBS class
  • Updated SQLite to 3.8.11.
  • Fixed ChartDirector license check for 64-bit.
  • Fixed linking issues on Linux 64-bit to make sure we use the zlib inside plugin instead of system version.
  • Fixed SystemInformation.CPUBrandString and SystemInformation.MachineID for 64-bit.
  • Updated CURL to version 7.44.0.
  • Changed conversion code for CFDictionaries. CFData now translates to Memoryblock instead of String to work better in 64-bit apps.
  • Added classes for OSAKit framework on OS X.
  • Fixed problem in CDAxisMBS class which causes memory leaks.
  • Changed Files.Delete to use newer API.
  • Updated openssl to 1.0.2d.
  • Updated DynaPDF to version 3.0.43.127.
  • Updated libcpuid.
  • Updated NSTaskMBS to have more properties and a Terminated event.
  • Fixed bug in HotKeyMBS with locks not being released and app blocked.
Download: macsw.de/plugin/Prerelease . Or ask us to be added to our shared Dropbox folder.

More than just a wrapper

Today I want to explain some differences between using a declare for a Cocoa function call and using MBS Plugins wrapper classes.
  • You get automatic reference counting. The plugin takes care of memory management and makes sure all objects are released as appropriated.
  • Our plugin keeps references between Xojo and Cocoa objects, so we can give you the same Xojo object when a function returns us a Cocoa object and we have a wrapping Xojo object already. This saves memory and makes sure that if you subclass one of our classes, you get back your subclass object and you can access your properties there.
  • We catch exceptions and forward them as Xojo exceptions. See NSExceptionMBS class. We also have a global exception handler to make sure no NSException is raised without your app having a chance to handle it.
  • For APIs taking blocks and getting callbacks, our plugin makes sure those get dispatched on the main thread. Often callbacks occur on helper threads and cause problems if Xojo runtime calls are executed there. The Xojo runtime is not reentrant safe.
  • In most block based APIs we provide a tag parameter and also pass through most parameters. For that we properly wrap Xojo objects for you and release them later after Event is called. This makes sure that all used objects stay in memory
  • For the plugin methods, we do a lot of automatic parameter conversions. e.g. you can pass folderitems and we pass internally URL or path, depending on API. We also translate dictionaries, arrays, sets, memoryblocks and structures on the fly.
  • If we decide to wrap a framework for Apple, we normally do it 100%. So the wrapper should be complete and you should not be missing something.
Finally you have someone you can ask in case of a problem and get quick responses.

MBS Xojo Conference, Scheveningen, 18th September 2015

We are pleased to announce our MBS Xojo Conference for 2015. This is an english speaking conference located in the middle of Europe between France, United Kingdom and Germany in the Netherlands. We reserved our conference room in Bad Hotel Scheveningen in Scheveningen a suburb at the beach near Den Haag.

The conference will start on 17th September 2015 in the evening with a casual get-together. The exact location will be given earlier same day. Meet your colleagues, have a drink together and chat about what's new in Xojo world.

Our conference sessions will run on 18 September 2015 from about 9:00 to 17:00 with lunch and coffee breaks in-between. Sessions include an overview from Stephane Pinel about what is new in Xojo this year and what's on the way for the future. Christian Schmitz presents what is new for MBS Plugins. Followed by sessions of attendees.

On the evening, we offer to have dinner together with others in a casual get-together. If you like, extends your stay for more days and stay the weekend in Den Haag at the beach.

Everyone is invited to share his knowledge. Show your big Xojo projects and tell how you did solve problems and how Xojo helped you to deliver solutions quickly to your clients. Talk about Xojo related topics and what things you have to offer. If you like to get a session, please contact us with a topic description.

Registration is possible at the MBS website. Cost is 49€ + VAT. Companies inside european union do not need to pay VAT if they provide their VAT ID. All others have to pay 21% VAT which gives a total of 59,29€.

Space is limited, so be quickly. We are looking forward to meet you all there!

Building plugins for Linux on ARM

Xojo Inc. announced support for raspberry pi.
Well, actually I think they mean support for ARM CPUs running Linux, so this may not just work on the raspberry, but even on your iPhone if you install a linux there!

Anyway, I spend a lot of time today working on building plugins for linux with ARM.
In the next days I will try to get everything compiled and linked. We'll see how well that works.

Same as with 64-bit: Even if it compiles, we need a lot of time to try things.

Things that compile for ARM already include DynaPDF, LargePicture and LCMS2.

Xojo Conferences and Meetings

Some conference and meetings are currently planned:

First, we are considering doing a one day event in Netherlands on the coast. As you can read on the forum (forum.xojo.com/24703-little-xojo-conference-in-netherlands), we have a proposal and are currently looking for who is interested and to find a date. The survey already shows a couple of dates where several people can attend, but we'd like to see more votes there. Once we have a few dates with 10 people, we can sync our date list with various hotels and make reservation.

Second, I will visit both Hamburg (survey here) and Gothenburg (survey here) in October, so I look for interested developers for a meeting in a restaurant for dinner. Just a chatting about Xojo, maybe showing some pictures from XDC in Austin or talking about latest Xojo release.

Third, it may be possible that the UK group do once again a meeting in/near Birmingham in the UK. We look forward to their announcement!

And finally we still take bets for where XDC 2016 will be.

Tip of the day: AppendChildCopy

The XMLNode.AppendChild function in Xojo doesn't work well, if the new child is not part of the same xml tree as the old one. So if you need to copy from one XMLDocument to another, you need to copy the subtree. The function below does the copying and works well in one client project:

Sub AppendChildCopy(extends parent as XmlNode, other as XmlNode) // parent document for creating new objects dim doc as XmlDocument = parent.OwnerDocument dim neu as XmlNode // create matching type of node in new document if other isa XmlTextNode then neu = doc.CreateTextNode(other.Value) elseif other isa XmlComment then neu = doc.CreateComment(other.Value) else neu = doc.CreateElement(other.Name) end if // now copy all attributes dim u as integer = other.AttributeCount-1 for i as integer = 0 to u dim a as XmlAttribute = other.GetAttributeNode(i) neu.SetAttribute(a.Name, a.Value) next // copy all children dim c as XmlNode = other.FirstChild while c <> nil neu.AppendChildCopy c c = c.NextSibling wend // and store new child parent.AppendChild neu End Sub
Useful? Comments? Problems? Your feedback is welcome!

MBS Releases the MBS Xojo / Real Studio plug-ins in version 15.2

NICKENICH, Germany (August 4th, 2015) -- Monkeybread Software releases version 15.2 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,100 classes featuring over 56,000 documented functions. Our plugins support all three platforms Mac OS X, Windows and Linux with all project types desktop, web and console.

Some of the highlights on the 15.2 update:

We updated our classes for Chromium on Windows. If you use a HTMLViewer with WebKit in your projects, our new cookie manager classes help you query, create or modify cookies. This allows to store cookies persistent in a database.

The new HotKeyMBS class allows you to listen for keyboard combination on both Mac OS X and Windows. The CarbonHotKeyMBS class still works for Mac OS X projects, but the new class also works fine on Windows. You receive events when a key is pressed down and when it's released.

Our CURL plugin got a major update with a lot of new options and events. This includes wildcard support for FTP transfers. The new CURLSFileInfoMBS class provides details on files and is used for directory listings. With wildcard support, we can batch download a lot of files in one directory. For some CURL properties we now use 64-bit values by default and we set more options by default to make it easier for beginners to use the plugin.

The new ArgumentsMBS function on the app class allows you to get launch arguments for your application. This works cross platform for Mac, Windows and Linux. It helps to create desktop apps which also can be controlled by command line options or work like any other command line tool and show no user interface.

For the SQL Plugin we now include optional a SQLite library. Use the InternalSQLiteLibraryMBS module to check the library and activate it. By using the library in our plugin you don't need to include a separate sqlite library file with your application.

Finally we upgraded to the latest Xojo plugin SDK, updated DynaPDF to version 3.0.44.122 and libXL to version 3.6.2.

See release notes for a complete list of changes.

MBS Xojo / Real Studio Plugins, version 15.2pr9

New in this prerelease of the 15.2 plugins:
  • Updated system information functions to properly detect Windows 10.
  • Fixed issues with ChartDirector plugin to make it compile on Real Studio 2011r1 again.
  • Fixed bug in AVAssetWriterInputPixelBufferAdaptorMBS class.
  • Fixed memory leak in PictureMBS.Constructor with using GDI Plus pictures.
Download: macsw.de/plugin/Prerelease . Or ask us to be added to our shared Dropbox folder.
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