Advertisement · 728 × 90
#
Hashtag
#Xojo
Advertisement · 728 × 90
Post image

iOS had the charts and color pickers… now it’s Android’s turn. 🤘 Xojo 2026r1 adds MobileChart, MobileColorPicker, MobilePDFViewer, and built-in Zip/Unzip support to Android.

blog.xojo.com/2026/03/31/more-new-feat... #Xojo #AndroidDev #CrossPlatform

1 0 0 0
Post image

Xojo 2026r1 adds Watchpoints, a feature that shifts debugging from "step-by-step" to "event-driven".

blog.xojo.com/2026/03/31/watchpoints-i... #SoftwareDevelopment #Xojo #Engineering

0 0 0 0
Post image

Xojo 2026r1 just replaced the scary "Developer ID" text fields with a smart Team-based menu that automatically handles your certs and keys.

Read the deep dive: blog.xojo.com/2026/03/31/team-based-si... #Xojo #MacOS #DevTools

1 0 0 0
Post image

News from the MBS #Xojo Plugins Version 26.1

Let's check what is new in our plugins:

#Llama, JSON to TOON, OCR to PDF, Phidgets, DynaPDF, GraphicsMagick, LibXL, Quality of Service for threads, Arrays, Vision and dialog improvements.

www.mbsplugins.de/archive/2026...

0 0 0 0

Xojo Library Studio version 1.1.2 is now available with fixes for iOS target selection and handling invalid file paths.

graffitisuite.com/features/xoj...

#xojo #indiedev

2 0 0 0
Post image

Stop dragging Timer controls for one-off tasks. Use Timer.CallLater(ms, AddressOf Method, value).

Learn how: blog.xojo.com/2026/02/02/optimizing-xo...
#Xojo #CleanCode #Optimization

0 0 0 0
Post image

MBS #Xojo Plugins, version 26.2pr1

Added FromJSON function for JSONMBS class to convert TOON to JSON.

Added NLContextualEmbeddingMBS, NLContextualEmbeddingResultMBS

Added NLEmbeddingMBS and NLEmbeddingNeighborMBS classes.

www.mbsplugins.de/archive/2026...

1 1 0 0
Preview
Xojo 2026r1 Launches with New Debugging Tools and Features for Developers Xojo has unveiled its 2026 Release 1, bringing enhanced debugging capabilities, streamlined macOS signing, and new controls for web and mobile development.

Xojo 2026r1 Launches with New Debugging Tools and Features for Developers #USA #Austin #Xojo #Debugging #Development_Tools

0 0 0 0
Post image

Details on Entitlements & Provisioning: blog.xojo.com/2026/03/24/code-signing-...
#Xojo #macOS #DevSecurity

1 0 0 0

What’s your #1 debugging trick? Share your favorite tip, breakpoints, logging, introspection, or something clever?

#Xojo #Debugging #Community

0 0 0 0

Dictionary = key‑value hash.
Array = ordered list.
Pair = two‑value tuple.
true? false? 🤔

#Xojo #Collections #DataStructures

0 0 0 0
Post image

Call REST APIs from Xojo with URLConnection. Send GET/POST async/sync, set headers, handle auth, download files. HTTPS built‑in.

👉 documentation.xojo.com/api/networking/urlconnec...
#Xojo #HTTP #API

0 0 0 0
Post image

Crash‑proof your Xojo apps with structured exception handling. Catch errors gracefully using Try/Catch, prevent NilObjectException, and keep users happy.

👉 documentation.xojo.com/getting_started/debuggin...
#Xojo #ErrorHandling #Stability

1 0 0 0
Post image

Nested utility calls make code hard to read. Use Extends to turn ExtractTimestamp(CleanLogEntry(rawLine)) into rawLine.CleanLogEntry.ExtractTimestamp.

Cleaner debugging at 2 AM.

Guide: blog.xojo.com/2026/03/17/your-framewor...
#Xojo #ReadableCode

0 0 0 0
Post image

Just one month until the MBS #Xojo Developer Conference and our Training Day.

15 Countries so far

3 hotel rooms left. You like to join?

Marc Zeedar talks about using Apple Foundation Models

And Gabriel Ludosanu from Xojo joins the conference.

www.mbsplugins.de/archive/2026...

0 1 0 0
Post image

macOS app signing: Which WWDR intermediate certificate do you need?

👉 blog.xojo.com/2026/03/18/code-signing-...
#Xojo #CodeSigning

0 0 0 0
Post image

ChartDirector 7.2

The newer #ChartDirector version is included in latest MBS #Xojo plugins.

If you still use an older version of ChartDirector, you may upgrade and enjoy all the improvements in 7.x.

www.mbsplugins.de/archive/2026...

0 0 0 0

What kind of applications are you building with Xojo right now?

Internal tools, commercial products, utilities, web apps, desktop utilities, mobile apps... Share what you're working on (without revealing secrets, of course).

#Xojo #Projects #Showcase

1 0 1 0

Need to talk to another app or computer over the network? TCPSocket is probably what you're looking for, because it can connect, listen, send, and receive data using standard TCP/IP.
For secure comms, use SSLSocket.

#Xojo #Networking #TCP #Sockets

0 0 0 0

GraphicsPath creates precise vector shapes for custom UI, icons, or hit‑testing. Build arcs, Bézier curves, rounded rectangles; draw once, reuse anywhere.

#Xojo #Graphics #UI #GraphicsPath #VectorGraphics

0 0 0 0

Variant: store any data type. Numbers, strings, dates, arrays. Automatic conversion, type detection via .Type.

Var v As Variant = "123"
Var n As Integer = v // n = 123

#Xojo #DataTypes #FlexibleCode #Variant

0 0 0 0
Post image

MonkeyBread Software Releases the MBS #Xojo Plugins in version 26.1

* DynaPDF 5
* CURL with Windows CA
* LibXL 5.1
* Added PhidgetCurrentOutputMBS and PhidgetLEDArrayMBS classes
* Local AI chat with Llama
* More functions for NSWorkspaceMBS class

www.mbsplugins.de/archive/2026...

1 0 0 0

Let's be honest: most apps start with "everything in Window1" and stay that way.

But at what point does that break down? When do you actually need architecture?

What's the tipping point where you regret not structuring earlier? 🤔

#Xojo #DevTalk

0 0 0 0
DynaPDF 5 Introduction

The special discount for the DynaPDF 5 Introduction ends 15th March 2026.

If you need a new license, an update or an upgrade to a higher tier, please use it.

For #FileMaker, #Xojo, C/C++, C#, #Delphi, #Lazarus, #PHP, Visual Basic, #VBA, and VB .Net.

www.mbsplugins.de/archive/2026...

0 0 0 0

Dictionaries: lookups via hash table. Keys and values are Variants—store anything.

d.Value("name") = "test"
d.Lookup("name", "default")

Use HasKey or Lookup to avoid KeyNotFoundException.

#Xojo

0 0 0 0
Post image

MBS #Xojo Plugins, version 26.1pr8

Updated libarchive to version 3.8.6.
Updated CURL library to version 8.19.0.
Enabled native CA for CURL on Windows.

www.mbsplugins.de/archive/2026...

0 0 0 0
Post image

Moving background threads to efficient cores

For next MBS #Xojo Util Plugin, we add new functions to get and set the quality of service level for a thread:

GetQOSClassMBS as Integer
SetQOSClassMBS(QOS as Integer) as Integer

www.mbsplugins.de/archive/2026...

0 0 0 0
Post image

MBS #Xojo Plugins, version 26.1pr7

Added TitleIcon property to TaskDialogMBS class.
Updated taglib to version 2.2.1
Added SetQOSClassMBS to change the priority of a thread
Added Profiles function to GMImageMBS class.
Updated ChartDirector to version 7.2.

www.mbsplugins.de/archive/2026...

0 0 0 0
Post image

Built a macOS app? Ad-Hoc signing won't pass Gatekeeper. You need a Developer ID certificate from Apple's chain of trust.

Javier explains: blog.xojo.com/2026/03/04/code-signing-...

#Xojo #macOS

0 0 0 0
Post image

ChartDirector 7.2

We got the notice that ChartDirector received a bugfix update, so we update our MBS #Xojo ChartDirector Plugin in the next days.

www.mbsplugins.de/archive/2026...

0 0 0 0