REALbasic Forums Notification Service

if you read the REALbasic forums, you may want to register for this email service. For every new topic posted to the forums you receive an email so you can keep up to date without looking on the forums everyday.

Go here to subscribe:
http://www.monkeybreadsoftware.de/realbasic/forums.shtml

PS: At the time of the postings this service is 2 years old :-)

Filemaker Web Forms

Our tool to find forms and fields in REALbasic and Filemaker, you can download our newer version.
Now also the links of a website are now listed.

We were in TV



yesterday we were sitting in the audience of a talk show here in German TV. Maybe someone saw us?

MBS Plugins packages distribution

I had today the question how the relation is between plugin users taking the Complete package or parts.
The distribution for 2009 is:

56% Complete Commercial
10% Complete Academic
34% Parts

Of course it may be related to the fact that as soon as someone buys a couple of parts, I offer an upgrade to complete for a little price.

See also: Worldwide spread of REALBASIC

New MBS REALbasic Updater Kit in version 1.0

Today we released our new Updater Kit for REALbasic. I hope this is a good solution for everyone using my plugins.
You can learn more and try the sample application on our website:
monkeybreadsoftware.de/realbasic/UpdaterKit

HASP SRM

For some years now we have different dongle solutions. Basicly I added all the things people asked me about. Some dongles are better, some are cheaper and some are easier to integrate. So far we support HASP4, HASP HL, Rockey, Rockey2, Unikey and Matrix dongles.
The new SDKs from Aladdin are called HASP SRM. You can use it to first envelope your whole application so it only launches when the dongle is found. Also your application is encrypted. We hope to test this soon with REALbasic applications. Second you can store data in the dongle. But for the library we need to link into the plugin for the functions, we need your help. With the HASP Tools you create yourself a customized static library. This library is signed and works only for your dongles.
So if you want to use HASP SRM, you can generate your library, send us the library and we create you a personal plugin. NDA/Contract may be required.

HUD Windows in REALbasic

You can use use Cocoa HUD Windows on Mac OS X 10.5 and newer like this:

And here is the code:
dim style as integer = NSPanelMBS.NSClosableWindowMask + NSPanelMBS.NSTitledWindowMask + NSPanelMBS.NSUtilityWindowMask + NSPanelMBS.NSHUDWindowMask + NSPanelMBS.NSResizableWindowMask

static n as NSPanelMBS = new NSPanelMBS(100,100,200,200, style, NSPanelMBS.NSWindowBackingLocationDefault, false)

n.Title = "Hello World"
n.Show

Audio Bitrate on QTMovieExporterMBS

My QTMovieExporterMBS class is very popular and from time to time I'm asked for 96 KHz support.
Actually that is supported, but not all people find it. The function you try first is SetSoundFormat, but this one is old and can't handle values above 65 KHz. So you need a different way. And I always suggest: let the user setup this and save the preferences. So you'd try the SetupDialog method which shows this dialog:

But there the higher bit rates are missing. The solution is to set EnableHighResolutionAudio to true like in this code:

The EnableHighResolutionAudio property is new in QuickTime 7 and changes a few things in background. So the SetupDialog now looks like this:

I hope this information helps a few of you.

PACE Anti-Piracy in REALBasic?

Recently I found a new website about helping to fight Piracy in software business. I think their protection model could be used with REALbasic and if someone has interest in this, I may be able to help with a custom plugin or library as contract work.
Visit Pace Website

While I do have a few general use dongle plugins, some Anti-Piracy protection systems come with a per developer library. For them I have to write a plugin for each customer using it with the library of that customer.

GaragePay

If you are using Paypal a lot (As I do), you probably have the problems with Paypal as I do: Search
Paypal has search functions but you need to enter the exact name or email address. But often I don't know it!
So if you use GaragePay you can do searches over all records in the database (for me more than 5 years) and enter the search information you have.
I often have customers where I know their domain name. I don't know what name they use for the account, their real name, some alias or the company name. And often people use an extra mailbox for Paypal. so the email address they use for support questions is not the same as for Paypal.
So I enter the name of the domain and find the records I need. I even have some smart folders defined there (like in the Finder) where I have only the payments of a single customer. In sum a cool app! Try it.
GaragePay website

REAL Server Plugin 0.5

This update adds support for regular expressions.
So you can use sql selects with the regexp operator: select * from mytable where myvalue regexp expression
More information and download

Download Mirror

Some of my US customers told me that the downloads are slow. So I installed today a server located in the USA:

Download Server Germany

Depending on your location the speed difference can be factor 4. So if you download something big, it may be worth to use the other server. Try it and tell me your speed :-)

Label printer for REALbasic

Today I got here a label printer to test: The DYMO LabelWriter 450 Turbo.
It is connected using USB and comes with standard drivers for Mac OS X and WIndows. This way you can use it in all REALbasic applications with the normal printing commands. Works very nice here for the application we needed.

Last year I had a different one which had only his own print commands so I wrote the CUPS plugin part to control it on Mac OS X. The only downside is that it supports 50 paper formats and you need to choose yours from the paper format list. Maybe an auto detection would be good.

REALbasic 2010r1 released

REALsoftware release a new version of REALbasic and as far as I know my plugins (version 9.6 and newer) work perfectly with it.
So enjoy the update.

PS: Everyone who misses the Cocoa target, should go on the REALbasic beta program. My plugins are ready for Cocoa :-)

[ANN] More Documentation Examples

one of the most common request I have is more examples. So over the past weeks I added a lot of small example code pieces to the documentation.

In September 2009 we had 2000 samples and today we have 3000 samples.

If you need an example project for something or a sample in the documentation, please send us an email or use one of the feedback links.

REAL Server Plugin 0.4

For version 0.4 I added this math functions:

LogMBS(value as double) as double
The log() function computes the value of the natural logarithm of argument x.

Log10MBS(value as double) as double
The log10() function computes the value of the logarithm of argument x to base 10.

SqrtMBS(value as double) as double
sqrt(x) returns a NaN and generates a domain error for x < 0.

PowMBS(x as double, y as double) as double
The pow() functions compute x raised to the power y.

ExpMBS(value as double) as double
The exp() function computes e**x, the base-e exponential of x.

TruncMBS(value as double) as double
The trunc() functions return the integral value nearest to but no larger in magnitude than x.

RoundMBS(value as double) as double
The round() functions return the integral value nearest to x rounding half-way cases away from zero, regardless of the current rounding direction.

FloorMBS(value as double) as double
The floor() functions return the largest integral value less than or equal to x.

CeilMBS(value as double) as double
The ceil() functions return the smallest integral value greater than or equal to x.

More information: monkeybreadsoftware.de/realserver

Extract Movie Soundtrack 2.0

I updated my Extract Movie Soundtrack 2.0 freeware app. Now it is an universal application.
This small utility application was created to export the sound track of QuickTime movie files into AIFF files. This way I can take some of my movies and get the sound track into iTunes. In iTunes you can use the Advanced menu to convert the AIFF to MP3 or AAC to save space. Chapters in the movie are preserved.
Extract Movie Soundtrack Website

Prices adjusted

If you want to pay plugins using Paypal and you pay in US Dollar, you can take the chance and order now.
We calculate our prices in Euro and if the exchange rates between USD and Euro changes, we adjust our dollar prices.
So today the Complete License dropped from $284 to $274. :-)

One reason to upgrade REALbasic

If you use the Statusitems in REALbasic (NSStatusItemMBS class in Cocoa plugin) and you can't get mouse clicks in your document windows, you need to upgrade.
At least with current plugins and the NSStatusItem project you can test this. In RB 2009r2 everything works nice on Snow Leopard, but with RB 2007r2 it does not work.

Improvements on Bonjour classes

Call it Bonjour, Zeroconfig or DNSService. The plugin for doing Bonjour on Mac and Windows was rewritten the last days and now is more object orientated (= has a base class), uses newer REALbasic features (= uses shared methods), adds new constants for easier usage and lost a lot of old stuff (Mac OS Classic stuff).
If you like to try it, download 10.1pr9 later today.
For Windows you'll need to install iTunes or the Bonjour package.

Archives

Mar 2024
Feb 2024
Jan 2024
Dec 2023
Nov 2023
Oct 2023
Sep 2023
Aug 2023
Jul 2023
Jun 2023
May 2023
Apr 2023
Mar 2023
Feb 2023
Jan 2023
Dec 2022
Nov 2022
Oct 2022
Sep 2022
Aug 2022
Jul 2022
Jun 2022
May 2022
Apr 2022
Mar 2022
Feb 2022
Jan 2022
Dec 2021
Nov 2021
Oct 2021
Sep 2021
Aug 2021
Jul 2021
Jun 2021
May 2021
Apr 2021
Mar 2021
Feb 2021
Jan 2021
Dec 2020
Nov 2020
Oct 2020
Sep 2020
Aug 2020
Jul 2020
Jun 2020
May 2020
Apr 2020
Mar 2020
Feb 2020
Jan 2020
Dec 2019
Nov 2019
Oct 2019
Sep 2019
Aug 2019
Jul 2019
Jun 2019
May 2019
Apr 2019
Mar 2019
Feb 2019
Jan 2019
Dec 2018
Nov 2018
Oct 2018
Sep 2018
Aug 2018
Jul 2018
Jun 2018
May 2018
Apr 2018
Mar 2018
Feb 2018
Jan 2018
Dec 2017
Nov 2017
Oct 2017
Sep 2017
Aug 2017
Jul 2017
Jun 2017
May 2017
Apr 2017
Mar 2017
Feb 2017
Jan 2017
Dec 2016
Nov 2016
Oct 2016
Sep 2016
Aug 2016
Jul 2016
Jun 2016
May 2016
Apr 2016
Mar 2016
Feb 2016
Jan 2016
Dec 2015
Nov 2015
Oct 2015
Sep 2015
Aug 2015
Jul 2015
Jun 2015
May 2015
Apr 2015
Mar 2015
Feb 2015
Jan 2015
Dec 2014
Nov 2014
Oct 2014
Sep 2014
Aug 2014
Jul 2014
Jun 2014
May 2014
Apr 2014
Mar 2014
Feb 2014
Jan 2014
Dec 2013
Nov 2013
Oct 2013
Sep 2013
Aug 2013
Jul 2013
Jun 2013
May 2013
Apr 2013
Mar 2013
Feb 2013
Jan 2013
Dec 2012
Nov 2012
Oct 2012
Sep 2012
Aug 2012
Jul 2012
Jun 2012
May 2012
Apr 2012
Mar 2012
Feb 2012
Jan 2012
Dec 2011
Nov 2011
Oct 2011
Sep 2011
Aug 2011
Jul 2011
Jun 2011
May 2011
Apr 2011
Mar 2011
Feb 2011
Jan 2011
Dec 2010
Nov 2010
Oct 2010
Sep 2010
Aug 2010
Jul 2010
Jun 2010
May 2010
Apr 2010
Mar 2010
Feb 2010
Jan 2010
Dec 2009
Nov 2009
Oct 2009
Sep 2009
Aug 2009
Jul 2009
Apr 2009
Mar 2009
Feb 2009
Dec 2008
Nov 2008
Oct 2008
Aug 2008
May 2008
Apr 2008
Mar 2008
Feb 2008