12-02-2009 03:27 AM
Hi, Expert
i build an application which version 1.0, next time i will create the other version 2.0,
my question is how do i know the each version on my code?
Thank You
Solved! Go to Solution.
12-02-2009 03:32 AM - edited 12-02-2009 03:33 AM
// Retrieve a handle for a module.
int handle = CodeModuleManager.getModuleHandle("test_module");
// Retrieve specific information about a module.
String name = CodeModuleManager.getModuleName( handle );
String vendor = CodeModuleManager.getModuleVendor( handle );
String description = CodeModuleManager.getModuleDescription( handle );
int version = CodeModuleManager.getModuleVersion( handle );
int size = CodeModuleManager.getModuleCodeSize( handle );
int timestamp = CodeModuleManager.getModuleTimestamp( handle );
this might help you
12-02-2009 03:44 AM
hi yosoh
its work...
thank you for any help
husainahmad
09-26-2011 09:04 AM
hii ,
how to find the name of the module please help me . i am using os 5.0 .
I want to display my application version please tell me how to find it..
09-26-2011 09:25 AM
Try this :
ApplicationDescriptor.currentApplicationDescriptor().getVersion();