Skip to content

Tag: Development

Android Declares

Using and writing declares for Android is very similar to other platforms. The syntax is mostly the same, but we’ve made some additions to make Declares that change Controls easier. Let’s walk through a couple of easy-to-understand Declares to show you how they’re made.

Comments closed

Filtering the Debugger

Starting with Xojo 2023r1 you’ll find a new feature in Xojo’s Debugger panel that allows you to filter the objects and variables displayed, even between different project runs! This lets you stay focused on the more important objects and variables instead of scrolling through the list of all entries.

Comments closed

Matrix Math

A feature in some other languages you may have seen is something called matrix math. These are operations you can perform on matrices, which are 2-dimensional arrays. Xojo does not have any matrix math functions built in, but using the Extends command you can add your own.

Comments closed

Rate Limiting a Web Application

In this blog post I’ll show how to add rate limiting to your web application.  Rate limiting is used to frustrate abuse of your application by limiting access. The same technique can be used to limit access to your API server by recording the user’s ID instead of IP Address.

Comments closed

New Web SDK Examples in 2022r4

There are situations where the included controls and widgets aren’t enough. Maybe the specs of the project require the use of one or more of specific JavaScript libraries, or you just need some code to be executed in the browser. The Web SDK can help, giving you the opportunity to build anything. In 2022r4 we are adding more examples, to help you start building your custom controls.

Comments closed