Skip to content

Xojo Programming Blog Posts

HP Stream 7 and Xojo

Lately we’ve been talking a lot about our newly added iOS support for Xojo. Considering the popularity of iOS devices, it is understandable why we would be so excited. But iOS devices are not inexpensive.

On a lark, I purchased an HP Stream 7 (Signature Edition, which means no extra “bloatware” was installed) last week from the Microsoft Store. It was on sale for just $80! So what is an HP Stream 7 and how does it relate to Xojo?

Comments closed

Iterators

One feature that was added in Xojo 2014r3 that I haven’t seen much discussion about yet is iterators. In short, iterators are a way to make classes useable with the existing For Each loop feature.

Comments closed

Coding To Be Lazy

I know a lot of people like to write their local variable declarations like this:

dim i, i, j as integerdim k as double, s as string, b as boolean

Personally, I don’t and the reason is not that I like typing…

Comments closed

Guest Post: Learning Xojo

Bob Keeney has been an active member of the Xojo community since 2001. BKeeney Software has offered Xojo consulting work for 15 years with happy clients all around the world. Bob blogs regularly on Xojo and developer topics at www.bkeeneybriefs.com.

I think that Xojo is an amazing product. Clients love the simplicity and power of Xojo which is not found in many software development products. Part of what makes it a great product to work with is the wide array of options to learn more about the language- whether it’s for someone who’s new to programming trying to get an introduction to the language or for an experienced programmer trying to do a deep dive into the framework and what Xojo is capable of.

Comments closed

Xojo iOS Examples

Need some inspiration or some helpful code to get your first Xojo iOS app started? Take a look at a sampling of the iOS example apps that are included in Xojo iOS!

Comments closed

Oh, Say Can You C?

There is a “bug” here, can you spot it?

dim s as string = "abc" + chrb(0) + "def"
dim c as cstring = s
if s = c then
  msgbox "Yay our software works as we expected!!!!"
else
  msgbox "BOOOOOO!!!!"
end if
Comments closed