Error 1045 in Xojo 2025r2
I have an error DatabaseException when i run my code in Xojo 2025r2 But it’s fine in Xojo 2025r1.1 My connection code is backoffice = New MySQLCommunityServer backoffice.Host=“localhost”...
View ArticleQuietly made its entry at the top of the roadmap
Well at #2, so almost: Why isn't Xojo IDE AI on the roadmap? - #36 by Emile_Schwarz 4 posts - 3 participants Read full topic
View ArticleDo open webThreads slow performance
I’m starting to use numerous web threads so things happen while the user is fumbling with the UI. Does having the threads open but not running slow things down? Do I need to keep them closed until...
View ArticleCan transfer or activate my licence on 2025 r2
i ran xojo 2025 1.1 and i builed apps, now i try to activate my licence on 2025r2, tried to download file from my xojo account, it says in need to transfer it, so i do. when i try to build app my...
View ArticlePlease Share! Webinar Today - Migrating from FileMaker
Migrating from FileMaker to Xojo If you are searching for FileMaker alternatives, learn what Xojo has to offer. FileMaker developers use Xojo for a variety of reasons, including lower cost, more...
View ArticleWhere to safely store database credentials
Hi, I’ve been a casual on/off RB/RS/Xojo user over the years, but haven’t really used it in anger since (checks licenses) 2006! I bought a Web license recently as being a backend developer with...
View ArticleWeb app - separate pages or load content via containers?
Hi, I’m trying to work out what is the standard way (if one exists) to structure a multiple page web app. In other frameworks such as Django, Laravel etc, I would create an HTML template which pulled...
View ArticleNew HTMLViewer Session
I’m running into a situation where I need my DesktopHTMLViewer to start a new session - that is, remove all history, cache, cookies, then reload the page. I’ve tried doing this with Javascript but it...
View ArticleXojo2025R2: WebListBox using DataSource class is missing column header
I have just did new build using Xojo2025 this morning, I have noticed that the column header for the WebListBox is missing (this is using DataSource class), the WebApp is also using CSS. I am not sure...
View ArticleYear of Code 2025: July Project, Charting
Originally published at: Year of Code 2025: July Project, Charting – Xojo Programming Blog July’s Year of Code theme is charting. Charting uses the DesktopChart, WebChart or MobileChart controls to...
View Article2025 Year of Code: July is Charting
Hi everyone and welcome to month 7 of the 2025 Year of Code! This is the thread to share your Charting project. Charting uses the DesktopChart, WebChart or MobileChart controls to make your data stand...
View ArticleContextual menus - can they only have text?
I have a contextual (right-click) menu for editing the object you’re clicking on. Most of these edits can be done with standard menu items. But I’d like to offer something like the MacOS right-click...
View ArticleHow to g.DrawLine not rounded
Hi everyone. I’m drawing a line. but the line is rounded on the end. how to make it straight? Alex 2 posts - 2 participants Read full topic
View ArticleWindows 64 ARM version
Hi! Is it possible to have a Windows 64 ARM version for debugger? Another thing related… Be able to compile multiple versions of apps all at once… Like Linux 64 Intel AND Linux 64 ARM…? Best regards,...
View ArticleClient-Side Responsive Layout in Xojo Web
Hi everyone, I’m trying to create a fully client-side responsive layout in Xojo Web using CSS flexbox to avoid server-side resizing logic that slows down the app when many controls are present. I...
View ArticleWrite an MCP-Server in Xojo
Hi, As i find the concept of MCP quite interesting and the fact xojo is at least in my environment used very often to create internal used tools with its own data and presentation - i think the value...
View ArticleSurprise: AI Slows Down Experienced Devs By 19%
An interesting and surprising article! threadreaderapp.com Thread by @METR_Evals on Thread Reader App @METR_Evals: We ran a randomized controlled trial to see how much AI coding tools speed up...
View ArticleWebListBox con DataSource - Posicion y Ancho de Columnas
Hola Chicos, necesito saber la posicion y ancho de las columnas del encabezado de una WebListBox con una base de datos MYSQL… Necesitaria saber el Left y Width de cada Columna/Titulo… Seria algo asi...
View ArticleMake NSPopoverMBS transparent?
I’m trying to see if I can make an NSPopoverMBS transparent, but the only luck I’m having is making the contents of the popover transparent, instead of the background. Anyone have any ideas? 2 posts -...
View ArticleMax Size of Downloadable Compiled FIle
I have a program I’d like to sell on the Internet. I’m using GoDaddy for a website. Would someone be able to tell me 26679 KB (26.679 MB) compiled program is too large to download? Would the program...
View ArticleAndroid Image Buttons
Hi all I’m struggling showing a Picture in a MobileControl on Android. Basically, I need to show a set of controls with pictures, and allow the user to select one. On iOS I use a border colour to show...
View ArticleDesktopHTMLViewer Error Event
Using 2025.2 mac I am trying to catch a 404 status in a HTMLViewer. The docs list the Error event with parameters ErrorNumber, ErrorMessage, which would be what I need. However the actual event as...
View ArticleExtract first sequence number in string
'Var textin As String = "AB3225JZTHG " Var re As New RegEx re.SearchPattern = "\\d+" Var match As RegExMatch = re.Search(textin) If match <> Nil Then Return match.SubExpressionString(0) Else...
View ArticleIDE finds things you can't access?
I created an iOS app named Pinch-Zoom-Scroller to get that working with a Canvas. Getting satisfying results, I started working on a new app that would use that code. Silly me, I just copied...
View ArticleHow to use drawPicture dynamically?
Hi everyone! How are you? I have this code: For p=0 To t // works g.DrawPicture(score0, x, y) // Parameter "image" expects class Picture, but this is type String. g.DrawPicture("score" +...
View ArticleReformatCode.xojoscript broken Xojo 2025v2
Mac Sequioa 15.5 I’ve been using this script from Julian for years. It works fine for me in Xojo 2025r1.1, but appears to be broken in Xojo 2025r2. The issue is this: if I write a line of code with a...
View ArticleMake fingerprint or face recognition more secure
Android supports UserAuthentication control in xojo 2025 r2, which can call fingerprint recognition, but I think a UID parameter should be returned in the AuthenticationSucceeded event, which is the...
View ArticleAnimated Gif on Canvas
Hello everyone! I saw some topics about GIF on canvas, but not found what i need. To “play” a gif on canvas, do i need to split the image frame by frame, or is there another way to do? Alex 2 posts -...
View ArticleTCPSocket failing
I’ve written a Mac desktop application that uses RS-485 to control my Somfy shades. It’s been working for several years but has lately started dropping my TCP connection on another socket. I use a...
View ArticleDelay not working
hi! i have this desktop pressed event: Sub Pressed() Handles Pressed For i As Integer = 1 To 3 Me.Caption = Str(i) delay(1,"s") Next End Sub and this is the method: Public Sub delay(delay as integer,...
View Article