tags:

views:

56

answers:

1

Hello all, I want to know what's api support checking if BB maps be installed or not on BB device. Because I have an application on BB and I want call BB map from this application, throw error if BB map hasn't been installed yet. Thank you.

+1  A: 

You can use this

m_bbHandle = CodeModuleManager.getModuleHandle("net_rim_bb_lbs");

if m_bbHandle > 0 then the module is installed.

net_rim_bb_lbs is BlackBerry Maps.

Here is the link to the doc

Michael B.
Thank so much for your help,I'll try it soon.
nhd