Category Archives: Programming

Purchased RealBASIC

This past week I purchased a copy of Real Software’s RealBASIC. I plan on doing some cross-platform programming for my uISV business. I am in the process of learning the in’s and out’s of the language in relation to cross-platform … Continue reading

Posted in RealBASIC Programming | Leave a comment

Java: Setting Native Look and Feel

Here is a little bit of code that I use to make all my Java programs display the host computer’s native user interface theme: try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { System.out.println(“Error setting native look and feel:”+e); } For … Continue reading

Posted in Java Programming | 2 Comments

Creating A Simple Cocoa Application – Part 3

Disclaimer: I am learning this stuff too. These are just a series of posts to help me remember things. If you find something in error or a better way to do something please share it with us via a comment. … Continue reading

Posted in Cocoa Programming | Leave a comment

Creating A Simple Cocoa Application – Part 2

Disclaimer: I am learning this stuff too. These are just a series of posts to help me remember things. If you find something in error or a better way to do something please share it with us via a comment. … Continue reading

Posted in Cocoa Programming | 2 Comments

Creating A Simple Cocoa Application – Part 1

Disclaimer: I am learning this stuff too. These are just a series of posts to help me remember things. If you find something in error or a better way to do something please share it with us via a comment. … Continue reading

Posted in Cocoa Programming | Leave a comment