Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Regular Contributor
SatishK
Posts: 86
Registered: ‎09-04-2009
My Carrier: Airtel
Accepted Solution

Invoke Manage connection

hello everyone,

 

how to invoke Manage Connection application?

 

Please use plain text.
Developer
smiley
Posts: 1,133
Registered: ‎07-14-2008
My Carrier: Fido

Re: Invoke Manage connection

[ Edited ]

                    int modHandle = CodeModuleManager.getModuleHandle("net_rim_bb_manage_connections");
                                                                    
                    if (modHandle != 0)
                    {
                        ApplicationDescriptor[] apDes = CodeModuleManager.getApplicationDescriptors(modHandle);
                        ApplicationManager.getApplicationManager().runApplication(apDes[0]);            
                    }

 

Please use plain text.
Regular Contributor
SatishK
Posts: 86
Registered: ‎09-04-2009
My Carrier: Airtel

Re: Invoke Manage connection

thanks smiley,

its working fine :smileyhappy:

Please use plain text.